Tao.Sdl SDK Documentation

SdlMixer.Mix_SetError Method 

Set the current error string

[Visual Basic]
Public Shared Sub Mix_SetError( _
   ByVal message As String _
)
[C#]
public static void Mix_SetError(
   string message
);

Parameters

message

Remarks

This is the same as SDL_SetError, which sets the error string which may be fetched with Mix_GetError (or SDL_GetError). This functions acts like printf, except that it is limited to SDL_ERRBUFIZE(1024) chars in length. It only accepts the following format types: %s, %d, %f, %p. No variations are supported, like %.2f would not work. For any more specifics read the SDL docs.

Binds to C-function in SDL_mixer.h

            void Mix_SetError(const char *fmt, ...)
            

Example

            int mymixfunc(int i) {
                    Mix_SetError("mymixfunc is not implemented! %d was passed in.",i);
                    return(-1);
                }
            

See Also

SdlMixer Class | Tao.Sdl Namespace | Mix_GetError