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
dbcbbe02
Commit
dbcbbe02
authored
Mar 04, 2003
by
Marcus Meissner
Committed by
Alexandre Julliard
Mar 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added _daylight stub int, and __p__daylight function.
parent
2d309da2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
3 deletions
+15
-3
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
time.c
dlls/msvcrt/time.c
+13
-1
No files found.
dlls/msvcrt/msvcrt.spec
View file @
dbcbbe02
...
...
@@ -109,7 +109,7 @@
@ cdecl __p__acmdln() __p__acmdln
@ stub __p__amblksiz #()
@ cdecl __p__commode() __p__commode
@
stub __p__daylight #()
@
cdecl __p__daylight() MSVCRT___p__daylight
@ stub __p__dstbias #()
@ cdecl __p__environ() __p__environ
@ stub __p__fileinfo #()
...
...
@@ -193,7 +193,7 @@
@ varargs _cscanf(str) _cscanf
@ extern _ctype MSVCRT__ctype
@ cdecl _cwait(ptr long long) _cwait
@
stub
_daylight
@
extern _daylight MSVCRT__
_daylight
@ stub _dstbias
@ cdecl _dup (long) _dup
@ cdecl _dup2 (long long) _dup2
...
...
dlls/msvcrt/time.c
View file @
dbcbbe02
...
...
@@ -37,7 +37,6 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
msvcrt
);
/* INTERNAL: Return formatted current time/date */
char
*
msvcrt_get_current_time
(
char
*
out
,
const
char
*
format
)
{
...
...
@@ -141,3 +140,16 @@ void _ftime(struct _timeb *buf)
buf
->
timezone
=
0
;
buf
->
dstflag
=
0
;
}
/*********************************************************************
* _daylight (MSVCRT.@)
*/
int
MSVCRT___daylight
=
1
;
/* FIXME: assume daylight */
/*********************************************************************
* __p_daylight (MSVCRT.@)
*/
void
*
MSVCRT___p__daylight
(
void
)
{
return
&
MSVCRT___daylight
;
}
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