MASM32 Downloads
push dword 0 ;LPVOID lpParam // pointer to window-creation data push dword 0 ;HINSTANCE hInstance, // handle to application instance push dword 0 ;HMENU hMenu, // handle to menu, or child-window identifier push dword 0 ;HWND hWndParent, // handle to parent or owner window push dword 480 ;int nHeight, // window height push dword 640 ;int nWidth, // window width push dword 128 ;int y, // vertical position of window push dword 128 ;int x, // horizontal position of window push dword WS_SYSMENU ;DWORD dwStyle, // window style push dword mainWindowName ;LPCTSTR lpWindowName, // pointer to window name push dword mainWindowClassName ;LPCTSTR lpClassName, // pointer to registered class name push dword 0 ;DWORD dwExStyle, // extended window style call [CreateWindowExA] mov [windowHandle],eax cmp eax,0 je createWindowError
Is this caballero from this forum? https://forum.nasm.us/index.php?topic=2418.0 Should we call him traitor?
Quote from: felipe on August 11, 2019, 12:23:27 PMIs this caballero from this forum? https://forum.nasm.us/index.php?topic=2418.0 Should we call him traitor? Yes, I am. Frank Kotler is a very clever programmer, he usualy has a right answer for nearly every question. Rob Neff is also a very sharp programmer, he did the NasmX package, very good for nasm usage, I contributed with a simple example for win examples. I usualy use several compilers, not only masm.