Leaked source code of windows server 2003
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

  1. #ifndef _UTIL_H
  2. #define _UTIL_H
  3. #include <commctrl.h>
  4. #define ReleaseObj(_object) (_object) ? (_object)->Release() : 0
  5. void ProcessTooltips(LPTOOLTIPTEXT lpttt);
  6. UINT TTIdFromCmdId(UINT idCmd);
  7. void HandleMenuSelect(HWND hStatus, WPARAM wParam, LPARAM lParam);
  8. HRESULT GenericPrompt(HWND hwnd, char *szCaption, char *szPrompt, char *szBuffer, int nLen);
  9. #endif