Win32 function call using GNU assembler

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

The following assembly source is not working. Really not sure where I'm going wrong.
Any guidance will be appreciated.

.section .data
	CLASS_NAME:
		.ascii "M\0a\0i\0n\0\0\0" # Main
	WINDOW_NAME:
		.ascii "A\0S\0M\0 \0W\0i\0n\0d\0o\0w\0\0\0" # ASM Window
		
.section .text
	.globl _WinMain@16
	_WinMain@16:
		# function prologue
		pushl	%ebp
		movl	%esp, %ebp
		
		pushl	$0				# LPVOID lpParam
		movl	8(%ebp), %eax
		pushl	%eax			# HINSTANCE hInstance
		pushl	$0				# HMENU hMenu
		pushl	$0				# HWND hWndParent
		pushl	$120			# nHeight
		pushl	$240			# nWidth
		pushl	$-2147483648	# y
		pushl	$-2147483648	# x
		pushl	$13565952		# dwStyle
		pushl	$WINDOW_NAME	# lpWindowName
		pushl	$CLASS_NAME		# lpClassName
		pushl	$512			# dwExStyle
		call	_CreateWindowExA@48
		add		$48, %esp
		
		# function epilogue
		movl	%ebp, %esp
		popl	%ebp
		ret

Thank you--
To unsubscribe from this list: send the line "unsubscribe linux-assembly" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies]     [Security]     [Linux C Programming]     [Linux for Hams]     [DCCP]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]     [Video 4 Linux]

  Powered by Linux