Implement effect function skeletons
[openal-soft.git] / OpenAL32 / OpenAL32.c
blobc76a3acf7c5718d6844b6f83094065504badc20c
1 /**
2 * OpenAL cross platform audio library
3 * Copyright (C) 1999-2007 by authors.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 * Or go to http://www.gnu.org/copyleft/lgpl.html
21 #include "alMain.h"
22 #include "alBuffer.h"
23 #include "alFilter.h"
24 #include "alEffect.h"
25 #include "alThunk.h"
27 CRITICAL_SECTION g_mutex;
29 #ifdef _WIN32
30 BOOL APIENTRY DllMain(HANDLE hModule,DWORD ul_reason_for_call,LPVOID lpReserved)
32 (void)lpReserved;
34 // Perform actions based on the reason for calling.
35 switch(ul_reason_for_call)
37 case DLL_PROCESS_ATTACH:
38 DisableThreadLibraryCalls(hModule);
39 break;
41 case DLL_PROCESS_DETACH:
42 ReleaseALBuffers();
43 FreeALConfig();
44 ALTHUNK_EXIT();
45 DeleteCriticalSection(&g_mutex);
46 break;
48 return TRUE;
50 #else
51 #ifdef HAVE_GCC_DESTRUCTOR
52 static void my_deinit() __attribute__((destructor));
53 static void my_deinit()
55 static ALenum once = AL_FALSE;
56 if(once) return;
57 once = AL_TRUE;
59 ReleaseALBuffers();
60 ReleaseALEffects();
61 ReleaseALFilters();
62 FreeALConfig();
63 ALTHUNK_EXIT();
64 DeleteCriticalSection(&g_mutex);
66 #endif
67 #endif