Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
dce12498
Commit
dce12498
authored
Mar 20, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Mar 21, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Move the storage signatures to the appropriate file that uses them.
parent
62545611
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
storage32.c
dlls/ole32/storage32.c
+6
-0
storage32.h
dlls/ole32/storage32.h
+0
-6
No files found.
dlls/ole32/storage32.c
View file @
dce12498
...
...
@@ -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"
;
/****************************************************************************
...
...
dlls/ole32/storage32.h
View file @
dce12498
...
...
@@ -112,12 +112,6 @@ static const ULONG PROPERTY_NULL = 0xFFFFFFFF;
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.
*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment