Tagged Questions
0
votes
0answers
152 views
stdcall and cdecl stack alignment size
I have two questions:
Is the stack alignment for the stdcall calling convention always 4 bytes, or is it 4 for a 32 bit machine and 8 for a 64 bit machine?
What is the stack alignment size for ...
-1
votes
3answers
749 views
Thought experiment with __stdcall and corrupted stack (C++)
My mind was wandering today on the topic of function pointers, and I came up with the following scenario in my head:
__stdcall int function (int)
{
return 0;
}
int main()
{
...