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
1b69f035
Commit
1b69f035
authored
Jan 23, 2006
by
Hans Leidekker
Committed by
Alexandre Julliard
Jan 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Stub implementation for wcsftime.
parent
48d7c0bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-1
time.c
dlls/msvcrt/time.c
+12
-0
No files found.
dlls/msvcrt/msvcrt.spec
View file @
1b69f035
...
@@ -744,7 +744,7 @@
...
@@ -744,7 +744,7 @@
@ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll
@ cdecl wcscoll(wstr wstr) MSVCRT_wcscoll
@ cdecl wcscpy(ptr wstr) ntdll.wcscpy
@ cdecl wcscpy(ptr wstr) ntdll.wcscpy
@ cdecl wcscspn(wstr wstr) ntdll.wcscspn
@ cdecl wcscspn(wstr wstr) ntdll.wcscspn
@
stub wcsftime #
(ptr long wstr ptr) MSVCRT_wcsftime
@
cdecl wcsftime
(ptr long wstr ptr) MSVCRT_wcsftime
@ cdecl wcslen(wstr) ntdll.wcslen
@ cdecl wcslen(wstr) ntdll.wcslen
@ cdecl wcsncat(wstr wstr long) ntdll.wcsncat
@ cdecl wcsncat(wstr wstr long) ntdll.wcsncat
@ cdecl wcsncmp(wstr wstr long) ntdll.wcsncmp
@ cdecl wcsncmp(wstr wstr long) ntdll.wcsncmp
...
...
dlls/msvcrt/time.c
View file @
1b69f035
...
@@ -438,6 +438,18 @@ MSVCRT_size_t MSVCRT_strftime( char *str, MSVCRT_size_t max, const char *format,
...
@@ -438,6 +438,18 @@ MSVCRT_size_t MSVCRT_strftime( char *str, MSVCRT_size_t max, const char *format,
}
}
/*********************************************************************
/*********************************************************************
* wcsftime (MSVCRT.@)
*/
MSVCRT_size_t
MSVCRT_wcsftime
(
MSVCRT_wchar_t
*
str
,
MSVCRT_size_t
max
,
const
MSVCRT_wchar_t
*
format
,
const
struct
MSVCRT_tm
*
mstm
)
{
FIXME
(
"%p, %d, %s, %p - stub
\n
"
,
str
,
max
,
debugstr_w
(
format
),
mstm
);
*
str
=
'\0'
;
return
0
;
}
/*********************************************************************
* asctime (MSVCRT.@)
* asctime (MSVCRT.@)
*/
*/
char
*
MSVCRT_asctime
(
const
struct
MSVCRT_tm
*
mstm
)
char
*
MSVCRT_asctime
(
const
struct
MSVCRT_tm
*
mstm
)
...
...
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