Changeset 8544 for trunk/include/win/wine
- Timestamp:
- Jun 2, 2002, 12:10:33 PM (23 years ago)
- Location:
- trunk/include/win/wine
- Files:
-
- 1 added
- 2 edited
-
port.h (added)
-
wingdi16.h (modified) (2 diffs)
-
winuser16.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/wine/wingdi16.h
r4124 r8544 1 /* $Id: wingdi16.h,v 1. 3 2000-08-30 13:56:39sandervl Exp $ */1 /* $Id: wingdi16.h,v 1.4 2002-06-02 10:10:33 sandervl Exp $ */ 2 2 #ifndef __WINE_WINE_WINGDI16_H 3 3 #define __WINE_WINE_WINGDI16_H … … 532 532 533 533 534 #define CONV_RECT16TO32( r16, r32 ) \ 535 { \ 536 (r32)->left = ((LPRECT16)r16)->left; \ 537 (r32)->top = ((LPRECT16)r16)->top; \ 538 (r32)->right = ((LPRECT16)r16)->right; \ 539 (r32)->bottom = ((LPRECT16)r16)->bottom; \ 540 } 541 542 #define CONV_RECT32TO16( r32, r16 ) \ 543 { \ 544 ((LPRECT16)r16)->left = (INT16)(r32)->left; \ 545 ((LPRECT16)r16)->top = (INT16)(r32)->top; \ 546 ((LPRECT16)r16)->right = (INT16)(r32)->right; \ 547 ((LPRECT16)r16)->bottom = (INT16)(r32)->bottom; \ 548 } 549 534 550 #endif /* __WINE_WINE_WINGDI16_H */ -
trunk/include/win/wine/winuser16.h
r4576 r8544 1 /* $Id: winuser16.h,v 1. 7 2000-11-09 18:23:42sandervl Exp $ */1 /* $Id: winuser16.h,v 1.8 2002-06-02 10:10:33 sandervl Exp $ */ 2 2 #ifndef __WINE_WINE_WINUSER16_H 3 3 #define __WINE_WINE_WINUSER16_H … … 825 825 HICON16 WINAPI LoadIcon16(HINSTANCE16,SEGPTR); 826 826 HANDLE16 WINAPI LoadImage16(HINSTANCE16,LPCSTR,UINT16,INT16,INT16,UINT16); 827 HMENU16 WINAPI LoadMenu16(HINSTANCE16, SEGPTR);827 HMENU16 WINAPI LoadMenu16(HINSTANCE16,LPCSTR); 828 828 HMENU16 WINAPI LoadMenuIndirect16(LPCVOID); 829 829 INT16 WINAPI LoadString16(HINSTANCE16,UINT16,LPSTR,INT16);
Note:
See TracChangeset
for help on using the changeset viewer.
