Tao.DevIl SDK Documentation

Il.ilRegisterLoad Method 

ilRegisterLoad allows the user to register functions for use by OpenIL, when loading unknown image types. The user can also override the default internal loading functions by passing their extension in Ext when using ilLoadImage. ilRegisterLoad allows the user to use their own loading functions while using OpenIL's capabilities, or to extend OpenIL when it does not support a specific image format

[Visual Basic]
Public Shared Function ilRegisterLoad( _
   ByVal Ext As String, _
   ByVal Load As IL_LOADPROC _
) As Boolean
[C#]
public static bool ilRegisterLoad(
   string Ext,
   IL_LOADPROC Load
);

Parameters

Ext
Extension of the image type to load
Load
Pointer to a loading function

Return Value

See Also

Il Class | Tao.DevIl Namespace