Changeset 5369 for trunk/include/OS2WIN.H
- Timestamp:
- Mar 24, 2001, 4:42:20 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/OS2WIN.H
r4285 r5369 1 /* $Id: OS2WIN.H,v 1.9 2000-09-20 21:32:56 hugh Exp $ */2 1 #ifndef _OS2WIN_H 3 2 #define _OS2WIN_H … … 345 344 UINT OPEN32API _O32_DdeGetLastError(DWORD ); 346 345 347 UINT OPEN32API _O32_DdeInitialize(PDWORD, PFNCALLBACK , DWORD, DWORD );346 UINT OPEN32API _O32_DdeInitialize(PDWORD, PFNCALLBACK_O32, DWORD, DWORD ); 348 347 349 348 BOOL OPEN32API _O32_DdeKeepStringHandle(DWORD, HSZ ); … … 567 566 BOOL OPEN32API _O32_FreeLibrary( HINSTANCE ); 568 567 568 BOOL OPEN32API _O32_GdiComment(HDC hdc, UINT cbSize, CONST BYTE * lpData); 569 569 570 UINT OPEN32API _O32_GetACP( VOID ); 570 571 … … 715 716 int OPEN32API _O32_GetKeyNameText( LPARAM, LPSTR, int ); 716 717 718 USHORT OPEN32API _O32_GetAsyncKeyState(INT nVirtKey); 717 719 SHORT OPEN32API _O32_GetKeyState( int ); 718 720 … … 2898 2900 } 2899 2901 2900 inline UINT O32_DdeInitialize(PDWORD a, PFNCALLBACK b, DWORD c, DWORD d)2902 inline UINT O32_DdeInitialize(PDWORD a, PFNCALLBACK_O32 b, DWORD c, DWORD d) 2901 2903 { 2902 2904 UINT yyrc; … … 4095 4097 } 4096 4098 4099 inline BOOL O32_GdiComment(HDC hdc, UINT cbSize, CONST BYTE * lpData) 4100 { 4101 BOOL yyrc; 4102 USHORT sel = RestoreOS2FS(); 4103 4104 yyrc = _O32_GdiComment(hdc, cbSize, lpData); 4105 SetFS(sel); 4106 4107 return yyrc; 4108 } 4109 4097 4110 inline UINT O32_GetACP() 4098 4111 { … … 4909 4922 } 4910 4923 4924 inline SHORT O32_GetAsyncKeyState(int a) 4925 { 4926 SHORT yyrc; 4927 USHORT sel = RestoreOS2FS(); 4928 4929 yyrc = _O32_GetAsyncKeyState(a); 4930 SetFS(sel); 4931 4932 return yyrc; 4933 } 4934 4911 4935 inline SHORT O32_GetKeyState(int a) 4912 4936 {
Note:
See TracChangeset
for help on using the changeset viewer.