I want to add codes for debug log using some directives.
What is the VB6 equivalent of C-language's #ifdef directives?

Here is the C code and I want to know VB6 directive.
------
#define DEBUGLOG
#ifdef DEBUGLOG
//Do Something
#endif
------