source: trunk/include/winuser32.h@ 5991

Last change on this file since 5991 was 5991, checked in by sandervl, 24 years ago

header update

File size: 1.4 KB
Line 
1/* $Id: winuser32.h,v 1.11 2001-06-13 10:28:29 sandervl Exp $ */
2
3/*
4 * Internal functions exported by user32
5 *
6 * Project Odin Software License can be found in LICENSE.TXT
7 *
8 */
9#ifndef __WINUSER32_H__
10#define __WINUSER32_H__
11
12#ifndef NO_DCDATA
13
14#include <dcdata.h>
15
16ULONG OSLibGetScreenHeight();
17ULONG OSLibGetScreenWidth();
18
19void WIN32API Calculate1PixelDelta(pDCData pHps);
20void WIN32API TestWideLine (pDCData pHps);
21BOOL WIN32API changePageXForm(pDCData pHps, POINTL *pValue, int x, int y, POINTL *pPrev);
22BOOL WIN32API setPageXForm(pDCData pHps);
23VOID WIN32API selectClientArea(pDCData pHps);
24VOID WIN32API checkOrigin(pDCData pHps);
25VOID WIN32API removeClientArea(pDCData pHps);
26LONG WIN32API clientHeight(HWND hwnd, pDCData pHps);
27int WIN32API setMapMode(pDCData pHps, int mode);
28#endif
29
30int WIN32API DIB_GetDIBWidthBytes( int width, int depth );
31int WIN32API BITMAP_GetWidthBytes( INT width, INT depth );
32
33HWND WIN32API Win32ToOS2Handle(HWND hwndWin32);
34HWND WIN32API OS2ToWin32Handle(HWND hwnd);
35
36BOOL WIN32API IsSystemPen(HPEN hPen);
37BOOL WIN32API IsSystemBrush(HBRUSH hBrush);
38
39//Turns native OS/2 window into window recognized by Odin (with only very
40//limited functionality)
41//Useful for creating an Odin window with an OS/2 window as parent.
42HWND WIN32API CreateFakeWindowEx(HWND hwndOS2);
43
44#define WIN32_APPEARANCE 0
45#define OS2_APPEARANCE 1
46void WIN32API SetWindowAppearance(BOOL fOS2Looks);
47
48#endif //__WINUSER32_H__
Note: See TracBrowser for help on using the repository browser.