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
1bc18f3d
Commit
1bc18f3d
authored
Nov 08, 2002
by
Ryan Cumming
Committed by
Alexandre Julliard
Nov 08, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove OLE_GetFormatA, reimplement GetDateFormatA and GetTimeFormatA
as wrappers around their Unicode versions.
parent
1bd4bbb5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
locale.c
dlls/kernel/tests/locale.c
+0
-2
ole2nls.c
ole/ole2nls.c
+0
-0
No files found.
dlls/kernel/tests/locale.c
View file @
1bc18f3d
...
...
@@ -118,7 +118,6 @@ LCID lcid;
ret
=
GetTimeFormatA
(
lcid
,
TIME_FORCE24HOURFORMAT
,
&
curtime
,
format
,
buffer
,
0
);
cmp
=
strncmp
(
Expected
,
buffer
,
4
);
ok
(
cmp
==
0
,
"GetTimeFormat with len=0 got %s instead of %s"
,
buffer
,
Expected
);
todo_wine
{
eq
(
ret
,
12
,
"GetTimeFormat with len=0"
,
"%d"
);
}
memset
(
buffer
,
'x'
,
sizeof
(
buffer
)
/
sizeof
(
buffer
[
0
])
);
strcpy
(
Expected
,
"AMxx"
);
...
...
@@ -174,7 +173,6 @@ LCID lcid;
ret
=
GetDateFormatA
(
lcid
,
0
,
&
curtime
,
format
,
buffer
,
0
);
cmp
=
strncmp
(
Expected
,
buffer
,
4
);
ok
(
cmp
==
0
,
"GetDateFormat got %s instead of %s"
,
buffer
,
Expected
);
todo_wine
{
eq
(
ret
,
16
,
"GetDateFormat with len=0"
,
"%d"
);
}
memset
(
buffer
,
'x'
,
sizeof
(
buffer
)
/
sizeof
(
buffer
[
0
])
);
strcpy
(
Expected
,
"Saxx"
);
...
...
ole/ole2nls.c
View file @
1bc18f3d
This diff is collapsed.
Click to expand it.
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