L
Lloyd Dupont
I have a function like that:
static void InitEngine(String^, String^);
I try to pass a NULL value as an argument, like that:
InitEngine(NULL, NULL);
The compiler said NULL: unknown identifier.
I tried to include STDDEF.H but the compiler complains: can't convert int to
String^
Any idea?
static void InitEngine(String^, String^);
I try to pass a NULL value as an argument, like that:
InitEngine(NULL, NULL);
The compiler said NULL: unknown identifier.
I tried to include STDDEF.H but the compiler complains: can't convert int to
String^
Any idea?