xref: /haiku/headers/private/interface/BitmapPrivate.h (revision 893988af824e65e49e55f517b157db8386e8002b)
1 /*
2  * Copyright 2006, Haiku, Inc.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _BITMAP_PRIVATE_H
6 #define _BITMAP_PRIVATE_H
7 
8 
9 #include <OS.h>
10 
11 
12 // This structure is placed in the client/server shared memory area.
13 
14 struct overlay_client_data {
15 	sem_id	lock;
16 	uint8*	buffer;
17 };
18 
19 #endif // _BITMAP_PRIVATE_H
20