DbgInitialise

 
Microsoft DirectShow 9.0

DbgInitialise

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.

Requirements

**  Header:** Declared in Wxdebug.h; include Streams.h.

**  Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).

See Also