1 | /* $Id: vboxsharedrc.h 32184 2010-09-01 16:37:20Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | *
|
---|
4 | * VBox extension to Wine D3D
|
---|
5 | *
|
---|
6 | * Copyright (C) 2010 Oracle Corporation
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License (GPL) as published by the Free Software
|
---|
12 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
13 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
14 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 | #ifndef ___vboxsharedrc_h___
|
---|
17 | #define ___vboxsharedrc_h___
|
---|
18 |
|
---|
19 | #define VBOXSHRC_F_SHARED 0x00000001 /* shared rc */
|
---|
20 | #define VBOXSHRC_F_SHARED_OPENED 0x00000002 /* if set shared rc is opened, otherwise it is created */
|
---|
21 | #define VBOXSHRC_F_INITIALIZED 0x00000004 /* set once shared rc is initialized */
|
---|
22 |
|
---|
23 | #define VBOXSHRC_GET_SHAREFLAFS(_o) ((_o)->resource.sharerc_flags)
|
---|
24 | #define VBOXSHRC_GET_SHAREHANDLE(_o) ((_o)->resource.sharerc_handle)
|
---|
25 | #define VBOXSHRC_SET_SHAREHANDLE(_o, _h) ((_o)->resource.sharerc_handle = (_h))
|
---|
26 | #define VBOXSHRC_SET_INITIALIZED(_o) (VBOXSHRC_GET_SHAREFLAFS(_o) |= VBOXSHRC_F_INITIALIZED)
|
---|
27 | #define VBOXSHRC_COPY_SHAREDATA(_oDst, _oSrc) do { \
|
---|
28 | VBOXSHRC_GET_SHAREFLAFS(_oDst) = VBOXSHRC_GET_SHAREFLAFS(_oSrc); \
|
---|
29 | VBOXSHRC_SET_SHAREHANDLE(_oDst, VBOXSHRC_GET_SHAREFLAFS(_oSrc)); \
|
---|
30 | } while (0)
|
---|
31 | #define VBOXSHRC_SET_SHARED(_o) (VBOXSHRC_GET_SHAREFLAFS(_o) |= VBOXSHRC_F_SHARED)
|
---|
32 | #define VBOXSHRC_SET_SHARED_OPENED(_o) (VBOXSHRC_GET_SHAREFLAFS(_o) |= VBOXSHRC_F_SHARED_OPENED)
|
---|
33 | #define VBOXSHRC_IS_SHARED(_o) (!!(VBOXSHRC_GET_SHAREFLAFS(_o) & VBOXSHRC_F_SHARED))
|
---|
34 | #define VBOXSHRC_IS_SHARED_OPENED(_o) (!!(VBOXSHRC_GET_SHAREFLAFS(_o) & VBOXSHRC_F_SHARED_OPENED))
|
---|
35 | #define VBOXSHRC_IS_INITIALIZED(_o) (!!(VBOXSHRC_GET_SHAREFLAFS(_o) & VBOXSHRC_F_INITIALIZED))
|
---|
36 |
|
---|
37 | #ifdef DEBUG_misha
|
---|
38 | /* just for simplicity */
|
---|
39 | #define AssertBreakpoint() do { __asm {int 3} } while (0)
|
---|
40 | #define Assert(_expr) do { \
|
---|
41 | if (!(_expr)) AssertBreakpoint(); \
|
---|
42 | } while (0)
|
---|
43 | #else
|
---|
44 | #define AssertBreakpoint() do { } while (0)
|
---|
45 | #define Assert(_expr) do { } while (0)
|
---|
46 | #endif
|
---|
47 |
|
---|
48 | #endif /* #ifndef ___vboxsharedrc_h___ */
|
---|