mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
18 lines
469 B
C
Executable File
18 lines
469 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 programMenu,
|
|
bool isFsFolder, int numItems, bool allAreFiles);
|
|
bool ExecuteFileCommand(int id);
|
|
|
|
#endif
|