Author Topic: Windows.h  (Read 2360 times)

shankle

  • Member
  • ****
  • Posts: 868
Windows.h
« 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??
 

wjr

  • Member
  • **
  • Posts: 247
    • WJR's website
Re: Windows.h
« Reply #1 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:
Code: [Select]
#include path\file

shankle

  • Member
  • ****
  • Posts: 868
Re: Windows.h
« Reply #2 on: July 25, 2020, 07:16:38 AM »
Thanks much WJR.