mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-29 14:07:57 +03:00
25 lines
459 B
C++
25 lines
459 B
C++
![]() |
//
|
||
|
//
|
||
|
//
|
||
|
#include <windows.h>
|
||
|
|
||
|
int WINAPI Echo(PCSTR pszMsg);
|
||
|
|
||
|
extern "C" int __stdcall mainCRTStartup(HINSTANCE hInstance,
|
||
|
HINSTANCE hPrevInstance,
|
||
|
LPSTR lpCmdLine,
|
||
|
int nCmdShow
|
||
|
)
|
||
|
{
|
||
|
(void)hInstance;
|
||
|
(void)hPrevInstance;
|
||
|
(void)lpCmdLine;
|
||
|
(void)nCmdShow;
|
||
|
|
||
|
Echo("Hello World");
|
||
|
Echo("Goodbye World");
|
||
|
|
||
|
return 0x99;
|
||
|
}
|
||
|
|