dsoundaudio.c (749bc4bf0bcd36e38b86d75a98f287f1941394cb) dsoundaudio.c (4fddf62a74c26f8da3c5ee61600e4d61052b0610)
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

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

27 */
28
29#include "qemu-common.h"
30#include "audio.h"
31
32#define AUDIO_CAP "dsound"
33#include "audio_int.h"
34
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

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

27 */
28
29#include "qemu-common.h"
30#include "audio.h"
31
32#define AUDIO_CAP "dsound"
33#include "audio_int.h"
34
35#define WIN32_LEAN_AND_MEAN
35#include <windows.h>
36#include <windows.h>
37#include <mmsystem.h>
36#include <objbase.h>
37#include <dsound.h>
38
39/* #define DEBUG_DSOUND */
40
41static struct {
42 int lock_retries;
43 int restore_retries;

--- 1038 unchanged lines hidden ---
38#include <objbase.h>
39#include <dsound.h>
40
41/* #define DEBUG_DSOUND */
42
43static struct {
44 int lock_retries;
45 int restore_retries;

--- 1038 unchanged lines hidden ---