Tao.Sdl SDK Documentation |
|
Sdl.SDL_AudioDriverName Method
This function fills the given character buffer with the name of the current audio driver, and returns a pointer to it if the audio driver has been initialized.
[Visual Basic]
Public Shared Function SDL_AudioDriverName( _
ByVal
namebuf As
String, _
ByVal
maxlen As
Integer _
) As
String
[C#]
public static
string SDL_AudioDriverName(
string namebuf,
int maxlen);
Parameters
-
namebuf
-
-
maxlen
-
Return Value
It returns NULL if no driver has been initialized.
Remarks
Binds to C-function call in SDL_audio.h:
char * SDL_AudioDriverName(char *namebuf, int maxlen)
See Also
Sdl Class | Tao.Sdl Namespace