effects_internal.h
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:2k
源码类别:

多媒体编程

开发平台:

DOS

  1. /*
  2.     SDL_mixer:  An audio mixer library based on the SDL library
  3.     Copyright (C) 1997-2009 Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. /* $Id: effects_internal.h 5045 2009-10-11 02:59:12Z icculus $ */
  19. #ifndef _INCLUDE_EFFECTS_INTERNAL_H_
  20. #define _INCLUDE_EFFECTS_INTERNAL_H_
  21. #ifndef __MIX_INTERNAL_EFFECT__
  22. #error You should not include this file or use these functions.
  23. #endif
  24. #include "SDL_mixer.h"
  25. /* Set up for C function definitions, even when using C++ */
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29. extern int _Mix_effects_max_speed;
  30. extern void *_Eff_volume_table;
  31. void *_Eff_build_volume_table_u8(void);
  32. void *_Eff_build_volume_table_s8(void);
  33. void _Mix_InitEffects(void);
  34. void _Mix_DeinitEffects(void);
  35. void _Eff_PositionDeinit(void);
  36. int _Mix_RegisterEffect_locked(int channel, Mix_EffectFunc_t f,
  37.                                Mix_EffectDone_t d, void *arg);
  38. int _Mix_UnregisterEffect_locked(int channel, Mix_EffectFunc_t f);
  39. int _Mix_UnregisterAllEffects_locked(int channel);
  40. /* Set up for C function definitions, even when using C++ */
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif