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
6fb0cee5
Commit
6fb0cee5
authored
Jun 29, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 29, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dump database table names on startup.
parent
618a7e58
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
msi.c
dlls/msi/msi.c
+3
-0
msipriv.h
dlls/msi/msipriv.h
+1
-0
table.c
dlls/msi/table.c
+0
-3
No files found.
dlls/msi/msi.c
View file @
6fb0cee5
...
...
@@ -240,6 +240,9 @@ UINT WINAPI MsiOpenDatabaseW(LPCWSTR szDBPath, LPCWSTR szPersist, MSIHANDLE *phD
goto
end
;
}
if
(
TRACE_ON
(
msi
)
)
enum_stream_names
(
stg
);
db
->
storage
=
stg
;
db
->
mode
=
szMode
;
/* db->strings = NULL;
...
...
dlls/msi/msipriv.h
View file @
6fb0cee5
...
...
@@ -212,6 +212,7 @@ extern UINT WINAPI MSI_RecordSetIStream( MSIHANDLE handle,
unsigned
int
iField
,
IStream
*
stm
);
extern
UINT
get_raw_stream
(
MSIHANDLE
hdb
,
LPCWSTR
stname
,
IStream
**
stm
);
extern
UINT
db_get_raw_stream
(
MSIDATABASE
*
db
,
LPCWSTR
stname
,
IStream
**
stm
);
extern
void
enum_stream_names
(
IStorage
*
stg
);
#endif
/* __WINE_MSI_PRIVATE__ */
dlls/msi/table.c
View file @
6fb0cee5
...
...
@@ -126,7 +126,6 @@ static BOOL encode_streamname(BOOL bTable, LPCWSTR in, LPWSTR out)
return
FALSE
;
}
#if 0
static
int
mime2utf
(
int
x
)
{
if
(
x
<
10
)
...
...
@@ -194,8 +193,6 @@ void enum_stream_names( IStorage *stg )
IEnumSTATSTG_Release
(
stgenum
);
}
#endif
static
UINT
read_stream_data
(
IStorage
*
stg
,
LPCWSTR
stname
,
USHORT
**
pdata
,
UINT
*
psz
)
{
...
...
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