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.1 KiB

  1. //+--------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1996.
  5. //
  6. // File: docfile.hxx
  7. //
  8. // Contents: functions exported from docfile.cxx
  9. //
  10. //---------------------------------------------------------------
  11. #ifndef __DFENTRY_HXX__
  12. #define __DFENTRY_HXX__
  13. #include "dfmsp.hxx"
  14. #ifndef _UNICODE
  15. HRESULT DfOpenStorageOnILockBytes(ILockBytes *plkbyt,
  16. IStorage *pstgPriority,
  17. DWORD grfMode,
  18. SNB snbExclude,
  19. DWORD reserved,
  20. IStorage **ppstgOpen,
  21. CLSID *pcid);
  22. #else
  23. HRESULT DfOpenStorageOnILockBytesW(ILockBytes *plkbyt,
  24. IStorage *pstgPriority,
  25. DWORD grfMode,
  26. SNBW snbExclude,
  27. DWORD reserved,
  28. IStorage **ppstgOpen,
  29. CLSID *pcid);
  30. #endif
  31. #endif // #ifndef __DFENTRY_HXX__