OSDN Git Service

Import UnkoTim212
[timidity41/timidity41.git] / timidity / w32_a.h
1
2 #ifdef HAVE_CONFIG_H
3 #include "config.h"
4 #endif /* HAVE_CONFIG_H */
5
6 #include "interface.h"
7 #include "timidity.h"
8 #include "common.h"
9
10 #include <stdio.h>
11 #ifdef HAVE_STDLIB_H
12 #include <stdlib.h>
13 #endif /* HAVE_STDLIB_H */
14 #ifndef NO_STRING_H
15 #include <string.h>
16 #else
17 #include <strings.h>
18 #endif
19 #include <windows.h>
20
21 ///r
22 #define DEVLIST_MAX 20
23
24 typedef struct tag_DEVICELIST {
25         int  deviceID;
26         char name[MAXPNAMELEN];
27 } DEVICELIST;
28
29 //extern int data_block_bits;
30 //extern int data_block_num;
31 ///r
32 extern int opt_wmme_buffer_bits;
33 extern int opt_wmme_buffer_num;
34 extern int opt_wave_format_ext;
35 extern int opt_wmme_device_id;
36 extern int wmme_device_list(DEVICELIST *device);
37