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.

35 lines
1.3 KiB

  1. #ifndef _DETAILS_H_
  2. #define _DETAILS_H_
  3. HRESULT HrShowDetails( LPADRBOOK lpIAB,
  4. HWND hWndParent,
  5. HANDLE hPropertyStore,
  6. ULONG cbContEID,
  7. LPENTRYID lpContEID,
  8. ULONG *lpcbEntryID,
  9. LPENTRYID *lppEntryID,
  10. LPMAPIPROP lpPropObj, // [optional] IN:IMAPIProp object
  11. ULONG ulFlags,
  12. ULONG ulObjectType,
  13. BOOL *lpbChangesMade);
  14. HRESULT HrShowOneOffDetails( LPADRBOOK lpAdrBook,
  15. HWND hWndParent,
  16. ULONG cbEntryID,
  17. LPENTRYID lpEntryID,
  18. ULONG ulObjectType,
  19. LPMAPIPROP lpPropObj, // [optional] IN:IMAPIProp object
  20. LPTSTR szLDAPUrl,
  21. ULONG ulFlags);
  22. // Flags used for showing the NewEntry and Details from the same dialog box
  23. #define SHOW_DETAILS 0x00000001
  24. #define SHOW_NEW_ENTRY 0x00000010
  25. #define SHOW_ONE_OFF 0x00000100
  26. #define SHOW_OBJECT 0x00001000 // HrShowDetails of an object
  27. #endif