Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo Ferrillo
wine
Commits
9ef5af54
Commit
9ef5af54
authored
13 years ago
by
Jacek Caban
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msi: Ude default calling convention for internal functions.
parent
81031c53
No related branches found
Branches containing commit
Tags
wine-20020228
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/msi/automation.c
+13
-15
13 additions, 15 deletions
dlls/msi/automation.c
with
13 additions
and
15 deletions
dlls/msi/automation.c
+
13
−
15
View file @
9ef5af54
...
...
@@ -67,7 +67,7 @@ struct AutomationObject {
MSIHANDLE
msiHandle
;
/* A function that is called from AutomationObject::Invoke, specific to this type of object. */
HRESULT
(
STDMETHODCALLTYPE
*
funcInvoke
)(
HRESULT
(
*
funcInvoke
)(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -80,7 +80,7 @@ struct AutomationObject {
/* A function that is called from AutomationObject::Release when the object is being freed to free any private
* data structures (or NULL) */
void
(
STDMETHODCALLTYPE
*
funcFree
)(
AutomationObject
*
This
);
void
(
*
funcFree
)(
AutomationObject
*
This
);
};
/*
...
...
@@ -151,11 +151,9 @@ HRESULT load_type_info(IDispatch *iface, ITypeInfo **pptinfo, REFIID clsid, LCID
/* Create the automation object, placing the result in the pointer ppObj. The automation object is created
* with the appropriate clsid and invocation function. */
static
HRESULT
create_automation_object
(
MSIHANDLE
msiHandle
,
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
,
REFIID
clsid
,
HRESULT
(
STDMETHODCALLTYPE
*
funcInvoke
)(
AutomationObject
*
,
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
),
void
(
STDMETHODCALLTYPE
*
funcFree
)(
AutomationObject
*
),
SIZE_T
sizetPrivateData
)
static
HRESULT
create_automation_object
(
MSIHANDLE
msiHandle
,
IUnknown
*
pUnkOuter
,
void
**
ppObj
,
REFIID
clsid
,
HRESULT
(
*
funcInvoke
)(
AutomationObject
*
,
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
),
void
(
*
funcFree
)(
AutomationObject
*
),
SIZE_T
sizetPrivateData
)
{
AutomationObject
*
object
;
HRESULT
hr
;
...
...
@@ -732,7 +730,7 @@ static HRESULT DispGetParam_CopyOnly(
&
pdispparams
->
rgvarg
[
pos
]);
}
static
HRESULT
WINAPI
SummaryInfoImpl_Invoke
(
static
HRESULT
SummaryInfoImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -884,7 +882,7 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
return
S_OK
;
}
static
HRESULT
WINAPI
RecordImpl_Invoke
(
static
HRESULT
RecordImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -975,7 +973,7 @@ static HRESULT WINAPI RecordImpl_Invoke(
return
S_OK
;
}
static
HRESULT
WINAPI
ListImpl_Invoke
(
static
HRESULT
ListImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -1034,7 +1032,7 @@ static HRESULT WINAPI ListImpl_Invoke(
return
S_OK
;
}
static
void
WINAPI
ListImpl_Free
(
AutomationObject
*
This
)
static
void
ListImpl_Free
(
AutomationObject
*
This
)
{
ListData
*
data
=
private_data
(
This
);
ULONG
idx
;
...
...
@@ -1044,7 +1042,7 @@ static void WINAPI ListImpl_Free(AutomationObject *This)
msi_free
(
data
->
pVars
);
}
static
HRESULT
WINAPI
ViewImpl_Invoke
(
static
HRESULT
ViewImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -1151,7 +1149,7 @@ static HRESULT DatabaseImpl_LastErrorRecord(WORD wFlags,
return
S_OK
;
}
static
HRESULT
WINAPI
DatabaseImpl_Invoke
(
static
HRESULT
DatabaseImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -1236,7 +1234,7 @@ static HRESULT WINAPI DatabaseImpl_Invoke(
return
S_OK
;
}
static
HRESULT
WINAPI
SessionImpl_Invoke
(
static
HRESULT
SessionImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
@@ -2306,7 +2304,7 @@ done:
return
hr
;
}
static
HRESULT
WINAPI
InstallerImpl_Invoke
(
static
HRESULT
InstallerImpl_Invoke
(
AutomationObject
*
This
,
DISPID
dispIdMember
,
REFIID
riid
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment