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.

58 lines
1.8 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Copyright (C) 1993-1996 Microsoft Corporation. All Rights Reserved.
  3. //
  4. // MODULE: fldrprop.h
  5. //
  6. // PURPOSE: Contains the control ID's and prototypes for the folder
  7. // and group property sheets
  8. //
  9. #ifndef __FLDRPROP_H__
  10. #define __FLDRPROP_H__
  11. // Dialog control ID's
  12. #define IDC_FOLDERNAME_EDIT 1001
  13. #define IDC_GROUPNAME_STATIC 1002
  14. #define IDC_STATUS_STATIC 1003
  15. #define IDC_LASTVIEWED_STATIC 1004
  16. #define IDC_FOLDER_ICON 1005
  17. #define IDC_FOLDER_FILE 1006
  18. //
  19. // FUNCTION: GroupProp_Create()
  20. //
  21. // PURPOSE: Invokes a property sheet which displays properties for the
  22. // specified group.
  23. //
  24. // PARAMETERS:
  25. // <in> hwndParent - Handle of the window that should be the dialog's
  26. // parent.
  27. // <in> pfidl - fully qualified pidl to the newsgroup
  28. //
  29. // RETURN VALUE:
  30. // TRUE - The dialog was successfully displayed
  31. // FALSE - The dialog failed.
  32. //
  33. BOOL GroupProp_Create(HWND hwndParent, FOLDERID idFolder, BOOL fUpdatePage = FALSE);
  34. //
  35. // FUNCTION: FolderProp_Create()
  36. //
  37. // PURPOSE: Invokes a property sheet which displays properties for the
  38. // specified folder.
  39. //
  40. // PARAMETERS:
  41. // <in> hwndParent - Handle of the window that should be the dialog's
  42. // parent.
  43. // <in> pfidl - fully qualified pidl to the folder
  44. //
  45. // RETURN VALUE:
  46. // TRUE - The dialog was successfully displayed
  47. // FALSE - The dialog failed.
  48. //
  49. BOOL FolderProp_Create(HWND hwndParent, FOLDERID idFolder);
  50. #endif // __FLDRPROP_H__