xref: /haiku/headers/private/interface/BitmapPrivate.h (revision 16d5c24e533eb14b7b8a99ee9f3ec9ba66335b1e)
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