Ignore:
Timestamp:
Mar 5, 2003, 3:48:21 PM (23 years ago)
Author:
sandervl
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/custombuild.h

    r9898 r9900  
    8888//Turn off wave audio in winmm
    8989void WIN32API DisableWaveAudio();
    90 
    91 //Call to tell winmm to expect simple fixed size buffers, so
    92 //it doesn't have to use very small DART buffers; this will
    93 //only work in very specific cases; it is not a good general
    94 //purpose solution)
    95 void WIN32API SetFixedWaveBufferSize();
    9690
    9791//Override shared semaphore name used to synchronize global window handle
     
    227221void WIN32API ODIN_DisableFolderShellLink();
    228222
     223//******************************************************************************
     224// ODIN_waveOutSetFixedBuffers
     225//
     226// Tell WINMM to use DART buffers of the same size as the first buffer delivered
     227// by waveOutWrite
     228//
     229// NOTE: This will only work in very specific cases; it is not a good general
     230//       purpose solution.
     231//
     232//******************************************************************************
     233void WIN32API ODIN_waveOutSetFixedBuffers();
     234
     235#define SetFixedWaveBufferSize ODIN_waveOutSetFixedBuffers
     236
     237//******************************************************************************
     238// ODIN_waveInSetFixedBuffers
     239//
     240// Tell WINMM to use DART buffers of the same size as the first buffer delivered
     241// by waveInAddBuffer
     242//
     243// NOTE: This will only work in very specific cases; it is not a good general
     244//       purpose solution.
     245//
     246//******************************************************************************
     247void WIN32API ODIN_waveInSetFixedBuffers();
     248
    229249#endif  /*__CUSTOMBUILD_H__*/
    230250
Note: See TracChangeset for help on using the changeset viewer.