wine/include/pager.h
Patrik Stridvall 1ed4ecffa8 ANSI C fixes.
Removed warnings.
Made the include files self-sufficient.
Some Solaris fixes.
1999-06-26 14:58:24 +00:00

31 lines
451 B
C

/*
* Pager class extra info
*
* Copyright 1998 Eric Kohl
*/
#ifndef __WINE_PAGER_H
#define __WINE_PAGER_H
#include "windef.h"
#include "wingdi.h"
typedef struct tagPAGER_INFO
{
HWND hwndChild;
COLORREF clrBk;
INT nBorder;
INT nButtonSize;
INT nPos;
BOOL bForward;
INT nChildSize;
} PAGER_INFO;
extern VOID PAGER_Register (VOID);
extern VOID PAGER_Unregister (VOID);
#endif /* __WINE_PAGER_H */