projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Removed duplicate macro definitions for the IStorage and IStream COM
[wine]
/
include
/
pager.h
1
/*
2
* Pager class extra info
3
*
4
* Copyright 1998 Eric Kohl
5
*/
6
7
#ifndef __WINE_PAGER_H
8
#define __WINE_PAGER_H
9
10
#include "windef.h"
11
#include "wingdi.h"
12
13
typedef struct tagPAGER_INFO
14
{
15
HWND hwndChild;
16
COLORREF clrBk;
17
INT nBorder;
18
INT nButtonSize;
19
INT nPos;
20
BOOL bForward;
21
22
INT nChildSize;
23
24
} PAGER_INFO;
25
26
27
extern VOID PAGER_Register (VOID);
28
extern VOID PAGER_Unregister (VOID);
29
30
#endif /* __WINE_PAGER_H */