Page 1 of 1

missing #ifdef

Posted: Wed Apr 10, 2013 9:36 pm
by mwieder
The #ifdef _IREVIAM" definition is referenced in a few files in engine/src, but it isn't defined anywhere.

Re: missing #ifdef

Posted: Wed Apr 10, 2013 9:45 pm
by mwieder
Update: maybe I should put that a different way. Yes, I understand what an "#ifdef" is and does, but there are instances like

Code: Select all

#ifdef _IREVIAM
    s_debugging = IreviamDebuggerConnect(p_site, p_url);
#endif
and there's no IreviamDebuggerConnect() anywhere to be found, so even defining it won't help.

Re: missing #ifdef

Posted: Thu Apr 11, 2013 11:39 am
by LCMark
The _IREVIAM define is used to optional include the remote debugging service that is used by the on-rev server engine on the on-rev hosting. The source to those components hasn't been released yet but will be in due course :)

Re: missing #ifdef

Posted: Thu Apr 11, 2013 5:53 pm
by mwieder
Got it. Thanks.