1999-01-17 17:32:32 +01:00
|
|
|
/*
|
1999-01-24 20:14:58 +01:00
|
|
|
* Flat scroll bar class extra info
|
1999-01-17 17:32:32 +01:00
|
|
|
*
|
|
|
|
* Copyright 1998 Eric Kohl
|
1999-01-24 20:14:58 +01:00
|
|
|
* Copyright 1999 Alex Priem
|
1999-01-17 17:32:32 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_FLATSB_H
|
|
|
|
#define __WINE_FLATSB_H
|
|
|
|
|
1999-06-26 16:58:24 +02:00
|
|
|
#include "windef.h"
|
|
|
|
|
1999-01-17 17:32:32 +01:00
|
|
|
typedef struct tagFLATSB_INFO
|
|
|
|
{
|
|
|
|
DWORD dwDummy; /* just to keep the compiler happy ;-) */
|
|
|
|
|
|
|
|
} FLATSB_INFO, *LPFLATSB_INFO;
|
|
|
|
|
|
|
|
|
|
|
|
extern VOID FLATSB_Register (VOID);
|
|
|
|
extern VOID FLATSB_Unregister (VOID);
|
|
|
|
|
|
|
|
#endif /* __WINE_FLATSB_H */
|