Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
88f245d0
Commit
88f245d0
authored
May 14, 2017
by
Alex Henrie
Committed by
Alexandre Julliard
May 15, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mountmgr: Name DosDevices constants consistently.
Signed-off-by:
Alex Henrie
<
alexhenrie24@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
74a98948
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
device.c
dlls/mountmgr.sys/device.c
+4
-4
No files found.
dlls/mountmgr.sys/device.c
View file @
88f245d0
...
...
@@ -1000,12 +1000,12 @@ static BOOL create_port_device( DRIVER_OBJECT *driver, int n, const char *unix_p
{
static
const
WCHAR
comW
[]
=
{
'C'
,
'O'
,
'M'
,
'%'
,
'u'
,
0
};
static
const
WCHAR
lptW
[]
=
{
'L'
,
'P'
,
'T'
,
'%'
,
'u'
,
0
};
static
const
WCHAR
auxW
[]
=
{
'\\'
,
'D'
,
'o'
,
's'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
'\\'
,
'A'
,
'U'
,
'X'
,
0
};
static
const
WCHAR
prnW
[]
=
{
'\\'
,
'D'
,
'o'
,
's'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
'\\'
,
'P'
,
'R'
,
'N'
,
0
};
static
const
WCHAR
device_serialW
[]
=
{
'\\'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
'\\'
,
'S'
,
'e'
,
'r'
,
'i'
,
'a'
,
'l'
,
'%'
,
'u'
,
0
};
static
const
WCHAR
device_parallelW
[]
=
{
'\\'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
'\\'
,
'P'
,
'a'
,
'r'
,
'a'
,
'l'
,
'l'
,
'e'
,
'l'
,
'%'
,
'u'
,
0
};
static
const
WCHAR
dosdevices_comW
[]
=
{
'\\'
,
'D'
,
'o'
,
's'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
'\\'
,
'C'
,
'O'
,
'M'
,
'%'
,
'u'
,
0
};
static
const
WCHAR
dosdevices_auxW
[]
=
{
'\\'
,
'D'
,
'o'
,
's'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
'\\'
,
'A'
,
'U'
,
'X'
,
0
};
static
const
WCHAR
dosdevices_lptW
[]
=
{
'\\'
,
'D'
,
'o'
,
's'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
'\\'
,
'L'
,
'P'
,
'T'
,
'%'
,
'u'
,
0
};
static
const
WCHAR
dosdevices_prnW
[]
=
{
'\\'
,
'D'
,
'o'
,
's'
,
'D'
,
'e'
,
'v'
,
'i'
,
'c'
,
'e'
,
's'
,
'\\'
,
'P'
,
'R'
,
'N'
,
0
};
const
WCHAR
*
dos_name_format
,
*
nt_name_format
,
*
reg_value_format
,
*
symlink_format
,
*
default_device
;
WCHAR
dos_name
[
7
],
reg_value
[
256
],
nt_buffer
[
32
],
symlink_buffer
[
32
];
DWORD
type
,
size
;
...
...
@@ -1020,7 +1020,7 @@ static BOOL create_port_device( DRIVER_OBJECT *driver, int n, const char *unix_p
nt_name_format
=
device_serialW
;
reg_value_format
=
comW
;
symlink_format
=
dosdevices_comW
;
default_device
=
auxW
;
default_device
=
dosdevices_
auxW
;
}
else
{
...
...
@@ -1028,7 +1028,7 @@ static BOOL create_port_device( DRIVER_OBJECT *driver, int n, const char *unix_p
nt_name_format
=
device_parallelW
;
reg_value_format
=
dosdevices_lptW
;
symlink_format
=
dosdevices_lptW
;
default_device
=
prnW
;
default_device
=
dosdevices_
prnW
;
}
sprintfW
(
dos_name
,
dos_name_format
,
n
);
...
...
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