aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2008-01-14 10:39:54 -0800
committerChris Robinson <[email protected]>2008-01-14 10:39:54 -0800
commit29c6238b52e0733f7fbd19853f323ea9ee245064 (patch)
tree0e98d2d45c6a0b77687a85b2c47d57028ac669a3 /OpenAL32/Include
parent38db8eb64bad101e5c16133582c5c4e1a8716593 (diff)
Keep track of open devices
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index ce5c5be9..d1acfc11 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -174,6 +174,8 @@ struct ALCdevice_struct
BackendFuncs *Funcs;
void *ExtraData; // For the backend's use
+
+ ALCdevice *next;
};
#define ALCdevice_OpenPlayback(a,b) ((a)->Funcs->OpenPlayback((a), (b)))