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
1cd26d25
Commit
1cd26d25
authored
Oct 27, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Oct 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement transforms. This still includes some debugging code which
can be enabled by setting debug_transform to 1 in the relevant places.
parent
0989cfae
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
0 deletions
+4
-0
database.c
dlls/msi/database.c
+2
-0
msipriv.h
dlls/msi/msipriv.h
+2
-0
table.c
dlls/msi/table.c
+0
-0
No files found.
dlls/msi/database.c
View file @
1cd26d25
...
...
@@ -67,6 +67,7 @@ static VOID MSI_CloseDatabase( MSIOBJECTHDR *arg )
DWORD
r
;
free_cached_tables
(
db
);
msi_free_transforms
(
db
);
msi_destroy_stringtable
(
db
->
strings
);
r
=
IStorage_Release
(
db
->
storage
);
if
(
r
)
...
...
@@ -156,6 +157,7 @@ UINT MSI_OpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIDATABASE **pdb)
db
->
storage
=
stg
;
db
->
mode
=
szMode
;
list_init
(
&
db
->
tables
);
list_init
(
&
db
->
transforms
);
db
->
strings
=
load_string_table
(
stg
);
if
(
!
db
->
strings
)
...
...
dlls/msi/msipriv.h
View file @
1cd26d25
...
...
@@ -67,6 +67,7 @@ typedef struct tagMSIDATABASE
string_table
*
strings
;
LPCWSTR
mode
;
struct
list
tables
;
struct
list
transforms
;
}
MSIDATABASE
;
typedef
struct
tagMSIVIEW
MSIVIEW
;
...
...
@@ -279,6 +280,7 @@ extern void msiobj_lock(MSIOBJECTHDR *);
extern
void
msiobj_unlock
(
MSIOBJECTHDR
*
);
extern
void
free_cached_tables
(
MSIDATABASE
*
db
);
extern
void
msi_free_transforms
(
MSIDATABASE
*
db
);
extern
string_table
*
load_string_table
(
IStorage
*
stg
);
extern
UINT
MSI_CommitTables
(
MSIDATABASE
*
db
);
extern
HRESULT
init_string_table
(
IStorage
*
stg
);
...
...
dlls/msi/table.c
View file @
1cd26d25
This diff is collapsed.
Click to expand it.
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