; ---------------------------------------------------------------------------
; Bye Jacques Philippe                                             April 2002
;
; NASM_SHELL_1  to write an ASM routine to be called bye  API  CallWindowProc
; ---------------------------------------------------------------------------
; for doc see NASM_SHELL_0.ASM
;
bits 32

; These four macros will allow the use of arg_1 instead of [ebp+08] in the code
; arg_1 or anything else you chose
%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
