aboutsummaryrefslogtreecommitdiff
path: root/pd/portaudio/pa_dll_switch/PaDllEntry.h
blob: e070054b39d7b2f52f9b224c8399cec857f778e7 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184

/*
 * PortAudio Portable Real-Time Audio Library
 * PortAudio DLL Header File
 * Latest version available at: http://www.audiomulch.com/portaudio/
 *
 * Copyright (c) 1999-2000 Ross Bencina and Phil Burk
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files
 * (the "Software"), to deal in the Software without restriction,
 * including without limitation the rights to use, copy, modify, merge,
 * publish, distribute, sublicense, and/or sell copies of the Software,
 * and to permit persons to whom the Software is furnished to do so,
 * subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * Any person wishing to distribute modifications to the Software is
 * requested to send the modifications to the original developer so that
 * they can be incorporated into the canonical version.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */

// changed by zplane.developement in order to generate a DLL

#ifndef __PADLLENTRY_HEADER_INCLUDED__

#define __PADLLENTRY_HEADER_INCLUDED__

typedef int PaError;
typedef enum {
    paNoError = 0,

    paHostError = -10000,
    paInvalidChannelCount,
    paInvalidSampleRate,
    paInvalidDeviceId,
    paInvalidFlag,
    paSampleFormatNotSupported,
    paBadIODeviceCombination,
    paInsufficientMemory,
    paBufferTooBig,
    paBufferTooSmall,
    paNullCallback,
    paBadStreamPtr,
    paTimedOut,
    paInternalError
} PaErrorNum;

typedef unsigned long PaSampleFormat;
#define paFloat32      ((PaSampleFormat) (1<<0)) /*always available*/
#define paInt16        ((PaSampleFormat) (1<<1)) /*always available*/
#define paInt32        ((PaSampleFormat) (1<<2)) /*always available*/
#define paInt24        ((PaSampleFormat) (1<<3))
#define paPackedInt24  ((PaSampleFormat) (1<<4))
#define paInt8         ((PaSampleFormat) (1<<5))
#define paUInt8        ((PaSampleFormat) (1<<6))    /* unsigned 8 bit, 128 is "ground" */
#define paCustomFormat ((PaSampleFormat) (1<<16))


typedef int PaDeviceID;
#define paNoDevice -1

typedef struct
{
    int structVersion;
    const char *name;
    int maxInputChannels;
    int maxOutputChannels;
    /* Number of discrete rates, or -1 if range supported. */
    int numSampleRates;
    /* Array of supported sample rates, or {min,max} if range supported. */
    const double *sampleRates;
    PaSampleFormat nativeSampleFormats;
}
PaDeviceInfo;


typedef double PaTimestamp;


typedef int (PortAudioCallback)(
    void *inputBuffer, void *outputBuffer,
    unsigned long framesPerBuffer,
    PaTimestamp outTime, void *userData );


#define   paNoFlag      (0)
#define   paClipOff     (1<<0)   /* disable default clipping of out of range samples */
#define   paDitherOff   (1<<1)   /* disable default dithering */
#define   paPlatformSpecificFlags (0x00010000)
typedef   unsigned long PaStreamFlags;

typedef void PortAudioStream;
#define PaStream PortAudioStream

extern  PaError (__cdecl* Pa_Initialize)( void );



extern  PaError (__cdecl* Pa_Terminate)( void );


extern  long (__cdecl* Pa_GetHostError)( void );


extern  const char* (__cdecl* Pa_GetErrorText)( PaError );



extern  int (__cdecl* Pa_CountDevices)(void);

extern  PaDeviceID (__cdecl* Pa_GetDefaultInputDeviceID)( void );

extern  PaDeviceID (__cdecl* Pa_GetDefaultOutputDeviceID)( void );


extern  const PaDeviceInfo* (__cdecl* Pa_GetDeviceInfo)( PaDeviceID);



extern  PaError (__cdecl* Pa_OpenStream)(
        PortAudioStream ** ,
        PaDeviceID ,
        int ,
        PaSampleFormat ,
        void *,
        PaDeviceID ,
        int ,
        PaSampleFormat ,
        void *,
        double ,
        unsigned long ,
        unsigned long ,
        unsigned long ,
        PortAudioCallback *,
        void * );



extern  PaError (__cdecl* Pa_OpenDefaultStream)( PortAudioStream** stream,
            int numInputChannels,
            int numOutputChannels,
            PaSampleFormat sampleFormat,
            double sampleRate,
            unsigned long framesPerBuffer,
            unsigned long numberOfBuffers,
            PortAudioCallback *callback,
            void *userData );


extern  PaError (__cdecl* Pa_CloseStream)( PortAudioStream* );


extern  PaError (__cdecl* Pa_StartStream)( PortAudioStream *stream );

extern  PaError (__cdecl* Pa_StopStream)( PortAudioStream *stream );

extern  PaError (__cdecl* Pa_AbortStream)( PortAudioStream *stream );

extern  PaError (__cdecl* Pa_StreamActive)( PortAudioStream *stream );

extern  PaTimestamp (__cdecl* Pa_StreamTime)( PortAudioStream *stream );

extern  double (__cdecl* Pa_GetCPULoad)( PortAudioStream* stream );

extern  int (__cdecl* Pa_GetMinNumBuffers)( int framesPerBuffer, double sampleRate );

extern  void (__cdecl* Pa_Sleep)( long msec );

extern  PaError (__cdecl* Pa_GetSampleSize)( PaSampleFormat format );

#endif // __PADLLENTRY_HEADER_INCLUDED__