You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
376 B
12 lines
376 B
#ifndef _UTIL_H
|
|
#define _UTIL_H
|
|
|
|
#include <commctrl.h>
|
|
|
|
#define ReleaseObj(_object) (_object) ? (_object)->Release() : 0
|
|
|
|
void ProcessTooltips(LPTOOLTIPTEXT lpttt);
|
|
UINT TTIdFromCmdId(UINT idCmd);
|
|
void HandleMenuSelect(HWND hStatus, WPARAM wParam, LPARAM lParam);
|
|
HRESULT GenericPrompt(HWND hwnd, char *szCaption, char *szPrompt, char *szBuffer, int nLen);
|
|
#endif
|