Module: wine Branch: master Commit: cf6ec333a5fd3f2169b8b2e1b6ab889830cd4a1b URL: http://source.winehq.org/git/wine.git/?a=commit;h=cf6ec333a5fd3f2169b8b2e1b6...
Author: Michael Stefaniuc mstefani@redhat.de Date: Fri Apr 17 10:34:58 2009 +0200
msi/tests: Replace long with LONG.
---
dlls/msi/tests/automation.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c index f9ab254..7229748 100644 --- a/dlls/msi/tests/automation.c +++ b/dlls/msi/tests/automation.c @@ -1046,7 +1046,7 @@ static HRESULT Session_EvaluateCondition(IDispatch *pSession, LPCWSTR szConditio return hr; }
-static HRESULT Session_Message(IDispatch *pSession, long kind, IDispatch *record, int *ret) +static HRESULT Session_Message(IDispatch *pSession, LONG kind, IDispatch *record, int *ret) { VARIANT varresult; VARIANTARG vararg[2]; @@ -1067,7 +1067,7 @@ static HRESULT Session_Message(IDispatch *pSession, long kind, IDispatch *record return hr; }
-static HRESULT Session_SetInstallLevel(IDispatch *pSession, long iInstallLevel) +static HRESULT Session_SetInstallLevel(IDispatch *pSession, LONG iInstallLevel) { VARIANT varresult; VARIANTARG vararg[1];