This is my first topic after months of lurking ang learning from this forum,
so Hello world!
I'm reading someone else's FASM code and in almost every case he/she is using:
proc procName, arg,arg
to create a procedure.
However in some cases he/she's using:
proc procName
stdcall, arg,arg
Here's my quick question:
What's the use of "stdcall" ?
What difference does it make?
I'm using Olly to compare the generated assembly and I don't seem to
spot any differences between them!
Am I blind? Am I wrong?
Please enlighten me.
Newbie desclaimer: Since my question is about the use of stdcall, Google only taught me (a lot) about calling conventions
