summaryrefslogtreecommitdiffstats
path: root/libdvdread-embedded/msvc/include/os_types.h
blob: eb0f24f591c72fe9a2118ec421458569311e5a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __OS_TYPES_H__
#define __OS_TYPES_H__
/*
 * win32 types
 * 04 Sept 2001 - Chris Wolf create.
 */

typedef unsigned char                   uint_8;
typedef unsigned short          uint_16;
typedef unsigned int                    uint_32;
typedef signed   char                   sint_32;
typedef signed   short          sint_16;
typedef signed   int                    sint_8;

#define snprintf _snprintf
#define M_PI            3.14159265358979323846  /* pi */
#define DLLENTRY __declspec(dllexport)

  // Temporarily hardcode this location
#define AO_PLUGIN_PATH "c:\\Program Files\\Common Files\\Xiphophorus\\ao"

#define SHARED_LIB_EXT ".dll"

#endif /* __OS_TYPES_H__ */