I have included the following code in my program so that I can compile with either PBCC or PBWin without having to worry about the WAITKEY$
statement. However, I get a compile error
From the PBWin 8 help file
Am I missing something?
statement. However, I get a compile error
Error 460 in F:\... Undefined equate
Line 228: #IF %PB_CC32
Line 228: #IF %PB_CC32
Code:
#IF %PB_CC32 WAITKEY$ #ENDIF
%PB_CC32 Pre-defined as TRUE (non-zero) in PB/CC for Windows. Defined as FALSE (zero) in other compilers.
Comment