prog.c 424 B

1234567891011121314151617
  1. #include<windows.h>
  2. // deliberately don't get MY_ICON from resource.h so that depfile generation can
  3. // be exercised in the WindowsTests.test_rc_depends_files unit test
  4. #define MY_ICON 1
  5. int APIENTRY
  6. WinMain(
  7. HINSTANCE hInstance,
  8. HINSTANCE hPrevInstance,
  9. LPSTR lpszCmdLine,
  10. int nCmdShow) {
  11. HICON hIcon;
  12. hIcon = LoadIcon(GetModuleHandle(NULL), MAKEINTRESOURCE(MY_ICON));
  13. return hIcon ? 0 : 1;
  14. }