Changeset 2694 for trunk/include
- Timestamp:
- Feb 9, 2000, 2:40:23 PM (26 years ago)
- Location:
- trunk/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/OS2WIN.H
r223 r2694 1 /* $Id: OS2WIN.H,v 1. 7 1999-06-26 18:24:20sandervl Exp $ */1 /* $Id: OS2WIN.H,v 1.8 2000-02-09 13:40:21 sandervl Exp $ */ 2 2 #ifndef _OS2WIN_H 3 3 #define _OS2WIN_H … … 1524 1524 DWORD OPEN32API _O32_WaitForSingleObject( HANDLE, DWORD ); 1525 1525 1526 DWORD OPEN32API _O32_WaitForInputIdle(HANDLE hProcess, DWORD dwTimeOut); 1527 1526 1528 BOOL OPEN32API _O32_WaitMessage( void); 1527 1529 … … 9805 9807 } 9806 9808 9809 inline DWORD O32_WaitForInputIdle(HANDLE hProcess, DWORD dwTimeOut) 9810 { 9811 DWORD yyrc; 9812 USHORT sel = RestoreOS2FS(); 9813 9814 yyrc = _O32_WaitForInputIdle(hProcess, dwTimeOut); 9815 SetFS(sel); 9816 9817 return yyrc; 9818 } 9807 9819 9808 9820 #endif /* ifdef _OS2WIN_H */ -
trunk/include/odin.h
r2349 r2694 1 /* $Id: odin.h,v 1.1 2 2000-01-06 23:17:27sandervl Exp $ */1 /* $Id: odin.h,v 1.13 2000-02-09 13:40:22 sandervl Exp $ */ 2 2 /* 3 3 * ODIN - Build Environment Definition … … 79 79 #define __inline__ inline 80 80 81 #ifndef RC_INVOKED 81 82 // #if (__IBMCPP__ == 300) || (__IBMC__ == 300) 82 83 #define NONAMELESSUNION 83 84 // #endif 85 #endif 84 86 85 87 #include <builtin.h> -
trunk/include/win/commdlg.h
r2606 r2694 1 /* $Id: commdlg.h,v 1. 4 2000-02-03 13:26:22sandervl Exp $ */1 /* $Id: commdlg.h,v 1.5 2000-02-09 13:40:23 sandervl Exp $ */ 2 2 /* 3 3 * COMMDLG - Common Wine Dialog ... :-) … … 591 591 #define PSD_ENABLEPAGEPAINTHOOK 0x00040000 592 592 #define PSD_DISABLEPAGEPAINTING 0x00080000 593 594 #define CommDlg_OpenSave_GetSpecA(_hdlg, _psz, _cbmax) \ 595 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPSTR)_psz) 596 #define CommDlg_OpenSave_GetSpecW(_hdlg, _psz, _cbmax) \ 597 (int)SNDMSG(_hdlg, CDM_GETSPEC, (WPARAM)_cbmax, (LPARAM)(LPWSTR)_psz) 598 #define CommDlg_OpenSave_GetSpec WINELIB_NAME_AW(CommDlg_OpenSave_GetSpec) 593 599 594 600 BOOL16 WINAPI ChooseColor16(LPCHOOSECOLOR16 lpChCol); -
trunk/include/win/windef.h
r2524 r2694 1 /* $Id: windef.h,v 1. 19 2000-01-26 23:17:49sandervl Exp $ */1 /* $Id: windef.h,v 1.20 2000-02-09 13:40:23 sandervl Exp $ */ 2 2 3 3 /* … … 114 114 115 115 #ifndef __export 116 #define __export __stdcall116 #define __export 117 117 #endif 118 118 -
trunk/include/win/windowsx.h
r2524 r2694 1 /* $Id: windowsx.h,v 1. 7 2000-01-26 23:17:50sandervl Exp $ */1 /* $Id: windowsx.h,v 1.8 2000-02-09 13:40:23 sandervl Exp $ */ 2 2 3 3 /* Copyright (C) 1999 Corel Corporation (Paul Quinn) */ … … 1053 1053 ((void)SendMessage((hwndCtl), EM_SETSEL, (ichStart), (ichEnd))) 1054 1054 1055 #define Edit_GetSel(hwndCtl) ((DWORD)SendMessage((hwndCtl), EM_GETSEL, 0L, 0L)) 1056 #define Edit_ReplaceSel(hwndCtl, lpszReplace) ((void)SendMessage((hwndCtl), EM_REPLACESEL, 0L, (LPARAM)(LPCTSTR)(lpszReplace))) 1057 1055 1058 #define Edit_GetText(hwndCtl, lpch, cchMax) GetWindowText((hwndCtl), (lpch), (cchMax)) 1056 1059 #define Edit_GetTextLength(hwndCtl) GetWindowTextLength(hwndCtl) … … 1064 1067 #define Edit_SetModify(hwndCtl, fModified) \ 1065 1068 ((void)SendMessage((hwndCtl), EM_SETMODIFY, (WPARAM)(UINT)(fModified), 0L)) 1069 1070 #define Edit_ScrollCaret(hwndCtl) ((BOOL)(DWORD)SendMessage((hwndCtl), EM_SCROLLCARET, 0, 0L)) 1066 1071 1067 1072 /* void Cls_OnMeasureItem(HWND hwnd, MEASUREITEMSTRUCT * lpMeasureItem) */ -
trunk/include/win/winuser.h
r2528 r2694 1 /* $Id: winuser.h,v 1.3 1 2000-01-26 23:47:20sandervl Exp $ */1 /* $Id: winuser.h,v 1.32 2000-02-09 13:40:23 sandervl Exp $ */ 2 2 3 3 #ifndef __INCLUDE_WINUSER_H … … 3675 3675 BOOL WINAPI UnregisterClassA(LPCSTR,HINSTANCE); 3676 3676 BOOL WINAPI UnregisterClassW(LPCWSTR,HINSTANCE); 3677 #define UnregisterClass WINELIB_NAME_AW(UnregisterClass) 3678 3677 3679 BOOL WINAPI UpdateWindow(HWND); 3678 3680 BOOL WINAPI ValidateRect(HWND,const RECT*);
Note:
See TracChangeset
for help on using the changeset viewer.