News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Windows.h

Started by shankle, July 22, 2020, 08:47:52 AM

Previous topic - Next topic

shankle

          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??
 

wjr

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

shankle