fix test where sizeof(long) != sizeof(int)

This commit is contained in:
Benjamin Peterson 2014-11-06 00:52:58 -05:00
parent dc69e03ef3
commit abd1c97bd2
1 changed files with 4 additions and 4 deletions

View File

@ -527,10 +527,10 @@ EXPORT(int) PointInRect(RECT *prc, POINT pt)
return 1;
}
EXPORT(int left = 10);
EXPORT(int top = 20);
EXPORT(int right = 30);
EXPORT(int bottom = 40);
EXPORT(long left = 10);
EXPORT(long top = 20);
EXPORT(long right = 30);
EXPORT(long bottom = 40);
EXPORT(RECT) ReturnRect(int i, RECT ar, RECT* br, POINT cp, RECT dr,
RECT *er, POINT fp, RECT gr)