03-12-2013
This is a 64-bit program
an attachment is included showing the error generated
#define LINKFILES
#define codejps
#define WIN64
#INCLUDE windows.h
DATA SECTION
#ifndef LPSTR
#if !x64
#define LPSTR dd
#else
#define LPSTR dq
#endif
#endif
CommandLine LPSTR ?
hInstance dq 0
.code
start:
invoke GetModuleHandleA, NULL
; this is line 99 that the compiler is complaining about
; it makes no differance if the Q is included or not
mov Q[hInstance],rax
invoke GetCommandLine
invoke WinMain, [hInstance],NULL,[CommandLine],SW_SHOWDEFAULT
invoke ExitProcess,rax