ole32: Move the storage signatures to the appropriate file that uses them.

This commit is contained in:
Dmitry Timoshkov 2007-03-20 22:18:30 +08:00 committed by Alexandre Julliard
parent 62545611b2
commit dce12498d0
2 changed files with 6 additions and 6 deletions

View File

@ -62,6 +62,12 @@ WINE_DEFAULT_DEBUG_CHANNEL(storage);
#define OLESTREAM_ID 0x501
#define OLESTREAM_MAX_STR_LEN 255
/*
* These are signatures to detect the type of Document file.
*/
static const BYTE STORAGE_magic[8] ={0xd0,0xcf,0x11,0xe0,0xa1,0xb1,0x1a,0xe1};
static const BYTE STORAGE_oldmagic[8] ={0xd0,0xcf,0x11,0xe0,0x0e,0x11,0xfc,0x0d};
static const char rootPropertyName[] = "Root Entry";
/****************************************************************************

View File

@ -111,12 +111,6 @@ static const ULONG PROPERTY_NULL = 0xFFFFFFFF;
STGM_TRANSACTED | STGM_CONVERT | STGM_PRIORITY | STGM_NOSCRATCH | \
STGM_NOSNAPSHOT | STGM_DIRECT_SWMR | STGM_DELETEONRELEASE | STGM_SIMPLE)
/*
* These are signatures to detect the type of Document file.
*/
static const BYTE STORAGE_magic[8] ={0xd0,0xcf,0x11,0xe0,0xa1,0xb1,0x1a,0xe1};
static const BYTE STORAGE_oldmagic[8] ={0xd0,0xcf,0x11,0xe0,0x0e,0x11,0xfc,0x0d};
/*
* Forward declarations of all the structures used by the storage
* module.