mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 22:50:49 +00:00
08d3840c94
svn path=/nixpkgs/trunk/; revision=5370
8 lines
202 B
C
8 lines
202 B
C
#include <windows.h>
|
|
int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInstance, LPSTR lpCmdLine,
|
|
int nCmdShow)
|
|
{
|
|
MessageBox(NULL, "Hello World!", "Nix", MB_OK);
|
|
return 0;
|
|
}
|