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
44b76784
Commit
44b76784
authored
Feb 07, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 08, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
atl: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e9c84cca
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
32 additions
and
32 deletions
+32
-32
Makefile.in
dlls/atl/Makefile.in
+1
-1
atl.c
dlls/atl/atl.c
+9
-9
atl30.c
dlls/atl/atl30.c
+2
-2
atl_ax.c
dlls/atl/atl_ax.c
+8
-8
registrar.c
dlls/atl/registrar.c
+8
-8
Makefile.in
dlls/atl100/Makefile.in
+1
-1
Makefile.in
dlls/atl110/Makefile.in
+1
-1
Makefile.in
dlls/atl80/Makefile.in
+1
-1
Makefile.in
dlls/atl90/Makefile.in
+1
-1
No files found.
dlls/atl/Makefile.in
View file @
44b76784
MODULE
=
atl.dll
IMPORTLIB
=
atl
IMPORTS
=
uuid oleaut32 ole32 user32 gdi32 advapi32 shlwapi
EXTRADEFS
=
-D
WINE_NO_LONG_TYPES
-D
_ATL_VER
=
_ATL_VER_30
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_30
C_SRCS
=
\
atl.c
\
...
...
dlls/atl/atl.c
View file @
44b76784
...
...
@@ -70,7 +70,7 @@ HRESULT WINAPI AtlUnadvise(IUnknown *pUnkCP, const IID *iid, DWORD dw)
IConnectionPoint
*
cp
;
HRESULT
hres
;
TRACE
(
"%p %p %d
\n
"
,
pUnkCP
,
iid
,
dw
);
TRACE
(
"%p %p %
l
d
\n
"
,
pUnkCP
,
iid
,
dw
);
if
(
!
pUnkCP
)
return
E_INVALIDARG
;
...
...
@@ -210,7 +210,7 @@ HRESULT WINAPI AtlInternalQueryInterface(void* this, const _ATL_INTMAP_ENTRY* pE
while
(
pEntries
[
i
].
pFunc
!=
0
)
{
TRACE
(
"Trying entry %i (%s %
l
x %p)
\n
"
,
i
,
debugstr_guid
(
pEntries
[
i
].
piid
),
TRACE
(
"Trying entry %i (%s %
I
x %p)
\n
"
,
i
,
debugstr_guid
(
pEntries
[
i
].
piid
),
pEntries
[
i
].
dw
,
pEntries
[
i
].
pFunc
);
if
(
!
pEntries
[
i
].
piid
||
IsEqualGUID
(
iid
,
pEntries
[
i
].
piid
))
...
...
@@ -233,7 +233,7 @@ HRESULT WINAPI AtlInternalQueryInterface(void* this, const _ATL_INTMAP_ENTRY* pE
}
i
++
;
}
TRACE
(
"Done returning (0x%x)
\n
"
,
rc
);
TRACE
(
"Done returning (0x%
l
x)
\n
"
,
rc
);
return
rc
;
}
...
...
@@ -291,7 +291,7 @@ HRESULT WINAPI AtlModuleAddTermFunc(_ATL_MODULE *pM, _ATL_TERMFUNC *pFunc, DWORD
{
_ATL_TERMFUNC_ELEM
*
termfunc_elem
;
TRACE
(
"version %04x (%p %p %
l
d)
\n
"
,
_ATL_VER
,
pM
,
pFunc
,
dw
);
TRACE
(
"version %04x (%p %p %
I
d)
\n
"
,
_ATL_VER
,
pM
,
pFunc
,
dw
);
if
(
_ATL_VER
>
_ATL_VER_30
||
pM
->
cbSize
>
ATLVer1Size
)
{
termfunc_elem
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
_ATL_TERMFUNC_ELEM
));
...
...
@@ -488,7 +488,7 @@ HRESULT WINAPI AtlComModuleGetClassObject(_ATL_COM_MODULE *pm, REFCLSID rclsid,
hres
=
(
*
iter
)
->
pfnGetClassObject
((
*
iter
)
->
pfnCreateInstance
,
&
IID_IUnknown
,
(
void
**
)
&
(
*
iter
)
->
pCF
);
if
((
*
iter
)
->
pCF
)
hres
=
IUnknown_QueryInterface
((
*
iter
)
->
pCF
,
riid
,
ppv
);
TRACE
(
"returning %p (%08x)
\n
"
,
*
ppv
,
hres
);
TRACE
(
"returning %p (%08
l
x)
\n
"
,
*
ppv
,
hres
);
return
hres
;
}
}
...
...
@@ -513,7 +513,7 @@ HRESULT WINAPI AtlComModuleGetClassObject(_ATL_COM_MODULE *pm, REFCLSID rclsid,
hres
=
(
*
iter
)
->
pfnGetClassObject
((
*
iter
)
->
pfnCreateInstance
,
&
IID_IUnknown
,
(
void
**
)
&
(
*
iter
)
->
pCache
->
pCF
);
if
((
*
iter
)
->
pCache
->
pCF
)
hres
=
IUnknown_QueryInterface
((
*
iter
)
->
pCache
->
pCF
,
riid
,
ppv
);
TRACE
(
"returning %p (%08x)
\n
"
,
*
ppv
,
hres
);
TRACE
(
"returning %p (%08
l
x)
\n
"
,
*
ppv
,
hres
);
return
hres
;
}
}
...
...
@@ -533,7 +533,7 @@ HRESULT WINAPI AtlComModuleRegisterClassObjects(_ATL_COM_MODULE *module, DWORD c
IUnknown
*
unk
;
HRESULT
hres
;
TRACE
(
"(%p %
x %
x)
\n
"
,
module
,
context
,
flags
);
TRACE
(
"(%p %
lx %l
x)
\n
"
,
module
,
context
,
flags
);
if
(
!
module
)
return
E_INVALIDARG
;
...
...
@@ -561,7 +561,7 @@ HRESULT WINAPI AtlComModuleRegisterClassObjects(_ATL_COM_MODULE *module, DWORD c
IUnknown
*
unk
;
HRESULT
hres
;
TRACE
(
"(%p %
x %
x)
\n
"
,
module
,
context
,
flags
);
TRACE
(
"(%p %
lx %l
x)
\n
"
,
module
,
context
,
flags
);
if
(
!
module
)
return
E_INVALIDARG
;
...
...
@@ -964,7 +964,7 @@ DWORD WINAPI AtlGetVersion(void *pReserved)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(0x%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"(0x%p, %
l
d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
dlls/atl/atl30.c
View file @
44b76784
...
...
@@ -134,7 +134,7 @@ HRESULT WINAPI AtlModuleRegisterClassObjects(_ATL_MODULEW *pM, DWORD dwClsContex
_ATL_OBJMAP_ENTRYW_V1
*
obj
;
int
i
=
0
;
TRACE
(
"(%p %
i %
i)
\n
"
,
pM
,
dwClsContext
,
dwFlags
);
TRACE
(
"(%p %
li %l
i)
\n
"
,
pM
,
dwClsContext
,
dwFlags
);
if
(
pM
==
NULL
)
return
E_INVALIDARG
;
...
...
@@ -155,7 +155,7 @@ HRESULT WINAPI AtlModuleRegisterClassObjects(_ATL_MODULEW *pM, DWORD dwClsContex
dwFlags
,
&
obj
->
dwRegister
);
if
(
FAILED
(
rc
)
)
WARN
(
"Failed to register object %i: 0x%08x
\n
"
,
i
,
rc
);
WARN
(
"Failed to register object %i: 0x%08
l
x
\n
"
,
i
,
rc
);
if
(
pUnknown
)
IUnknown_Release
(
pUnknown
);
...
...
dlls/atl/atl_ax.c
View file @
44b76784
...
...
@@ -211,7 +211,7 @@ static ULONG WINAPI OleClientSite_AddRef(IOleClientSite *iface)
{
IOCS
*
This
=
impl_from_IOleClientSite
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
ref
);
return
ref
;
}
...
...
@@ -220,7 +220,7 @@ static ULONG WINAPI OleClientSite_Release(IOleClientSite *iface)
IOCS
*
This
=
impl_from_IOleClientSite
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p)->(%d)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
d)
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
...
...
@@ -242,7 +242,7 @@ static HRESULT WINAPI OleClientSite_GetMoniker(IOleClientSite *iface, DWORD dwAs
{
IOCS
*
This
=
impl_from_IOleClientSite
(
iface
);
FIXME
(
"(%p, 0x%
x, 0x%
x, %p)
\n
"
,
This
,
dwAssign
,
dwWhichMoniker
,
ppmk
);
FIXME
(
"(%p, 0x%
lx, 0x%l
x, %p)
\n
"
,
This
,
dwAssign
,
dwWhichMoniker
,
ppmk
);
return
E_NOTIMPL
;
}
...
...
@@ -310,7 +310,7 @@ static HRESULT WINAPI OleContainer_ParseDisplayName(IOleContainer* iface, IBindC
static
HRESULT
WINAPI
OleContainer_EnumObjects
(
IOleContainer
*
iface
,
DWORD
grfFlags
,
IEnumUnknown
**
ppenum
)
{
IOCS
*
This
=
impl_from_IOleContainer
(
iface
);
FIXME
(
"(%p, %u, %p) - stub
\n
"
,
This
,
grfFlags
,
ppenum
);
FIXME
(
"(%p, %
l
u, %p) - stub
\n
"
,
This
,
grfFlags
,
ppenum
);
return
E_NOTIMPL
;
}
...
...
@@ -1067,7 +1067,7 @@ HRESULT WINAPI AtlAxCreateControlLicEx(LPCOLESTR lpszName, HWND hWnd,
(
void
**
)
&
pControl
);
if
(
FAILED
(
hRes
)
)
{
WARN
(
"cannot create ActiveX control %s instance - error 0x%08x
\n
"
,
WARN
(
"cannot create ActiveX control %s instance - error 0x%08
l
x
\n
"
,
debugstr_guid
(
&
controlId
),
hRes
);
return
hRes
;
}
...
...
@@ -1097,7 +1097,7 @@ HRESULT WINAPI AtlAxCreateControlLicEx(LPCOLESTR lpszName, HWND hWnd,
hRes
=
IOleObject_QueryInterface
(
pControl
,
&
IID_IWebBrowser2
,
(
void
**
)
&
browser
);
if
(
!
browser
)
WARN
(
"Cannot query IWebBrowser2 interface: %08x
\n
"
,
hRes
);
WARN
(
"Cannot query IWebBrowser2 interface: %08
l
x
\n
"
,
hRes
);
else
{
VARIANT
url
;
...
...
@@ -1108,7 +1108,7 @@ HRESULT WINAPI AtlAxCreateControlLicEx(LPCOLESTR lpszName, HWND hWnd,
hRes
=
IWebBrowser2_Navigate2
(
browser
,
&
url
,
NULL
,
NULL
,
NULL
,
NULL
);
if
(
FAILED
(
hRes
)
)
WARN
(
"IWebBrowser2::Navigate2 failed: %08x
\n
"
,
hRes
);
WARN
(
"IWebBrowser2::Navigate2 failed: %08
l
x
\n
"
,
hRes
);
SysFreeString
(
V_BSTR
(
&
url
)
);
IWebBrowser2_Release
(
browser
);
...
...
@@ -1331,7 +1331,7 @@ HWND WINAPI AtlAxCreateDialogW(HINSTANCE hInst, LPCWSTR name, HWND owner, DLGPRO
LPDLGTEMPLATEW
newptr
;
HWND
res
;
TRACE
(
"(%p %s %p %p %
l
x)
\n
"
,
hInst
,
debugstr_w
(
name
),
owner
,
dlgProc
,
param
);
TRACE
(
"(%p %s %p %p %
I
x)
\n
"
,
hInst
,
debugstr_w
(
name
),
owner
,
dlgProc
,
param
);
hrsrc
=
FindResourceW
(
hInst
,
name
,
(
LPWSTR
)
RT_DIALOG
);
if
(
!
hrsrc
)
...
...
dlls/atl/registrar.c
View file @
44b76784
...
...
@@ -233,7 +233,7 @@ static HRESULT do_process_key(LPCOLESTR *pstr, HKEY parent_key, strbuf *buf, BOO
RegDeleteTreeW
(
parent_key
,
buf
->
str
);
lres
=
RegCreateKeyW
(
parent_key
,
buf
->
str
,
&
hkey
);
if
(
lres
!=
ERROR_SUCCESS
)
{
WARN
(
"Could not create(open) key: %08x
\n
"
,
lres
);
WARN
(
"Could not create(open) key: %08
l
x
\n
"
,
lres
);
hres
=
HRESULT_FROM_WIN32
(
lres
);
break
;
}
...
...
@@ -242,7 +242,7 @@ static HRESULT do_process_key(LPCOLESTR *pstr, HKEY parent_key, strbuf *buf, BOO
strbuf_write
(
buf
->
str
,
&
name
,
-
1
);
lres
=
RegOpenKeyW
(
parent_key
,
buf
->
str
,
&
hkey
);
if
(
lres
!=
ERROR_SUCCESS
)
WARN
(
"Could not open key %s: %08x
\n
"
,
debugstr_w
(
name
.
str
),
lres
);
WARN
(
"Could not open key %s: %08
l
x
\n
"
,
debugstr_w
(
name
.
str
),
lres
);
}
if
(
key_type
!=
DO_DELETE
&&
*
iter
==
'='
)
{
...
...
@@ -264,7 +264,7 @@ static HRESULT do_process_key(LPCOLESTR *pstr, HKEY parent_key, strbuf *buf, BOO
lres
=
RegSetValueExW
(
hkey
,
name
.
len
?
name
.
str
:
NULL
,
0
,
REG_SZ
,
(
PBYTE
)
buf
->
str
,
(
lstrlenW
(
buf
->
str
)
+
1
)
*
sizeof
(
WCHAR
));
if
(
lres
!=
ERROR_SUCCESS
)
{
WARN
(
"Could set value of key: %08x
\n
"
,
lres
);
WARN
(
"Could set value of key: %08
l
x
\n
"
,
lres
);
hres
=
HRESULT_FROM_WIN32
(
lres
);
break
;
}
...
...
@@ -278,7 +278,7 @@ static HRESULT do_process_key(LPCOLESTR *pstr, HKEY parent_key, strbuf *buf, BOO
lres
=
RegSetValueExW
(
hkey
,
name
.
len
?
name
.
str
:
NULL
,
0
,
REG_DWORD
,
(
PBYTE
)
&
dw
,
sizeof
(
dw
));
if
(
lres
!=
ERROR_SUCCESS
)
{
WARN
(
"Could set value of key: %08x
\n
"
,
lres
);
WARN
(
"Could set value of key: %08
l
x
\n
"
,
lres
);
hres
=
HRESULT_FROM_WIN32
(
lres
);
break
;
}
...
...
@@ -309,7 +309,7 @@ static HRESULT do_process_key(LPCOLESTR *pstr, HKEY parent_key, strbuf *buf, BOO
lres
=
RegSetValueExW
(
hkey
,
name
.
len
?
name
.
str
:
NULL
,
0
,
REG_BINARY
,
bytes
,
count
);
if
(
lres
!=
ERROR_SUCCESS
)
{
WARN
(
"Could not set value of key: 0x%08x
\n
"
,
lres
);
WARN
(
"Could not set value of key: 0x%08
l
x
\n
"
,
lres
);
hres
=
HRESULT_FROM_WIN32
(
lres
);
}
}
...
...
@@ -404,7 +404,7 @@ static HRESULT do_process_root_key(LPCOLESTR data, BOOL do_register)
}
hres
=
do_process_key
(
&
iter
,
root_keys
[
i
].
key
,
&
buf
,
do_register
);
if
(
FAILED
(
hres
))
{
WARN
(
"Processing key failed: %08x
\n
"
,
hres
);
WARN
(
"Processing key failed: %08
l
x
\n
"
,
hres
);
break
;
}
hres
=
get_word
(
&
iter
,
&
buf
);
...
...
@@ -533,7 +533,7 @@ static ULONG WINAPI Registrar_AddRef(IRegistrar *iface)
{
Registrar
*
This
=
impl_from_IRegistrar
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
ref
);
TRACE
(
"(%p) ->%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ->%
l
d
\n
"
,
This
,
ref
);
return
ref
;
}
...
...
@@ -542,7 +542,7 @@ static ULONG WINAPI Registrar_Release(IRegistrar *iface)
Registrar
*
This
=
impl_from_IRegistrar
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
ref
);
TRACE
(
"(%p) ->%d
\n
"
,
This
,
ref
);
TRACE
(
"(%p) ->%
l
d
\n
"
,
This
,
ref
);
if
(
!
ref
)
{
IRegistrar_ClearReplacements
(
iface
);
HeapFree
(
GetProcessHeap
(),
0
,
This
);
...
...
dlls/atl100/Makefile.in
View file @
44b76784
MODULE
=
atl100.dll
IMPORTLIB
=
atl100
IMPORTS
=
uuid ole32 oleaut32 user32 gdi32 advapi32 shlwapi
EXTRADEFS
=
-D
WINE_NO_LONG_TYPES
-D
_ATL_VER
=
_ATL_VER_100
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_100
PARENTSRC
=
../atl
C_SRCS
=
\
...
...
dlls/atl110/Makefile.in
View file @
44b76784
MODULE
=
atl110.dll
IMPORTS
=
oleaut32 ole32 user32 gdi32 advapi32 uuid shlwapi
EXTRADEFS
=
-D
WINE_NO_LONG_TYPES
-D
_ATL_VER
=
_ATL_VER_110
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_110
PARENTSRC
=
../atl
C_SRCS
=
\
...
...
dlls/atl80/Makefile.in
View file @
44b76784
MODULE
=
atl80.dll
IMPORTLIB
=
atl80
IMPORTS
=
oleaut32 user32 ole32 gdi32 advapi32 uuid shlwapi
EXTRADEFS
=
-D
WINE_NO_LONG_TYPES
-D
_ATL_VER
=
_ATL_VER_80
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_80
PARENTSRC
=
../atl
C_SRCS
=
\
...
...
dlls/atl90/Makefile.in
View file @
44b76784
MODULE
=
atl90.dll
IMPORTS
=
oleaut32 user32 ole32 gdi32 advapi32 uuid shlwapi
EXTRADEFS
=
-D
WINE_NO_LONG_TYPES
-D
_ATL_VER
=
_ATL_VER_90
EXTRADEFS
=
-D_ATL_VER
=
_ATL_VER_90
PARENTSRC
=
../atl
C_SRCS
=
\
...
...
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