xref: /haiku/src/servers/app/ServerTokenSpace.h (revision 1d9d47fc72028bb71b5f232a877231e59cfe2438)
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 
21 
22 extern BTokenSpace gTokenSpace;
23 
24 #endif	/* SERVER_TOKEN_SPACE_H */
25