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
3a40b175
Commit
3a40b175
authored
Jun 27, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
userenv: Add a stub implementation for GetProfileType.
parent
cea41b0a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
userenv.spec
dlls/userenv/userenv.spec
+1
-0
userenv_main.c
dlls/userenv/userenv_main.c
+12
-0
No files found.
dlls/userenv/userenv.spec
View file @
3a40b175
...
...
@@ -2,6 +2,7 @@
@ stub DestroyEnvironmentBlock
@ stdcall GetProfilesDirectoryA(ptr ptr)
@ stdcall GetProfilesDirectoryW(ptr ptr)
@ stdcall GetProfileType(ptr)
@ stdcall GetUserProfileDirectoryA(ptr ptr ptr)
@ stdcall GetUserProfileDirectoryW(ptr ptr ptr)
@ stdcall LoadUserProfileA(ptr ptr)
...
...
dlls/userenv/userenv_main.c
View file @
3a40b175
...
...
@@ -79,6 +79,18 @@ BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
return
FALSE
;
}
/* FIXME: these belong in userenv.h */
#define PT_TEMPORARY 0x00000001
#define PT_ROAMING 0x00000002
#define PT_MANDATORY 0x00000004
BOOL
WINAPI
GetProfileType
(
LPDWORD
pdwFlags
)
{
FIXME
(
"%p
\n
"
,
pdwFlags
);
*
pdwFlags
=
PT_MANDATORY
|
PT_ROAMING
|
PT_TEMPORARY
;
return
TRUE
;
}
BOOL
WINAPI
LoadUserProfileA
(
HANDLE
hToken
,
LPPROFILEINFOA
lpProfileInfo
)
{
FIXME
(
"%p %p
\n
"
,
hToken
,
lpProfileInfo
);
...
...
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