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
69818163
Commit
69818163
authored
Jan 31, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
Feb 01, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Added GetAllUsersProfileDirectory[AW] stubs.
parent
9310ee0e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
userenv.spec
dlls/userenv/userenv.spec
+2
-0
userenv_main.c
dlls/userenv/userenv_main.c
+12
-0
userenv.h
include/userenv.h
+3
-0
No files found.
dlls/userenv/userenv.spec
View file @
69818163
...
...
@@ -2,6 +2,8 @@
@ stub DestroyEnvironmentBlock
@ stdcall ExpandEnvironmentStringsForUserA(ptr str ptr long)
@ stdcall ExpandEnvironmentStringsForUserW(ptr wstr ptr long)
@ stdcall GetAllUsersProfileDirectoryA(ptr ptr)
@ stdcall GetAllUsersProfileDirectoryW(ptr ptr)
@ stdcall GetProfilesDirectoryA(ptr ptr)
@ stdcall GetProfilesDirectoryW(ptr ptr)
@ stdcall GetProfileType(ptr)
...
...
dlls/userenv/userenv_main.c
View file @
69818163
...
...
@@ -115,6 +115,18 @@ BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
return
FALSE
;
}
BOOL
WINAPI
GetAllUsersProfileDirectoryA
(
LPSTR
lpProfileDir
,
LPDWORD
lpcchSize
)
{
FIXME
(
"%p %p
\n
"
,
lpProfileDir
,
lpcchSize
);
return
FALSE
;
}
BOOL
WINAPI
GetAllUsersProfileDirectoryW
(
LPWSTR
lpProfileDir
,
LPDWORD
lpcchSize
)
{
FIXME
(
"%p %p
\n
"
,
lpProfileDir
,
lpcchSize
);
return
FALSE
;
}
BOOL
WINAPI
GetProfileType
(
DWORD
*
pdwFlags
)
{
FIXME
(
"%p
\n
"
,
pdwFlags
);
...
...
include/userenv.h
View file @
69818163
...
...
@@ -40,6 +40,9 @@ BOOL WINAPI GetUserProfileDirectoryW(HANDLE,LPWSTR,LPDWORD);
BOOL
WINAPI
GetProfilesDirectoryA
(
LPSTR
,
LPDWORD
);
BOOL
WINAPI
GetProfilesDirectoryW
(
LPWSTR
,
LPDWORD
);
#define GetProfilesDirectory WINELIB_NAME_AW(GetProfilesDirectory)
BOOL
WINAPI
GetAllUsersProfileDirectoryA
(
LPSTR
,
LPDWORD
);
BOOL
WINAPI
GetAllUsersProfileDirectoryW
(
LPWSTR
,
LPDWORD
);
#define GetAllUsersProfileDirectory WINELIB_NAME_AW(GetAllUsersProfileDirectory)
BOOL
WINAPI
GetProfileType
(
DWORD
*
);
BOOL
WINAPI
LoadUserProfileA
(
HANDLE
,
LPPROFILEINFOA
);
BOOL
WINAPI
LoadUserProfileW
(
HANDLE
,
LPPROFILEINFOW
);
...
...
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