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.

41 lines
1.1 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1995 - 1995.
  5. //
  6. // File: menuutil.hxx
  7. //
  8. // Contents: Context menu utilities, stolen from the shell. This is
  9. // basically CDefFolderMenu_MergeMenu and its support.
  10. //
  11. // History: 20-Dec-95 BruceFo Created
  12. //
  13. //----------------------------------------------------------------------------
  14. #ifndef __MENUUTIL_HXX__
  15. #define __MENUUTIL_HXX__
  16. VOID
  17. MyMergeMenu(
  18. HINSTANCE hinst,
  19. UINT idMainMerge,
  20. UINT idPopupMerge,
  21. LPQCMINFO pqcm);
  22. VOID
  23. MyInsertMenu(
  24. HINSTANCE hinst,
  25. UINT idInsert,
  26. LPQCMINFO pqcm);
  27. // Cannonical command names stolen from the shell
  28. extern TCHAR const c_szDelete[];
  29. extern TCHAR const c_szCut[];
  30. extern TCHAR const c_szCopy[];
  31. extern TCHAR const c_szLink[];
  32. extern TCHAR const c_szProperties[];
  33. extern TCHAR const c_szPaste[];
  34. extern TCHAR const c_szPasteLink[];
  35. extern TCHAR const c_szRename[];
  36. #endif // __MENUUTIL_HXX__