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
9ef5af54
Commit
9ef5af54
authored
Aug 31, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Aug 31, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Ude default calling convention for internal functions.
parent
81031c53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
15 deletions
+13
-15
automation.c
dlls/msi/automation.c
+13
-15
No files found.
dlls/msi/automation.c
View file @
9ef5af54
...
@@ -67,7 +67,7 @@ struct AutomationObject {
...
@@ -67,7 +67,7 @@ struct AutomationObject {
MSIHANDLE
msiHandle
;
MSIHANDLE
msiHandle
;
/* A function that is called from AutomationObject::Invoke, specific to this type of object. */
/* A function that is called from AutomationObject::Invoke, specific to this type of object. */
HRESULT
(
STDMETHODCALLTYPE
*
funcInvoke
)(
HRESULT
(
*
funcInvoke
)(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -80,7 +80,7 @@ struct AutomationObject {
...
@@ -80,7 +80,7 @@ struct AutomationObject {
/* A function that is called from AutomationObject::Release when the object is being freed to free any private
/* A function that is called from AutomationObject::Release when the object is being freed to free any private
* data structures (or NULL) */
* 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
...
@@ -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
/* Create the automation object, placing the result in the pointer ppObj. The automation object is created
* with the appropriate clsid and invocation function. */
* with the appropriate clsid and invocation function. */
static
HRESULT
create_automation_object
(
MSIHANDLE
msiHandle
,
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
,
REFIID
clsid
,
static
HRESULT
create_automation_object
(
MSIHANDLE
msiHandle
,
IUnknown
*
pUnkOuter
,
void
**
ppObj
,
REFIID
clsid
,
HRESULT
(
STDMETHODCALLTYPE
*
funcInvoke
)(
AutomationObject
*
,
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
HRESULT
(
*
funcInvoke
)(
AutomationObject
*
,
DISPID
,
REFIID
,
LCID
,
WORD
,
DISPPARAMS
*
,
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
),
VARIANT
*
,
EXCEPINFO
*
,
UINT
*
),
void
(
*
funcFree
)(
AutomationObject
*
),
SIZE_T
sizetPrivateData
)
void
(
STDMETHODCALLTYPE
*
funcFree
)(
AutomationObject
*
),
SIZE_T
sizetPrivateData
)
{
{
AutomationObject
*
object
;
AutomationObject
*
object
;
HRESULT
hr
;
HRESULT
hr
;
...
@@ -732,7 +730,7 @@ static HRESULT DispGetParam_CopyOnly(
...
@@ -732,7 +730,7 @@ static HRESULT DispGetParam_CopyOnly(
&
pdispparams
->
rgvarg
[
pos
]);
&
pdispparams
->
rgvarg
[
pos
]);
}
}
static
HRESULT
WINAPI
SummaryInfoImpl_Invoke
(
static
HRESULT
SummaryInfoImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -884,7 +882,7 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
...
@@ -884,7 +882,7 @@ static HRESULT WINAPI SummaryInfoImpl_Invoke(
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
RecordImpl_Invoke
(
static
HRESULT
RecordImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -975,7 +973,7 @@ static HRESULT WINAPI RecordImpl_Invoke(
...
@@ -975,7 +973,7 @@ static HRESULT WINAPI RecordImpl_Invoke(
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
ListImpl_Invoke
(
static
HRESULT
ListImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -1034,7 +1032,7 @@ static HRESULT WINAPI ListImpl_Invoke(
...
@@ -1034,7 +1032,7 @@ static HRESULT WINAPI ListImpl_Invoke(
return
S_OK
;
return
S_OK
;
}
}
static
void
WINAPI
ListImpl_Free
(
AutomationObject
*
This
)
static
void
ListImpl_Free
(
AutomationObject
*
This
)
{
{
ListData
*
data
=
private_data
(
This
);
ListData
*
data
=
private_data
(
This
);
ULONG
idx
;
ULONG
idx
;
...
@@ -1044,7 +1042,7 @@ static void WINAPI ListImpl_Free(AutomationObject *This)
...
@@ -1044,7 +1042,7 @@ static void WINAPI ListImpl_Free(AutomationObject *This)
msi_free
(
data
->
pVars
);
msi_free
(
data
->
pVars
);
}
}
static
HRESULT
WINAPI
ViewImpl_Invoke
(
static
HRESULT
ViewImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -1151,7 +1149,7 @@ static HRESULT DatabaseImpl_LastErrorRecord(WORD wFlags,
...
@@ -1151,7 +1149,7 @@ static HRESULT DatabaseImpl_LastErrorRecord(WORD wFlags,
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
DatabaseImpl_Invoke
(
static
HRESULT
DatabaseImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -1236,7 +1234,7 @@ static HRESULT WINAPI DatabaseImpl_Invoke(
...
@@ -1236,7 +1234,7 @@ static HRESULT WINAPI DatabaseImpl_Invoke(
return
S_OK
;
return
S_OK
;
}
}
static
HRESULT
WINAPI
SessionImpl_Invoke
(
static
HRESULT
SessionImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
@@ -2306,7 +2304,7 @@ done:
...
@@ -2306,7 +2304,7 @@ done:
return
hr
;
return
hr
;
}
}
static
HRESULT
WINAPI
InstallerImpl_Invoke
(
static
HRESULT
InstallerImpl_Invoke
(
AutomationObject
*
This
,
AutomationObject
*
This
,
DISPID
dispIdMember
,
DISPID
dispIdMember
,
REFIID
riid
,
REFIID
riid
,
...
...
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