Changeset 2694 for trunk/include/win
- Timestamp:
- Feb 9, 2000, 2:40:23 PM (26 years ago)
- Location:
- trunk/include/win
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
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.