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
45c4fc7c
Commit
45c4fc7c
authored
Dec 28, 2017
by
Piotr Caban
Committed by
Alexandre Julliard
Dec 28, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Remove unused variables.
Signed-off-by:
Piotr Caban
<
piotr@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
fd025199
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
17 deletions
+2
-17
data.c
dlls/msvcrt/data.c
+2
-17
No files found.
dlls/msvcrt/data.c
View file @
45c4fc7c
...
...
@@ -32,17 +32,10 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
int
MSVCRT___argc
=
0
;
static
int
argc_expand
;
static
int
wargc_expand
;
unsigned
int
MSVCRT_basemajor
=
0
;
/* FIXME: */
unsigned
int
MSVCRT_baseminor
=
0
;
/* FIXME: */
unsigned
int
MSVCRT_baseversion
=
0
;
/* FIXME: */
unsigned
int
MSVCRT__commode
=
0
;
unsigned
int
MSVCRT__fmode
=
0
;
unsigned
int
MSVCRT_osmajor
=
0
;
/* FIXME: */
unsigned
int
MSVCRT_osminor
=
0
;
/* FIXME: */
unsigned
int
MSVCRT_osmode
=
0
;
/* FIXME: */
unsigned
int
MSVCRT__osver
=
0
;
unsigned
int
MSVCRT__osplatform
=
0
;
unsigned
int
MSVCRT_osversion
=
0
;
/* FIXME: */
unsigned
int
MSVCRT__winmajor
=
0
;
unsigned
int
MSVCRT__winminor
=
0
;
unsigned
int
MSVCRT__winver
=
0
;
...
...
@@ -338,16 +331,8 @@ void msvcrt_init_args(void)
MSVCRT__winminor
=
osvi
.
dwMinorVersion
;
MSVCRT__osver
=
osvi
.
dwBuildNumber
;
MSVCRT__osplatform
=
osvi
.
dwPlatformId
;
MSVCRT_osversion
=
MSVCRT__winver
;
MSVCRT_osmajor
=
MSVCRT__winmajor
;
MSVCRT_osminor
=
MSVCRT__winminor
;
MSVCRT_baseversion
=
MSVCRT__osver
;
MSVCRT_baseminor
=
MSVCRT_baseversion
&
0xFF
;
MSVCRT_basemajor
=
(
MSVCRT_baseversion
>>
8
)
&
0xFF
;
TRACE
(
"winver %08x winmajor %08x winminor %08x osver%08x baseversion %08x basemajor %08x baseminor %08x
\n
"
,
MSVCRT__winver
,
MSVCRT__winmajor
,
MSVCRT__winminor
,
MSVCRT__osver
,
MSVCRT_baseversion
,
MSVCRT_basemajor
,
MSVCRT_baseminor
);
TRACE
(
"osversion %08x osmajor %08x osminor %08x
\n
"
,
MSVCRT_osversion
,
MSVCRT_osmajor
,
MSVCRT_osminor
);
TRACE
(
"winver %08x winmajor %08x winminor %08x osver %08x
\n
"
,
MSVCRT__winver
,
MSVCRT__winmajor
,
MSVCRT__winminor
,
MSVCRT__osver
);
MSVCRT__HUGE
=
HUGE_VAL
;
MSVCRT___setlc_active
=
0
;
...
...
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