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
f383ad10
Commit
f383ad10
authored
Feb 21, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Enable compilation with long types.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
b9c3bdea
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
Makefile.in
dlls/userenv/Makefile.in
+0
-1
userenv_main.c
dlls/userenv/userenv_main.c
+4
-4
No files found.
dlls/userenv/Makefile.in
View file @
f383ad10
EXTRADEFS
=
-DWINE_NO_LONG_TYPES
MODULE
=
userenv.dll
IMPORTS
=
advapi32
IMPORTLIB
=
userenv
...
...
dlls/userenv/userenv_main.c
View file @
f383ad10
...
...
@@ -349,7 +349,7 @@ BOOL WINAPI ExpandEnvironmentStringsForUserA( HANDLE hToken, LPCSTR lpSrc,
{
BOOL
ret
;
TRACE
(
"%p %s %p %d
\n
"
,
hToken
,
debugstr_a
(
lpSrc
),
lpDest
,
dwSize
);
TRACE
(
"%p %s %p %
l
d
\n
"
,
hToken
,
debugstr_a
(
lpSrc
),
lpDest
,
dwSize
);
ret
=
ExpandEnvironmentStringsA
(
lpSrc
,
lpDest
,
dwSize
);
TRACE
(
"<- %s
\n
"
,
debugstr_a
(
lpDest
));
...
...
@@ -361,7 +361,7 @@ BOOL WINAPI ExpandEnvironmentStringsForUserW( HANDLE hToken, LPCWSTR lpSrc,
{
BOOL
ret
;
TRACE
(
"%p %s %p %d
\n
"
,
hToken
,
debugstr_w
(
lpSrc
),
lpDest
,
dwSize
);
TRACE
(
"%p %s %p %
l
d
\n
"
,
hToken
,
debugstr_w
(
lpSrc
),
lpDest
,
dwSize
);
ret
=
ExpandEnvironmentStringsW
(
lpSrc
,
lpDest
,
dwSize
);
TRACE
(
"<- %s
\n
"
,
debugstr_w
(
lpDest
));
...
...
@@ -648,7 +648,7 @@ BOOL WINAPI LeaveCriticalPolicySection(HANDLE hSection)
DWORD
WINAPI
GetAppliedGPOListW
(
DWORD
dwFlags
,
LPCWSTR
pMachineName
,
PSID
pSidUser
,
GUID
*
pGuidExtension
,
PGROUP_POLICY_OBJECTW
*
ppGPOList
)
{
FIXME
(
"(%x %s %p %s %p)
\n
"
,
dwFlags
,
debugstr_w
(
pMachineName
),
pSidUser
,
debugstr_guid
(
pGuidExtension
),
ppGPOList
);
FIXME
(
"(%
l
x %s %p %s %p)
\n
"
,
dwFlags
,
debugstr_w
(
pMachineName
),
pSidUser
,
debugstr_guid
(
pGuidExtension
),
ppGPOList
);
return
ERROR_ACCESS_DENIED
;
}
...
...
@@ -681,7 +681,7 @@ BOOL WINAPI USERENV_138( int csidl, LPCSTR lnk_dir, LPCSTR lnk_filename,
LPCSTR
work_directory
,
WORD
hotkey
,
DWORD
win_state
,
LPCSTR
comment
,
LPCSTR
loc_filename_resfile
,
DWORD
loc_filename_resid
)
{
FIXME
(
"(%d,%s,%s,%s,%s,%
d,%s,0x%x,%d,%s,%s,%
d) - stub
\n
"
,
csidl
,
debugstr_a
(
lnk_dir
),
FIXME
(
"(%d,%s,%s,%s,%s,%
ld,%s,0x%x,%ld,%s,%s,%l
d) - stub
\n
"
,
csidl
,
debugstr_a
(
lnk_dir
),
debugstr_a
(
lnk_filename
),
debugstr_a
(
lnk_target
),
debugstr_a
(
lnk_iconfile
),
lnk_iconid
,
debugstr_a
(
work_directory
),
hotkey
,
win_state
,
debugstr_a
(
comment
),
debugstr_a
(
loc_filename_resfile
),
loc_filename_resid
);
...
...
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