Release 960811
[wine] / include / selectors.h
1 /*
2  * Selector definitions
3  *
4  * Copyright 1995 Alexandre Julliard
5  */
6
7 #ifndef __WINE_SELECTORS_H
8 #define __WINE_SELECTORS_H
9
10 #include "windows.h"
11 #include "ldt.h"
12
13 extern WORD SELECTOR_AllocBlock( const void *base, DWORD size,
14                                  enum seg_type type, BOOL32 is32bit,
15                                  BOOL32 readonly );
16 extern WORD SELECTOR_ReallocBlock( WORD sel, const void *base, DWORD size,
17                                    enum seg_type type, BOOL32 is32bit,
18                                    BOOL32 readonly );
19 extern void SELECTOR_FreeBlock( WORD sel, WORD count );
20
21 #endif /* __WINE_SELECTORS_H */