File: testapp.c

package info (click to toggle)
icoextract 0.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: python: 378; makefile: 57; sh: 6; ansic: 5
file content (6 lines) | stat: -rw-r--r-- 213 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
#include <windows.h>

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR lpCmdLine, INT nCmdShow) {
    MessageBoxW(NULL, L"Hello world!", L"Test Application", MB_ICONASTERISK);
    return 0;
}