source: trunk/include/winuser32.h@ 5200

Last change on this file since 5200 was 4860, checked in by sandervl, 25 years ago

update

File size: 1.1 KB
Line 
1/* $Id: winuser32.h,v 1.8 2000-12-30 14:06:41 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 removeClientArea(pDCData pHps);
25LONG WIN32API clientHeight(HWND hwnd, pDCData pHps);
26int WIN32API setMapMode(pDCData pHps, int mode);
27#endif
28
29int WIN32API DIB_GetDIBWidthBytes( int width, int depth );
30int WIN32API BITMAP_GetWidthBytes( INT width, INT depth );
31
32HWND WIN32API Win32ToOS2Handle(HWND hwndWin32);
33HWND WIN32API OS2ToWin32Handle(HWND hwnd);
34
35BOOL WIN32API IsSystemPen(HPEN hPen);
36BOOL WIN32API IsSystemBrush(HBRUSH hBrush);
37
38#endif //__WINUSER32_H__
Note: See TracBrowser for help on using the repository browser.