xref: /haiku/headers/private/input/shared_cursor_area.h (revision 6c17d025516c9c1a271394f8ef618d842e68c716)
1*6c17d025SAxel Dörfler /*
2*6c17d025SAxel Dörfler  * Copyright 2005, Haiku, Inc. All Rights Reserved.
3*6c17d025SAxel Dörfler  * Distributed under the terms of the MIT License.
4*6c17d025SAxel Dörfler  *
5*6c17d025SAxel Dörfler  * Authors:
6*6c17d025SAxel Dörfler  *		Axel Dörfler, axeld@pinc-software.de
7*6c17d025SAxel Dörfler  */
8*6c17d025SAxel Dörfler #ifndef SHARED_CURSOR_AREA_H
9*6c17d025SAxel Dörfler #define SHARED_CURSOR_AREA_H
10*6c17d025SAxel Dörfler 
11*6c17d025SAxel Dörfler 
12*6c17d025SAxel Dörfler #include <SupportDefs.h>
13*6c17d025SAxel Dörfler 
14*6c17d025SAxel Dörfler 
15*6c17d025SAxel Dörfler struct shared_cursor {
16*6c17d025SAxel Dörfler 	uint32	pos;
17*6c17d025SAxel Dörfler 	int32	read;
18*6c17d025SAxel Dörfler };
19*6c17d025SAxel Dörfler 
20*6c17d025SAxel Dörfler 
21*6c17d025SAxel Dörfler #endif	/* SHARED_CURSOR_AREA_H */
22