Mike,
I noticed the following lines in your code from this post:
http://www.powerbasic.com/support/pb...ad.php?t=41648
The lines were:
%CCWIN = 1
#INCLUDE "win32api.inc"
'#INCLUDE "\pbwin90\winapi\WS2_32.INC"
#INCLUDE "\pbcc50\winapi\WS2_32.INC"
And it suddenly struck me... that maybe I'm the only one who copies PBWIN and PBCC into the same folder on my development machine?
I initially install PBWIN into C:\PBWIN90 and PBCC into C:\PBCC50, but then I do the following:
1) xcopy c:\pbwin90 c:\pb /d /e /c /y /h /i /r
2) xcopy c:\pbcc50 c:\pb /d /e /c /y /h /i /r
3) set path=%path%;c:\pb\bin
Then I run whichever compiler I need, using one source for WINAPI (the C:\PB\WINAPI folder).
So far this has worked, so I'm hoping the PowerBASIC think-tank will keep allowing this!!
<gulp>
I noticed the following lines in your code from this post:
http://www.powerbasic.com/support/pb...ad.php?t=41648
The lines were:
%CCWIN = 1
#INCLUDE "win32api.inc"
'#INCLUDE "\pbwin90\winapi\WS2_32.INC"
#INCLUDE "\pbcc50\winapi\WS2_32.INC"
And it suddenly struck me... that maybe I'm the only one who copies PBWIN and PBCC into the same folder on my development machine?
I initially install PBWIN into C:\PBWIN90 and PBCC into C:\PBCC50, but then I do the following:
1) xcopy c:\pbwin90 c:\pb /d /e /c /y /h /i /r
2) xcopy c:\pbcc50 c:\pb /d /e /c /y /h /i /r
3) set path=%path%;c:\pb\bin
Then I run whichever compiler I need, using one source for WINAPI (the C:\PB\WINAPI folder).
So far this has worked, so I'm hoping the PowerBASIC think-tank will keep allowing this!!
<gulp>
Comment