NASM - The Netwide Assembler

NASM Forum => Using NASM => Topic started by: nobody on July 18, 2007, 02:15:29 PM

Title: WinAPI with NASM?
Post by: nobody on July 18, 2007, 02:15:29 PM
Hi @ all,
Can i use WinAPIs with NASM?
If yes, how can i do it?

sry for my bad english
Title: Re: WinAPI with NASM?
Post by: Frank Kotler on July 18, 2007, 10:56:14 PM
Sure. Push the parameters, and call the API. It's a "stdcall" convention, so parameters are pushed right to left, and callee cleans up stack.

Best,
Frank