mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
Add calculator icon
svn path=/trunk/; revision=20857
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
@@ -32,6 +32,8 @@
|
||||
#define IDM_SEPARATOR3 1010
|
||||
#define IDM_WHATS_THIS 1011
|
||||
|
||||
#define IDI_CALCICON 1050
|
||||
|
||||
/* strings */
|
||||
|
||||
#define IDS_APPNAME 1100
|
||||
|
||||
@@ -21,6 +21,8 @@
|
||||
#include <windows.h>
|
||||
#include "resource.h"
|
||||
|
||||
IDI_CALCICON ICON "calculator.ico"
|
||||
|
||||
#include "En.rc"
|
||||
#include "Cz.rc"
|
||||
#include "De.rc"
|
||||
|
||||
@@ -172,7 +172,7 @@ int WINAPI WinMain( HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR cmdline, int cmd
|
||||
wc.cbClsExtra = 0;
|
||||
wc.cbWndExtra = 0;
|
||||
wc.hInstance = hInst;
|
||||
wc.hIcon = LoadIcon( hInst, appname );
|
||||
wc.hIcon = LoadIcon(hInst, MAKEINTRESOURCE(IDI_CALCICON));
|
||||
wc.hCursor = LoadCursor( NULL, IDI_APPLICATION );
|
||||
wc.hbrBackground = (HBRUSH)(COLOR_BTNFACE+1);
|
||||
wc.lpszMenuName = NULL;
|
||||
|
||||
Reference in New Issue
Block a user