xref: /haiku/src/servers/app/ServerTokenSpace.h (revision 5f4f984a94d150153bcb00a2ed780d0437859543)
1 /*
2  * Copyright 2005, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  *		Axel Dörfler, axeld@pinc-software.de
7  */
8 #ifndef	SERVER_TOKEN_SPACE_H
9 #define	SERVER_TOKEN_SPACE_H
10 
11 
12 #include <TokenSpace.h>
13 
14 
15 using BPrivate::BTokenSpace;
16 
17 const int32 kCursorToken = 3;
18 const int32 kBitmapToken = 4;
19 const int32 kPictureToken = 5;
20 const int32 kRemoteDrawingEngineToken = 6;
21 
22 
23 extern BTokenSpace gTokenSpace;
24 
25 #endif	/* SERVER_TOKEN_SPACE_H */
26