Browse Source

remove mascot

pull/493/head
orignal 9 years ago
parent
commit
caf2e469a6
  1. BIN
      Win32/Anke_2200px.jpg
  2. BIN
      Win32/Anke_700px.bmp
  3. 2
      Win32/Resource.rc
  4. 13
      Win32/Win32App.cpp
  5. BIN
      Win32/anke.ico
  6. 1
      Win32/resource.h

BIN
Win32/Anke_2200px.jpg

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 KiB

BIN
Win32/Anke_700px.bmp

Binary file not shown.

Before

Width:  |  Height:  |  Size: 730 KiB

2
Win32/Resource.rc

@ -55,8 +55,6 @@ END @@ -55,8 +55,6 @@ END
MAINICON ICON "ictoopie.ico"
//MAINICON ICON "anke.ico"
MASCOT BITMAP "Anke_700px.bmp"
#endif // English (United States) resources
/////////////////////////////////////////////////////////////////////////////

13
Win32/Win32App.cpp

@ -167,19 +167,6 @@ namespace win32 @@ -167,19 +167,6 @@ namespace win32
}
break;
}
case WM_PAINT:
{
PAINTSTRUCT ps;
auto hDC = BeginPaint (hWnd, &ps);
auto mascot = LoadBitmap (GetModuleHandle(NULL), MAKEINTRESOURCE (MASCOT));
auto mascotDC = CreateCompatibleDC (hDC);
SelectObject (mascotDC, mascot);
BitBlt (hDC, 0,0, 533, 700, mascotDC, 0, 0, SRCCOPY);
DeleteDC (mascotDC);
DeleteObject (mascot);
EndPaint (hWnd, &ps);
break;
}
}
return DefWindowProc( hWnd, uMsg, wParam, lParam);
}

BIN
Win32/anke.ico

Binary file not shown.

Before

Width:  |  Height:  |  Size: 119 KiB

1
Win32/resource.h

@ -3,7 +3,6 @@ @@ -3,7 +3,6 @@
// Used by Resource.rc
//
#define MAINICON 101
#define MASCOT 201
// Next default values for new objects
//

Loading…
Cancel
Save