This documenta- tion describes the current state of development.
Note that interfaces and functionality may still change.

Prokee Modules:
  A
  B
  C
  D
  E
  F
  G
  I
  L
  M
  N
  O
  P
  R
  S
  T
  U
  W

     open all    |    close all

GUI Elements:
  B
  C
  I
  M
  P
  R
  S
  T

     open all    |    close all

GUI Interactions:
  B
  F
  H
  S

     open all    |    close all

GUI Layouts:
  L

     open all    |    close all

Games/Demos:
  M

     open all    |    close all

Third Party Libraries:
  P
  F
  Z

     open all    |    close all

Information about this Website / Informationen zu dieser Webseite:
In case of any questions, or comments, please feel free to contact me via email at apoll500@gmail.com.

Module portaudio_module [Version: v01]

 
Compile status: 
see log

Contents


Dependencies

For the Prokee Module Library

Dynamically Linked Modules: For the Standalone Executable Third Party Library:

Source Files

  • portaudio_module/portaudio_module.h
  • interface/prokee/portaudio_module/prokee.h
  • interface/prokee/portaudio_module/prokee_c.h
  • interface/prokee/mlocal.h
  • portaudio_module/portaudio_module.cpp
  • interface/prokee/portaudio_module/prokee.cpp
  • interface/prokee/portaudio_module/prokee_c.cpp

Licenses


Command-Line Interface ()


Exported Symbols

Pointers

int (*portaudio_module_main)(int argc,char **argv);
int (*portaudio_module_Pa_GetVersion)();
const char *(*portaudio_module_Pa_GetVersionText)();
const PaVersionInfo *(*portaudio_module_Pa_GetVersionInfo)();
const char *(*portaudio_module_Pa_GetErrorText)(PaError errorCode);
PaError (*portaudio_module_Pa_Initialize)();
PaError (*portaudio_module_Pa_Terminate)();
PaHostApiIndex (*portaudio_module_Pa_GetHostApiCount)();
PaHostApiIndex (*portaudio_module_Pa_GetDefaultHostApi)();
const PaHostApiInfo *(*portaudio_module_Pa_GetHostApiInfo)(PaHostApiIndex hostApi);
PaHostApiIndex (*portaudio_module_Pa_HostApiTypeIdToHostApiIndex)(PaHostApiTypeId type);
PaDeviceIndex (*portaudio_module_Pa_HostApiDeviceIndexToDeviceIndex)(PaHostApiIndex hostApi,int hostApiDeviceIndex);
const PaHostErrorInfo *(*portaudio_module_Pa_GetLastHostErrorInfo)();
PaDeviceIndex (*portaudio_module_Pa_GetDeviceCount)();
PaDeviceIndex (*portaudio_module_Pa_GetDefaultInputDevice)();
PaDeviceIndex (*portaudio_module_Pa_GetDefaultOutputDevice)();
const PaDeviceInfo *(*portaudio_module_Pa_GetDeviceInfo)(PaDeviceIndex device);
PaError (*portaudio_module_Pa_IsFormatSupported)(const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate);
PaError (*portaudio_module_Pa_OpenStream)(PaStream **stream,const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate,unsigned long int framesPerBuffer,PaStreamFlags streamFlags,PaStreamCallback *streamCallback,void *userData);
PaError (*portaudio_module_Pa_OpenDefaultStream)(PaStream **stream,int numInputChannels,int numOutputChannels,PaSampleFormat sampleFormat,double sampleRate,unsigned long int framesPerBuffer,PaStreamCallback *streamCallback,void *userData);
PaError (*portaudio_module_Pa_CloseStream)(PaStream *stream);
PaError (*portaudio_module_Pa_SetStreamFinishedCallback)(PaStream *stream,PaStreamFinishedCallback *streamFinishedCallback);
PaError (*portaudio_module_Pa_StartStream)(PaStream *stream);
PaError (*portaudio_module_Pa_StopStream)(PaStream *stream);
PaError (*portaudio_module_Pa_AbortStream)(PaStream *stream);
PaError (*portaudio_module_Pa_IsStreamStopped)(PaStream *stream);
PaError (*portaudio_module_Pa_IsStreamActive)(PaStream *stream);
const PaStreamInfo *(*portaudio_module_Pa_GetStreamInfo)(PaStream *stream);
PaTime (*portaudio_module_Pa_GetStreamTime)(PaStream *stream);
double (*portaudio_module_Pa_GetStreamCpuLoad)(PaStream *stream);
PaError (*portaudio_module_Pa_ReadStream)(PaStream *stream,void *buffer,unsigned long int frames);
PaError (*portaudio_module_Pa_WriteStream)(PaStream *stream,const void *buffer,unsigned long int frames);
long int (*portaudio_module_Pa_GetStreamReadAvailable)(PaStream *stream);
long int (*portaudio_module_Pa_GetStreamWriteAvailable)(PaStream *stream);
PaError (*portaudio_module_Pa_GetSampleSize)(PaSampleFormat format);
void (*portaudio_module_Pa_Sleep)(long int msec);

Internal Pointers

Pointers

int portaudio_module_main(int argc,char **argv);
int portaudio_module_Pa_GetVersion();
const char *portaudio_module_Pa_GetVersionText();
const PaVersionInfo *portaudio_module_Pa_GetVersionInfo();
const char *portaudio_module_Pa_GetErrorText(PaError errorCode);
PaError portaudio_module_Pa_Initialize();
PaError portaudio_module_Pa_Terminate();
PaHostApiIndex portaudio_module_Pa_GetHostApiCount();
PaHostApiIndex portaudio_module_Pa_GetDefaultHostApi();
const PaHostApiInfo *portaudio_module_Pa_GetHostApiInfo(PaHostApiIndex hostApi);
PaHostApiIndex portaudio_module_Pa_HostApiTypeIdToHostApiIndex(PaHostApiTypeId type);
PaDeviceIndex portaudio_module_Pa_HostApiDeviceIndexToDeviceIndex(PaHostApiIndex hostApi,int hostApiDeviceIndex);
const PaHostErrorInfo *portaudio_module_Pa_GetLastHostErrorInfo();
PaDeviceIndex portaudio_module_Pa_GetDeviceCount();
PaDeviceIndex portaudio_module_Pa_GetDefaultInputDevice();
PaDeviceIndex portaudio_module_Pa_GetDefaultOutputDevice();
const PaDeviceInfo *portaudio_module_Pa_GetDeviceInfo(PaDeviceIndex device);
PaError portaudio_module_Pa_IsFormatSupported(const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate);
PaError portaudio_module_Pa_OpenStream(PaStream **stream,const PaStreamParameters *inputParameters,const PaStreamParameters *outputParameters,double sampleRate,unsigned long int framesPerBuffer,PaStreamFlags streamFlags,PaStreamCallback *streamCallback,void *userData);
PaError portaudio_module_Pa_OpenDefaultStream(PaStream **stream,int numInputChannels,int numOutputChannels,PaSampleFormat sampleFormat,double sampleRate,unsigned long int framesPerBuffer,PaStreamCallback *streamCallback,void *userData);
PaError portaudio_module_Pa_CloseStream(PaStream *stream);
PaError portaudio_module_Pa_SetStreamFinishedCallback(PaStream *stream,PaStreamFinishedCallback *streamFinishedCallback);
PaError portaudio_module_Pa_StartStream(PaStream *stream);
PaError portaudio_module_Pa_StopStream(PaStream *stream);
PaError portaudio_module_Pa_AbortStream(PaStream *stream);
PaError portaudio_module_Pa_IsStreamStopped(PaStream *stream);
PaError portaudio_module_Pa_IsStreamActive(PaStream *stream);
const PaStreamInfo *portaudio_module_Pa_GetStreamInfo(PaStream *stream);
PaTime portaudio_module_Pa_GetStreamTime(PaStream *stream);
double portaudio_module_Pa_GetStreamCpuLoad(PaStream *stream);
PaError portaudio_module_Pa_ReadStream(PaStream *stream,void *buffer,unsigned long int frames);
PaError portaudio_module_Pa_WriteStream(PaStream *stream,const void *buffer,unsigned long int frames);
long int portaudio_module_Pa_GetStreamReadAvailable(PaStream *stream);
long int portaudio_module_Pa_GetStreamWriteAvailable(PaStream *stream);
PaError portaudio_module_Pa_GetSampleSize(PaSampleFormat format);
void portaudio_module_Pa_Sleep(long int msec);

Build Log

--------------------------------------------------------------------------------
portaudio_module -- Do Dez  5 02:37:21 CET 2019
--------------------------------------------------------------------------------
ERROR: Fehler beim öffnen der Datei files.def.
Fehlernummer: 2
-------------------------------------------------------------------------------
> install headers
-------------------------------------------------------------------------------
Executable for Linux/[local system] (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/[local system] (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/[local system] (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/[local system])
[compiling] [end]
------------------------------------------------------------------------------- Executable for Linux/32bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/32bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/32bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/32bit)
[compiling] [end]
------------------------------------------------------------------------------- Executable for Linux/64bit (CLI)
[compiling] [end]
------------------------------------------------------------------------------- Dynamic library for Linux/64bit (DLL)
[compiling] [end]
------------------------------------------------------------------------------- Static library for Linux/64bit (LIB)
[compiling] [end]
------------------------------------------------------------------------------- TESTS (Automated Tests for Linux/64bit)
[compiling] [end]
cp: der Aufruf von stat für 'bin/v01/cli_linux_win/portaudio_module.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/cli_linux_win32/portaudio_module.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/cli_linux_win64/portaudio_module.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/dll_linux_win/libportaudio_module.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/dll_linux_win32/libportaudio_module.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/dll_linux_win64/libportaudio_module.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/lib_linux_win/libportaudio_module.a' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/lib_linux_win32/libportaudio_module.a' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'bin/v01/lib_linux_win64/libportaudio_module.a' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > test_all ------------------------------------------------------------------------------- > prepare ------------------------------------------------------------------------------- > install creating /opt/prokee/system/reg/dllinfo/portaudio_module.v01.info ... license=1 | version=1 | library=libportaudio_module.v01 creating /opt/prokee/system/reg/dllinfo/portaudio_module.info ... license=1 | version=1 | library=libportaudio_module.v01 ------------------------------------------------------------------------------- > module cp: der Aufruf von stat für 'libportaudio_module_win.a' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libportaudio_module.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libportaudio_module_win32.a' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libportaudio_module_32bit.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libportaudio_module_win64.a' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'libportaudio_module_64bit.dll' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > exepack cp: der Aufruf von stat für 'portaudio_module_32bit.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden cp: der Aufruf von stat für 'portaudio_module_64bit.exe' ist nicht möglich: Datei oder Verzeichnis nicht gefunden ------------------------------------------------------------------------------- > sourcepack ------------------------------------------------------------------------------- > cleanup ------------------------------------------------------------------------------- > webexport -------------------------------------------------------------------------------- FERTIG --------------------------------------------------------------------------------

Copyright © 2017 - 2019 by Andreas Pollhammer