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