Changeset 8544 for trunk/include/win
- Timestamp:
- Jun 2, 2002, 12:10:33 PM (23 years ago)
- Location:
- trunk/include/win
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/win.h
r6445 r8544 81 81 struct tagWND *next; 82 82 struct tagWND *owner; 83 void *pVScroll; /* Vertical scroll-bar info */ 84 void *pHScroll; /* Horizontal scroll-bar info */ 83 85 HWND hwndSelf; /* Handle of this window */ 84 86 HINSTANCE hInstance; /* Window hInstance (from CreateWindow) */ … … 91 93 LPWSTR text; /* Window text */ 92 94 DWORD cbWndExtra; 95 DWORD flags; 93 96 DWORD wExtra[1]; 94 97 } WND; … … 209 212 210 213 /* controls/icontitle.c */ 211 extern HWND ICONTITLE_Create( WND*);214 extern HWND ICONTITLE_Create( HWND ); 212 215 extern BOOL ICONTITLE_Init( void ); 213 216 … … 215 218 extern void FOCUS_SwitchFocus( MESSAGEQUEUE *pMsgQ, HWND , HWND ); 216 219 220 221 /* Built-in class descriptor */ 222 struct builtin_class_descr 223 { 224 LPCSTR name; /* class name */ 225 UINT style; /* class style */ 226 WNDPROC procA; /* ASCII window procedure */ 227 WNDPROC procW; /* Unicode window procedure */ 228 INT extra; /* window extra bytes */ 229 LPCSTR cursor; /* cursor name */ 230 HBRUSH brush; /* brush or system color */ 231 }; 232 217 233 #endif /* __WINE_WIN_H */ -
trunk/include/win/windef.h
r8426 r8544 214 214 typedef int INT; 215 215 typedef unsigned int UINT; 216 typedef unsigned int INT32; 216 217 typedef UINT * UINT_PTR; 217 218 typedef unsigned short WORD; … … 730 731 typedef const RECTL *LPCRECTL; 731 732 732 #define CONV_RECT16TO32(r16,r32) \733 ((r32)->left = (INT)(r16)->left, (r32)->top = (INT)(r16)->top, \734 (r32)->right = (INT)(r16)->right, (r32)->bottom = (INT)(r16)->bottom)735 #define CONV_RECT32TO16(r32,r16) \736 ((r16)->left = (INT16)(r32)->left, (r16)->top = (INT16)(r32)->top, \737 (r16)->right = (INT16)(r32)->right, (r16)->bottom = (INT16)(r32)->bottom)738 739 733 /* 740 734 * 8.9.99 DJR DECIMAL support -
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); -
trunk/include/win/winuser.h
r8539 r8544 3438 3438 CreateDialogIndirectParamW(inst,ptr,hwnd,dlg,0) 3439 3439 #define CreateDialogIndirect WINELIB_NAME_AW(CreateDialogIndirect) 3440 HWND WINAPI CreateDialogIndirectParamA(HINSTANCE,LPC DLGTEMPLATEA,HWND,3440 HWND WINAPI CreateDialogIndirectParamA(HINSTANCE,LPCVOID,HWND, 3441 3441 DLGPROC,LPARAM); 3442 HWND WINAPI CreateDialogIndirectParamW(HINSTANCE,LPC DLGTEMPLATEW,HWND,3442 HWND WINAPI CreateDialogIndirectParamW(HINSTANCE,LPCVOID,HWND, 3443 3443 DLGPROC,LPARAM); 3444 3444 #define CreateDialogIndirectParam WINELIB_NAME_AW(CreateDialogIndirectParam) … … 3502 3502 DialogBoxIndirectParamW(inst,template,owner,func,0) 3503 3503 #define DialogBoxIndirect WINELIB_NAME_AW(DialogBoxIndirect) 3504 INT WINAPI DialogBoxIndirectParamA(HINSTANCE,LPC DLGTEMPLATEA,HWND,DLGPROC,LPARAM);3505 INT WINAPI DialogBoxIndirectParamW(HINSTANCE,LPC DLGTEMPLATEW,HWND,DLGPROC,LPARAM);3504 INT WINAPI DialogBoxIndirectParamA(HINSTANCE,LPCVOID,HWND,DLGPROC,LPARAM); 3505 INT WINAPI DialogBoxIndirectParamW(HINSTANCE,LPCVOID,HWND,DLGPROC,LPARAM); 3506 3506 #define DialogBoxIndirectParam WINELIB_NAME_AW(DialogBoxIndirectParam) 3507 3507 INT WINAPI DialogBoxParamA(HINSTANCE,LPCSTR,HWND,DLGPROC,LPARAM); … … 3608 3608 HWND WINAPI GetDlgItem(HWND,INT); 3609 3609 UINT WINAPI GetDlgItemInt(HWND,INT,BOOL*,BOOL); 3610 UINTWINAPI GetDlgItemTextA(HWND,INT,LPSTR,UINT);3611 UINTWINAPI GetDlgItemTextW(HWND,INT,LPWSTR,UINT);3610 INT WINAPI GetDlgItemTextA(HWND,INT,LPSTR,UINT); 3611 INT WINAPI GetDlgItemTextW(HWND,INT,LPWSTR,UINT); 3612 3612 #define GetDlgItemText WINELIB_NAME_AW(GetDlgItemText) 3613 3613 UINT WINAPI GetDoubleClickTime(void); … … 3726 3726 BOOL WINAPI IsDialogMessageW(HWND,LPMSG); 3727 3727 #define IsDialogMessage WINELIB_NAME_AW(IsDialogMessage) 3728 BOOLWINAPI IsDlgButtonChecked(HWND,UINT);3728 UINT WINAPI IsDlgButtonChecked(HWND,UINT); 3729 3729 BOOL WINAPI IsIconic(HWND); 3730 3730 BOOL WINAPI IsMenu(HMENU); … … 3757 3757 HMENU WINAPI LoadMenuW(HINSTANCE,LPCWSTR); 3758 3758 #define LoadMenu WINELIB_NAME_AW(LoadMenu) 3759 HMENU WINAPI LoadMenuIndirectA( const MENUITEMTEMPLATEHEADER *);3760 HMENU WINAPI LoadMenuIndirectW( const MENUITEMTEMPLATEHEADER *);3759 HMENU WINAPI LoadMenuIndirectA(LPCVOID); 3760 HMENU WINAPI LoadMenuIndirectW(LPCVOID); 3761 3761 #define LoadMenuIndirect WINELIB_NAME_AW(LoadMenuIndirect) 3762 3762 INT WINAPI LoadStringA(HINSTANCE,UINT,LPSTR,INT);
Note:
See TracChangeset
for help on using the changeset viewer.