dsoundaudio.c (8ead62cfc21f61a32677892c721674e06e9f6153) dsoundaudio.c (749bc4bf0bcd36e38b86d75a98f287f1941394cb)
1/*
2 * QEMU DirectSound audio driver
3 *
4 * Copyright (c) 2005 Vassili Karpov (malc)
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 12 unchanged lines hidden (view full) ---

21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25/*
26 * SEAL 1.07 by Carlos 'pel' Hasan was used as documentation
27 */
28
1/*
2 * QEMU DirectSound audio driver
3 *
4 * Copyright (c) 2005 Vassili Karpov (malc)
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights

--- 12 unchanged lines hidden (view full) ---

21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
25/*
26 * SEAL 1.07 by Carlos 'pel' Hasan was used as documentation
27 */
28
29#include "vl.h"
29#include "qemu-common.h"
30#include "audio.h"
30
31#define AUDIO_CAP "dsound"
32#include "audio_int.h"
33
34#include <windows.h>
35#include <objbase.h>
36#include <dsound.h>
37

--- 1043 unchanged lines hidden ---
31
32#define AUDIO_CAP "dsound"
33#include "audio_int.h"
34
35#include <windows.h>
36#include <objbase.h>
37#include <dsound.h>
38

--- 1043 unchanged lines hidden ---