#usr1;pe 32bit GUI
format PE GUI 4.0
entry Start
include 'c:\fasmw17316\include\Win32a.inc'
include 'fasmAPI\if.inc'
include 'macro\macro.txt'
include 'macro\c++.asm'
include 'fasmAPI\madmat32.txt'
macro Msg a { invoke MessageBox,0,a,0,0 } 

DbgFlag__ = 0       ;print info 

section '.code' code readable writeable executable 
	BtnCheckReplacer dd 0

Start:
	Msg	'ExitProcess'
        invoke	ExitProcess,0

SECTION '.data' DATA READABLE WRITEABLE
                FasmHwnd       dd  0 

SECTION '.idata' IMPORT DATA READABLE WRITEABLE

     library  kernel32, 'KERNEL32.DLL',\
              user32,   'USER32.DLL',\
              winmm,    'WINMM.DLL',\
              msvcrt,   'MSVCRT.DLL'

 include 'fasmAPI\kernel32.inc'
 include 'fasmAPI\user32.inc'
 include 'fasmAPI\winmm.inc'
 include 'fasmAPI\msvcrt.inc'

section '.bss' readable writeable
	Status		rb      512               
	Status22	rb      16*2000 
	pTxt		rd      4000             ;ptr to text 
....
