Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
6c21ac25
Commit
6c21ac25
authored
Jul 11, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Jul 12, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Clean up some declarations.
parent
d35176d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
stg_prop.c
dlls/ole32/stg_prop.c
+7
-9
No files found.
dlls/ole32/stg_prop.c
View file @
6c21ac25
...
...
@@ -118,25 +118,23 @@ typedef struct tagPROPERTYIDOFFSET
DWORD
dwOffset
;
/* from beginning of section */
}
PROPERTYIDOFFSET
;
struct
tag
PropertyStorage_impl
;
typedef
struct
tagPropertyStorage_impl
PropertyStorage_impl
;
/* Initializes the property storage from the stream (and undoes any uncommitted
* changes in the process.) Returns an error if there is an error reading or
* if the stream format doesn't match what's expected.
*/
static
HRESULT
PropertyStorage_ReadFromStream
(
struct
tag
PropertyStorage_impl
*
);
static
HRESULT
PropertyStorage_ReadFromStream
(
PropertyStorage_impl
*
);
static
HRESULT
PropertyStorage_WriteToStream
(
struct
tag
PropertyStorage_impl
*
);
static
HRESULT
PropertyStorage_WriteToStream
(
PropertyStorage_impl
*
);
/* Creates the dictionaries used by the property storage. If successful, all
* the dictionaries have been created. If failed, none has been. (This makes
* it a bit easier to deal with destroying them.)
*/
static
HRESULT
PropertyStorage_CreateDictionaries
(
struct
tagPropertyStorage_impl
*
);
static
HRESULT
PropertyStorage_CreateDictionaries
(
PropertyStorage_impl
*
);
static
void
PropertyStorage_DestroyDictionaries
(
struct
tagPropertyStorage_impl
*
);
static
void
PropertyStorage_DestroyDictionaries
(
PropertyStorage_impl
*
);
/* Copies from propvar to prop. If propvar's type is VT_LPSTR, copies the
* string using PropertyStorage_StringCopy.
...
...
@@ -161,7 +159,7 @@ static HRESULT create_EnumSTATPROPSETSTG(StorageImpl *, IEnumSTATPROPSETSTG**);
/***********************************************************************
* Implementation of IPropertyStorage
*/
typedef
struct
tagPropertyStorage_impl
struct
tagPropertyStorage_impl
{
const
IPropertyStorageVtbl
*
vtbl
;
LONG
ref
;
...
...
@@ -180,7 +178,7 @@ typedef struct tagPropertyStorage_impl
struct
dictionary
*
name_to_propid
;
struct
dictionary
*
propid_to_name
;
struct
dictionary
*
propid_to_prop
;
}
PropertyStorage_impl
;
};
/************************************************************************
* IPropertyStorage_fnQueryInterface (IPropertyStorage)
...
...
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