Say I have a game and I want to print out info to the Debug tab while it is running.
What is the basic command to print to it?
Debug.Print("something");
??
You should use the OutputDebugString API:
import void OutputDebugString alias "OutputDebugStringA" ( string str );
I think there is also an OutputDebugStringW which takes a wstring argument.
Thanks, this is the result of your suggestion and it works:
declare cdecl import, OutputDebugStringA(string str);