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
RevLine 
[5991]1/* $Id: winuser32.h,v 1.11 2001-06-13 10:28:29 sandervl Exp $ */
[3707]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
[4860]12#ifndef NO_DCDATA
13
[4591]14#include <dcdata.h>
15
[3707]16ULONG OSLibGetScreenHeight();
17ULONG OSLibGetScreenWidth();
18
[4556]19void WIN32API Calculate1PixelDelta(pDCData pHps);
20void WIN32API TestWideLine (pDCData pHps);
[4591]21BOOL WIN32API changePageXForm(pDCData pHps, POINTL *pValue, int x, int y, POINTL *pPrev);
[4556]22BOOL WIN32API setPageXForm(pDCData pHps);
[4595]23VOID WIN32API selectClientArea(pDCData pHps);
[5604]24VOID WIN32API checkOrigin(pDCData pHps);
[4556]25VOID WIN32API removeClientArea(pDCData pHps);
26LONG WIN32API clientHeight(HWND hwnd, pDCData pHps);
27int WIN32API setMapMode(pDCData pHps, int mode);
[4860]28#endif
[4556]29
[4591]30int WIN32API DIB_GetDIBWidthBytes( int width, int depth );
[4600]31int WIN32API BITMAP_GetWidthBytes( INT width, INT depth );
[4591]32
[4848]33HWND WIN32API Win32ToOS2Handle(HWND hwndWin32);
34HWND WIN32API OS2ToWin32Handle(HWND hwnd);
35
[4855]36BOOL WIN32API IsSystemPen(HPEN hPen);
37BOOL WIN32API IsSystemBrush(HBRUSH hBrush);
38
[5263]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
[5991]44#define WIN32_APPEARANCE 0
45#define OS2_APPEARANCE 1
46void WIN32API SetWindowAppearance(BOOL fOS2Looks);
47
[3707]48#endif //__WINUSER32_H__
Note: See TracBrowser for help on using the repository browser.