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
cce387d1
Commit
cce387d1
authored
Jan 21, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 21, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lock record in MsiViewExecute, move stubs to end.
parent
18fb9ace
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
24 deletions
+17
-24
msiquery.c
dlls/msi/msiquery.c
+17
-24
No files found.
dlls/msi/msiquery.c
View file @
cce387d1
...
...
@@ -38,30 +38,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msi
);
#if 0
typedef struct tagMSIQUERY
{
MSIOBJECTHDR hdr;
MSIVIEW *view;
UINT row;
MSIDATABASE *db;
} MSIQUERY;
#endif
UINT
WINAPI
MsiDatabaseIsTablePersistentA
(
MSIHANDLE
hDatabase
,
LPSTR
szTableName
)
{
FIXME
(
"%lx %s
\n
"
,
hDatabase
,
debugstr_a
(
szTableName
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiDatabaseIsTablePersistentW
(
MSIHANDLE
hDatabase
,
LPWSTR
szTableName
)
{
FIXME
(
"%lx %s
\n
"
,
hDatabase
,
debugstr_w
(
szTableName
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
void
MSI_CloseView
(
MSIOBJECTHDR
*
arg
)
{
MSIQUERY
*
query
=
(
MSIQUERY
*
)
arg
;
...
...
@@ -358,7 +334,10 @@ UINT WINAPI MsiViewExecute(MSIHANDLE hView, MSIHANDLE hRec)
}
}
msiobj_lock
(
&
rec
->
hdr
);
ret
=
MSI_ViewExecute
(
query
,
rec
);
msiobj_unlock
(
&
rec
->
hdr
);
out:
if
(
query
)
msiobj_release
(
&
query
->
hdr
);
...
...
@@ -486,3 +465,17 @@ hRecord)
FIXME
(
"%ld %x %ld
\n
"
,
hView
,
eModifyMode
,
hRecord
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiDatabaseIsTablePersistentA
(
MSIHANDLE
hDatabase
,
LPSTR
szTableName
)
{
FIXME
(
"%lx %s
\n
"
,
hDatabase
,
debugstr_a
(
szTableName
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
UINT
WINAPI
MsiDatabaseIsTablePersistentW
(
MSIHANDLE
hDatabase
,
LPWSTR
szTableName
)
{
FIXME
(
"%lx %s
\n
"
,
hDatabase
,
debugstr_w
(
szTableName
));
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
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