The MASM Forum

Projects => Rarely Used Projects => GoAsm => Topic started by: shankle on July 22, 2020, 08:47:52 AM

Title: Windows.h
Post by: shankle on July 22, 2020, 08:47:52 AM
          7-21-2020
Thanks for any help.

#define LINKFILES
#define codejps
#define WIN64
#INCLUDE windows.h

All my programs worked in windows 7. None work in windows 10
I put #include windows.h in folder codejps
Then tried to execute a program in folder bbocp using windows.h
In windows 7 windows.h executed from codejps.
Has so much changed for GoAsm from windows 7 to windows 10??
 
Title: Re: Windows.h
Post by: wjr on July 25, 2020, 05:37:04 AM
I think you meant "build" instead of "execute", and require adjustments to the INCLUDE environment string on your Windows 10 system. Otherwise #include looks for the file in the current directory, or you need to specify the path:

#include path\file
Title: Re: Windows.h
Post by: shankle on July 25, 2020, 07:16:38 AM
Thanks much WJR.