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
352a00b6
Commit
352a00b6
authored
Oct 25, 2004
by
Juan Lang
Committed by
Alexandre Julliard
Oct 25, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use shell32 to get the user profile dir.
parent
531be0b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
dirid.c
dlls/setupapi/dirid.c
+3
-4
No files found.
dlls/setupapi/dirid.c
View file @
352a00b6
...
...
@@ -68,6 +68,8 @@ static const WCHAR *get_unknown_dirid(void)
return
unknown_dirid
;
}
static
const
WCHAR
*
get_csidl_dir
(
DWORD
csidl
);
/* create the string for a system dirid */
static
const
WCHAR
*
create_system_dirid
(
int
dirid
)
{
...
...
@@ -80,7 +82,6 @@ static const WCHAR *create_system_dirid( int dirid )
static
const
WCHAR
Viewers
[]
=
{
'\\'
,
'v'
,
'i'
,
'e'
,
'w'
,
'e'
,
'r'
,
's'
,
0
};
static
const
WCHAR
System
[]
=
{
'\\'
,
's'
,
'y'
,
's'
,
't'
,
'e'
,
'm'
,
0
};
static
const
WCHAR
Spool
[]
=
{
'\\'
,
's'
,
'p'
,
'o'
,
'o'
,
'l'
,
0
};
static
const
WCHAR
Profile
[]
=
{
'\\'
,
'p'
,
'r'
,
'o'
,
'f'
,
'i'
,
'l'
,
'e'
,
's'
,
'\\'
,
'A'
,
'd'
,
'm'
,
'i'
,
'n'
,
'i'
,
's'
,
't'
,
'r'
,
'a'
,
't'
,
'o'
,
'r'
,
0
};
static
const
WCHAR
UserProfile
[]
=
{
'U'
,
'S'
,
'E'
,
'R'
,
'P'
,
'R'
,
'O'
,
'F'
,
'I'
,
'L'
,
'E'
,
0
};
WCHAR
buffer
[
MAX_PATH
+
32
],
*
str
;
...
...
@@ -134,9 +135,7 @@ static const WCHAR *create_system_dirid( int dirid )
break
;
case
DIRID_USERPROFILE
:
if
(
GetEnvironmentVariableW
(
UserProfile
,
buffer
,
MAX_PATH
))
break
;
GetWindowsDirectoryW
(
buffer
,
MAX_PATH
);
strcatW
(
buffer
,
Profile
);
break
;
return
get_csidl_dir
(
CSIDL_PROFILE
);
case
DIRID_LOADER
:
return
C_Root
;
/* FIXME */
case
DIRID_COLOR
:
/* FIXME */
...
...
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