Tagged Questions
30
votes
7answers
17k views
What is __stdcall?
I'm leaning some win32 programming, and the WinMain prototype looks like:
int WINAPI WinMain ( HINSTANCE instance, HINSTANCE prev_instance, PSTR cmd_line, int cmd_show )
I was confused as to what ...
2
votes
1answer
95 views
Calling LONGLONG RtlLargeIntegerDivide(LONGLONG, LONGLONG, LONGLONG*) in NASM (stdcall)
I'm trying to call the following function:
long long RtlLargeIntegerDivide(long long dividend, long long divisor, long long* pRemainder)
in assembly code (NASM). It uses the stdcall calling ...
0
votes
1answer
64 views
Problems manipulating strings through a stdcall to a dll
I need to create a C++ dll that will be called from another program through stdcall.
What is needed : the caller program will pass an array of string to the dll and the dll should change the string ...