22 lines
342 B
C
22 lines
342 B
C
|
/*
|
||
|
* Copyright 2005, Haiku, Inc. All Rights Reserved.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*
|
||
|
* Authors:
|
||
|
* Axel Dörfler, axeld@pinc-software.de
|
||
|
*/
|
||
|
#ifndef SHARED_CURSOR_AREA_H
|
||
|
#define SHARED_CURSOR_AREA_H
|
||
|
|
||
|
|
||
|
#include <SupportDefs.h>
|
||
|
|
||
|
|
||
|
struct shared_cursor {
|
||
|
uint32 pos;
|
||
|
int32 read;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* SHARED_CURSOR_AREA_H */
|