Skip to content

Commit

Permalink
menu
Browse files Browse the repository at this point in the history
  • Loading branch information
rounk-ctrl committed Feb 9, 2022
1 parent 1d6185e commit ff2adb7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MicaForEveryone/MicaForEveryone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ ATOM MyRegisterClass(HINSTANCE hInstance)
wcex.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(IDI_MICAFOREVERYONE));
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = MAKEINTRESOURCE(IDC_MICAFOREVERYONE);
wcex.lpszMenuName = MAKEINTRESOURCE(IDR_MENU1);
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(wcex.hInstance, MAKEINTRESOURCE(IDI_MICAFOREVERYONE));

Expand Down
Binary file modified MicaForEveryone/MicaForEveryone.rc
Binary file not shown.
6 changes: 4 additions & 2 deletions MicaForEveryone/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#define IDI_SMALL 108
#define IDC_MICAFOREVERYONE 109
#define IDR_MAINFRAME 128
#define IDR_MENU1 130
#define IDC_SYSLINK1 1001
#define IDC_STATIC_LINK 1003
#define IDC_STATIC_GIT 1004
Expand All @@ -29,15 +30,16 @@
#define IDM_ACRYLIC 32804
#define IDM_TABBED 32805
#define IDM_GUI 32815
#define ID_HELP_ABOUT 32816
#define IDC_STATIC -1

// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NO_MFC 1
#define _APS_NEXT_RESOURCE_VALUE 130
#define _APS_NEXT_COMMAND_VALUE 32816
#define _APS_NEXT_RESOURCE_VALUE 131
#define _APS_NEXT_COMMAND_VALUE 32817
#define _APS_NEXT_CONTROL_VALUE 1005
#define _APS_NEXT_SYMED_VALUE 110
#endif
Expand Down

0 comments on commit ff2adb7

Please sign in to comment.