1*21c8c925SAxel Dörfler /* 2*21c8c925SAxel Dörfler * Copyright 2006, Haiku, Inc. 3*21c8c925SAxel Dörfler * Distributed under the terms of the MIT License. 4*21c8c925SAxel Dörfler */ 5*21c8c925SAxel Dörfler #ifndef _BITMAP_PRIVATE_H 6*21c8c925SAxel Dörfler #define _BITMAP_PRIVATE_H 7*21c8c925SAxel Dörfler 8*21c8c925SAxel Dörfler 9*21c8c925SAxel Dörfler #include <OS.h> 10*21c8c925SAxel Dörfler 11*21c8c925SAxel Dörfler 12*21c8c925SAxel Dörfler // This structure is placed in the client/server shared memory area. 13*21c8c925SAxel Dörfler 14*21c8c925SAxel Dörfler struct overlay_client_data { 15*21c8c925SAxel Dörfler sem_id lock; 16*21c8c925SAxel Dörfler uint8* buffer; 17*21c8c925SAxel Dörfler }; 18*21c8c925SAxel Dörfler 19*21c8c925SAxel Dörfler #endif // _BITMAP_PRIVATE_H 20