mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 03:15:00 -06:00
17 lines
434 B
C
Executable File
17 lines
434 B
C
Executable File
// MyLoadMenu.h
|
|
|
|
#ifndef __MYLOADMENU_H
|
|
#define __MYLOADMENU_H
|
|
|
|
void OnMenuActivating(HWND hWnd, HMENU hMenu, int position);
|
|
// void OnMenuUnActivating(HWND hWnd, HMENU hMenu, int id);
|
|
// void OnMenuUnActivating(HWND hWnd);
|
|
|
|
void MyLoadMenu(HWND hWnd);
|
|
bool OnMenuCommand(HWND hWnd, int id);
|
|
void MyLoadMenu();
|
|
void LoadFileMenu(HMENU hMenu, int startPos, bool forFileMode, bool programMenu);
|
|
bool ExecuteFileCommand(int id);
|
|
|
|
#endif
|