2005-12-10 18:36:38 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2005, Haiku, Inc.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _DIRECT_WINDOW_PRIVATE_H
|
|
|
|
#define _DIRECT_WINDOW_PRIVATE_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <OS.h>
|
|
|
|
|
|
|
|
|
2008-11-06 02:40:29 +03:00
|
|
|
#define DIRECT_BUFFER_INFO_AREA_SIZE B_PAGE_SIZE
|
|
|
|
|
|
|
|
|
2005-12-10 18:36:38 +03:00
|
|
|
struct direct_window_sync_data {
|
|
|
|
area_id area;
|
|
|
|
sem_id disable_sem;
|
|
|
|
sem_id disable_sem_ack;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _DIRECT_WINDOW_PRIVATE_H
|