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.

33 lines
846 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1991 - 1992.
  5. //
  6. // File: storagep.h
  7. //
  8. // Contents: Internal storage information
  9. //
  10. // History: 09-Oct-92 DrewB Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #ifndef __STORAGEP_H__
  14. #define __STORAGEP_H__
  15. STDAPI StgIsStorageFileHandle( HANDLE hFile, LPOVERLAPPED povlp );
  16. // The byte combination that identifies that a file is a storage of
  17. // some kind
  18. const BYTE SIGSTG[] = {0xd0, 0xcf, 0x11, 0xe0, 0xa1, 0xb1, 0x1a, 0xe1};
  19. const BYTE CBSIGSTG = sizeof(SIGSTG);
  20. // The first portion of a storage file
  21. struct SStorageFile
  22. {
  23. BYTE abSig[CBSIGSTG]; // Signature
  24. CLSID _clid; // Class Id
  25. };
  26. #endif