Microsoft DirectX 9.0 |
The DbgInitialise function initializes the debug library. Ignored in retail builds.
Syntax
void DbgInitialise(
HINSTANCE hInst
);
Parameters
hInst
Handle to the module instance.
Remarks
In an executable, call this method before using the DirectShow debug facilities. Before the executable quits, call the DbgTerminate function to clean up the debug library.
In a DLL that links to the base-class library (Strmbase.lib), it is not necessary to call this function. The function is called automatically when the DLL is loaded.
See Also