]> code.delx.au - pulseaudio/blob - src/pulsecore/dllmain.c
Add copyright notices to all relevant files. (based on svn log)
[pulseaudio] / src / pulsecore / dllmain.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
7
8 PulseAudio is free software; you can redistribute it and/or modify
9 it under the terms of the GNU Lesser General Public License as published
10 by the Free Software Foundation; either version 2 of the License,
11 or (at your option) any later version.
12
13 PulseAudio is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with PulseAudio; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #ifdef OS_IS_WIN32
29
30 #include <stdlib.h>
31 #include <stdio.h>
32 #include <string.h>
33
34 #include <windows.h>
35
36 extern pa_set_root(HANDLE handle);
37
38 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) {
39 WSADATA data;
40
41 switch (fdwReason) {
42
43 case DLL_PROCESS_ATTACH:
44 if (!pa_set_root(hinstDLL))
45 return FALSE;
46 WSAStartup(MAKEWORD(2, 0), &data);
47 break;
48
49 case DLL_PROCESS_DETACH:
50 WSACleanup();
51 break;
52
53 }
54 return TRUE;
55 }
56
57 #endif /* OS_IS_WIN32 */