Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
e59b5569
Commit
e59b5569
authored
Feb 09, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
browseui: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
241c5fe8
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
10 deletions
+9
-10
Makefile.in
dlls/browseui/Makefile.in
+0
-1
aclmulti.c
dlls/browseui/aclmulti.c
+1
-1
aclsource.c
dlls/browseui/aclsource.c
+4
-4
browseui_main.c
dlls/browseui/browseui_main.c
+1
-1
progressdlg.c
dlls/browseui/progressdlg.c
+3
-3
No files found.
dlls/browseui/Makefile.in
View file @
e59b5569
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
browseui.dll
IMPORTS
=
uuid ole32 comctl32 user32 advapi32
...
...
dlls/browseui/aclmulti.c
View file @
e59b5569
...
...
@@ -140,7 +140,7 @@ static HRESULT WINAPI ACLMulti_Next(IEnumString *iface, ULONG celt, LPOLESTR *rg
{
ACLMulti
*
This
=
impl_from_IEnumString
(
iface
);
TRACE
(
"(%p, %d, %p, %p)
\n
"
,
iface
,
celt
,
rgelt
,
pceltFetched
);
TRACE
(
"(%p, %
l
d, %p, %p)
\n
"
,
iface
,
celt
,
rgelt
,
pceltFetched
);
while
(
This
->
currObj
<
This
->
nObjs
)
{
if
(
This
->
objs
[
This
->
currObj
].
pEnum
)
...
...
dlls/browseui/aclsource.c
View file @
e59b5569
...
...
@@ -94,7 +94,7 @@ static ULONG WINAPI ACLShellSource_AddRef(IEnumString *iface)
{
ACLShellSource
*
This
=
impl_from_IEnumString
(
iface
);
ULONG
ref
=
InterlockedIncrement
(
&
This
->
refCount
);
TRACE
(
"(%p)->(%u)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
u)
\n
"
,
This
,
ref
);
return
ref
;
}
...
...
@@ -103,7 +103,7 @@ static ULONG WINAPI ACLShellSource_Release(IEnumString *iface)
ACLShellSource
*
This
=
impl_from_IEnumString
(
iface
);
ULONG
ref
=
InterlockedDecrement
(
&
This
->
refCount
);
TRACE
(
"(%p)->(%u)
\n
"
,
This
,
ref
);
TRACE
(
"(%p)->(%
l
u)
\n
"
,
This
,
ref
);
if
(
ref
==
0
)
ACLShellSource_Destructor
(
This
);
...
...
@@ -114,14 +114,14 @@ static HRESULT WINAPI ACLShellSource_Next(IEnumString *iface, ULONG celt, LPOLES
ULONG
*
fetched
)
{
ACLShellSource
*
This
=
impl_from_IEnumString
(
iface
);
FIXME
(
"(%p)->(%u %p %p): stub
\n
"
,
This
,
celt
,
rgelt
,
fetched
);
FIXME
(
"(%p)->(%
l
u %p %p): stub
\n
"
,
This
,
celt
,
rgelt
,
fetched
);
return
E_NOTIMPL
;
}
static
HRESULT
WINAPI
ACLShellSource_Skip
(
IEnumString
*
iface
,
ULONG
celt
)
{
ACLShellSource
*
This
=
impl_from_IEnumString
(
iface
);
FIXME
(
"(%p)->(%u): stub
\n
"
,
This
,
celt
);
FIXME
(
"(%p)->(%
l
u): stub
\n
"
,
This
,
celt
);
return
E_NOTIMPL
;
}
...
...
dlls/browseui/browseui_main.c
View file @
e59b5569
...
...
@@ -162,7 +162,7 @@ static HRESULT ClassFactory_Constructor(LPFNCONSTRUCTOR ctor, LPVOID *ppvOut)
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinst
,
DWORD
fdwReason
,
LPVOID
fImpLoad
)
{
TRACE
(
"%p 0x%x %p
\n
"
,
hinst
,
fdwReason
,
fImpLoad
);
TRACE
(
"%p 0x%
l
x %p
\n
"
,
hinst
,
fdwReason
,
fImpLoad
);
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
...
...
dlls/browseui/progressdlg.c
View file @
e59b5569
...
...
@@ -343,7 +343,7 @@ static HRESULT WINAPI ProgressDialog_StartProgressDialog(IProgressDialog *iface,
struct
create_params
params
;
HANDLE
hThread
;
TRACE
(
"(%p, %p, %x, %p)
\n
"
,
iface
,
punkEnableModeless
,
dwFlags
,
reserved
);
TRACE
(
"(%p, %p, %
l
x, %p)
\n
"
,
iface
,
punkEnableModeless
,
dwFlags
,
reserved
);
if
(
punkEnableModeless
||
reserved
)
FIXME
(
"Reserved parameters not null (%p, %p)
\n
"
,
punkEnableModeless
,
reserved
);
if
(
dwFlags
&
PROGDLG_NOTIME
)
...
...
@@ -509,7 +509,7 @@ static HRESULT WINAPI ProgressDialog_SetLine(IProgressDialog *iface, DWORD dwLin
ProgressDialog
*
This
=
impl_from_IProgressDialog
(
iface
);
HWND
hwnd
;
TRACE
(
"(%p, %d, %s, %d)
\n
"
,
This
,
dwLineNum
,
wine_dbgstr_w
(
pwzLine
),
bPath
);
TRACE
(
"(%p, %
l
d, %s, %d)
\n
"
,
This
,
dwLineNum
,
wine_dbgstr_w
(
pwzLine
),
bPath
);
if
(
reserved
)
FIXME
(
"reserved pointer not null (%p)
\n
"
,
reserved
);
...
...
@@ -556,7 +556,7 @@ static HRESULT WINAPI ProgressDialog_Timer(IProgressDialog *iface, DWORD dwTimer
{
ProgressDialog
*
This
=
impl_from_IProgressDialog
(
iface
);
FIXME
(
"(%p, %d, %p) - stub
\n
"
,
This
,
dwTimerAction
,
reserved
);
FIXME
(
"(%p, %
l
d, %p) - stub
\n
"
,
This
,
dwTimerAction
,
reserved
);
if
(
reserved
)
FIXME
(
"Reserved field not NULL but %p
\n
"
,
reserved
);
...
...
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