; ---------------------------------------------------------------------------
; Bye Jacques Philippe                                             April 2002
;
; NASM_SHELL_2  to write an ASM routine to be called bye  API  CallWindowProc
; ---------------------------------------------------------------------------
; for doc see NASM_SHELL_0.ASM and NASM_SHELL_1
;
bits 32

%define arg_1 [ebp+08]   ;  first argument in RQ Function
%define arg_2 [ebp+12]   ; second argument in RQ Function
%define arg_3 [ebp+16]   ;  third argument in RQ Function
%define arg_4 [ebp+20]   ; fourth argument in RQ Function

segment .text                     
start:
	enter 0, 0
; Enter your asm code here




; Dont change to the following lines or write anything here under
	leave
	ret 16
