prog.c 249 B

123456789101112131415
  1. #include<windows.h>
  2. #define MY_ICON 1
  3. int APIENTRY
  4. WinMain(
  5. HINSTANCE hInstance,
  6. HINSTANCE hPrevInstance,
  7. LPSTR lpszCmdLine,
  8. int nCmdShow) {
  9. HICON hIcon;
  10. hIcon = LoadIcon(NULL, IDI_APPLICATION);
  11. return hIcon ? 0 : 1;
  12. }