diff options
author | Chris Robinson <[email protected]> | 2009-08-13 19:36:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-08-13 19:36:14 -0700 |
commit | e0792912028d143b89b3835b2a7203693a494d0f (patch) | |
tree | 763e226941fbad9850b8cfc29d309d3c92ea6537 /OpenAL32/Include/alMain.h | |
parent | 826c641668a14c244bac30d61a681c6817461f80 (diff) |
Remove unnecessary function parameters
Diffstat (limited to 'OpenAL32/Include/alMain.h')
-rw-r--r-- | OpenAL32/Include/alMain.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 3199d54c..e3823364 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -151,7 +151,7 @@ typedef struct { ALCboolean (*StartContext)(ALCdevice*, ALCcontext*); void (*StopContext)(ALCdevice*, ALCcontext*); - ALCboolean (*OpenCapture)(ALCdevice*, const ALCchar*, ALCuint, ALCenum, ALCsizei); + ALCboolean (*OpenCapture)(ALCdevice*, const ALCchar*); void (*CloseCapture)(ALCdevice*); void (*StartCapture)(ALCdevice*); void (*StopCapture)(ALCdevice*); @@ -202,7 +202,7 @@ struct ALCdevice_struct #define ALCdevice_ClosePlayback(a) ((a)->Funcs->ClosePlayback((a))) #define ALCdevice_StartContext(a,b) ((a)->Funcs->StartContext((a), (b))) #define ALCdevice_StopContext(a,b) ((a)->Funcs->StopContext((a), (b))) -#define ALCdevice_OpenCapture(a,b,c,d,e) ((a)->Funcs->OpenCapture((a), (b), (c), (d), (e))) +#define ALCdevice_OpenCapture(a,b) ((a)->Funcs->OpenCapture((a), (b))) #define ALCdevice_CloseCapture(a) ((a)->Funcs->CloseCapture((a))) #define ALCdevice_StartCapture(a) ((a)->Funcs->StartCapture((a))) #define ALCdevice_StopCapture(a) ((a)->Funcs->StopCapture((a))) |