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
5f822367
Commit
5f822367
authored
Nov 28, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Porting fixes.
parent
8eb5e681
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
6 deletions
+5
-6
vartest.c
dlls/oleaut32/tests/vartest.c
+5
-5
clsid.c
dlls/shlwapi/tests/clsid.c
+0
-1
No files found.
dlls/oleaut32/tests/vartest.c
View file @
5f822367
...
...
@@ -3373,11 +3373,11 @@ static void test_VarUdateFromDate(void)
}
#define UD2T(d,m,y,h,mn,s,ms,dw,dy,flags,r,dt) \
ud.st.wYear =
y; ud.st.wMonth = m; ud.st.wDay = d; ud.st.wHour = h
; \
ud.st.wMinute =
mn; ud.st.wSecond = s; ud.st.wMilliseconds = ms
; \
ud.st.wDayOfWeek =
dw; ud.wDayOfYear = dy
; \
res = pVarDateFromUdate(&ud,
flags
, &out); \
ok(
r == res && (FAILED(r) || fabs(out-dt
) < 1.0e-11), \
ud.st.wYear =
(y); ud.st.wMonth = (m); ud.st.wDay = (d); ud.st.wHour = (h)
; \
ud.st.wMinute =
(mn); ud.st.wSecond = (s); ud.st.wMilliseconds = (ms)
; \
ud.st.wDayOfWeek =
(dw); ud.wDayOfYear = (dy)
; \
res = pVarDateFromUdate(&ud,
(flags)
, &out); \
ok(
(r) == res && (FAILED(r) || fabs(out-(dt)
) < 1.0e-11), \
"expected %lx, %.16g, got %lx, %.16g\n", r, dt, res, out)
static
void
test_VarDateFromUdate
(
void
)
...
...
dlls/shlwapi/tests/clsid.c
View file @
5f822367
...
...
@@ -28,7 +28,6 @@
#include "winuser.h"
#include "shlguid.h"
#include "shobjidl.h"
#include "wine/debug.h"
#define NO_SHLWAPI_REG
#define NO_SHLWAPI_PATH
#define NO_SHLWAPI_GDI
...
...
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