1/*
2 * Copyright 2005, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _DIRECT_WINDOW_PRIVATE_H
6#define _DIRECT_WINDOW_PRIVATE_H
7
8
9#include <OS.h>
10
11
12#define DIRECT_BUFFER_INFO_AREA_SIZE B_PAGE_SIZE
13
14
15struct direct_window_sync_data {
16	area_id	area;
17	sem_id	disable_sem;
18	sem_id	disable_sem_ack;
19};
20
21
22#endif	// _DIRECT_WINDOW_PRIVATE_H
23