Hi!
As usual -problems occur when working with additional libraries...
BUT, the problem seems to be simple probably I am just
too tired to see the cause...
@ Kernel there's a function "GetTime()"
I want to use it to create a Log entry like this:
the code looks like this:
And I get C2352 - illegal call of non-static function..
I simply want to use the current time from kernel- nothing else..
I would be thankfull for any suggestions. :)
As usual -problems occur when working with additional libraries...
BUT, the problem seems to be simple probably I am just
too tired to see the cause...
@ Kernel there's a function "GetTime()"
I want to use it to create a Log entry like this:
Code:
myTime(GetTime()): someTexT
the code looks like this:
Code:
int64 myTime; myTime = IKernel::GetTime();
I simply want to use the current time from kernel- nothing else..
I would be thankfull for any suggestions. :)
Comment