This does not compile:
Code:
Macro DoMessage( p1, pMode ) MacroTemp T #If %Def( %DODEBUG ) [B]#If %DODEBUG = 2[/B] ' code removed, not the issue... #EndIf #EndIf End Macro Function test() As Long DoMessage("", "") End Function
PowerBASIC for Windows
PB/Win Version 9.01
Copyright (c) 1996-2009 PowerBasic Inc.
Error 460 in C:\DOCUME~1\EDWINK\LOCALS~1\TEMP\PD1027\CONST.INC(65:001): Undefined equate
Line 65: DoMessage("", "")
Macro Expansion(5): #If %DODEBUG = 2
PB/Win Version 9.01
Copyright (c) 1996-2009 PowerBasic Inc.
Error 460 in C:\DOCUME~1\EDWINK\LOCALS~1\TEMP\PD1027\CONST.INC(65:001): Undefined equate
Line 65: DoMessage("", "")
Macro Expansion(5): #If %DODEBUG = 2
Comment