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
e9a8b751
Commit
e9a8b751
authored
Sep 21, 2011
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Sep 23, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmd: Standardize BOOL type usage in directory.c.
parent
ca741823
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
directory.c
programs/cmd/directory.c
+3
-4
No files found.
programs/cmd/directory.c
View file @
e9a8b751
...
...
@@ -51,13 +51,12 @@ typedef enum _DISPLAYORDER
Date
}
DISPLAYORDER
;
static
int
file_total
,
dir_total
,
recurse
,
wide
,
bare
,
max_width
,
lower
;
static
int
shortname
,
usernames
;
static
int
file_total
,
dir_total
,
max_width
;
static
ULONGLONG
byte_total
;
static
DISPLAYTIME
dirTime
;
static
DISPLAYORDER
dirOrder
;
static
BOOL
orderReverse
,
orderGroupDirs
,
orderGroupDirsReverse
,
orderByCol
;
static
BOOL
separator
;
static
BOOL
paged_mode
,
recurse
,
wide
,
bare
,
lower
,
shortname
,
usernames
,
separator
;
static
ULONG
showattrs
,
attrsbits
;
static
const
WCHAR
dotW
[]
=
{
'.'
,
'\0'
};
...
...
@@ -631,7 +630,7 @@ static void WCMD_dir_trailer(WCHAR drive) {
void
WCMD_directory
(
WCHAR
*
cmd
)
{
WCHAR
path
[
MAX_PATH
],
cwd
[
MAX_PATH
];
int
status
,
paged_mode
;
int
status
;
CONSOLE_SCREEN_BUFFER_INFO
consoleInfo
;
WCHAR
*
p
;
WCHAR
string
[
MAXSTRING
];
...
...
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