; int __stdcall wWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nShowCmd)
_wWinMain@16 proc near
var_8= dword ptr -8
var_4= dword ptr -4
hInstance= dword ptr 8
hPrevInstance= dword ptr 12
lpCmdLine= dword ptr 16
nShowCmd= dword ptr 20
If I have a dword variable on [ebp+4], does it mean the variable is contained in the range [ebp+4] to [ebp+8], or [ebp+4] to [ebp] ? Is what is depicted bellow then correct?
[-12, -08]
[-08, -04] var_8
[-04, 00] var_4
[ 00, +04] ebp
[+04, +08]
[+08, +12] hInstance
[+12, +16] hPrevInstance
[+16, +20] lpCmdLine
[+20, +24] nShowCmd
[+24, +28]
Thanks