Resets the server's configuration to its default values.
#include "ltms.h"
Language | Syntax |
---|---|
C | HRESULT IltmsServer_ResetConfig(pServer) |
C++ | HRESULT ResetConfig( ) |
Pointer to an IltmsServer interface.
Value | Meaning |
---|---|
S_OK | The function was successful. |
<> S_OK | An error occurred. Refer to the Error Codes or the HRESULT error codes in the DirectShow documentation. |
The IltmsServer::ResetConfig function resets every configuration parameter for the entire server object back to the "factory" defaults. The "factory" defaults are listed in the Configuration File Format topic.
Use the IltmsMIMETypes::Reset function to reset all of the MIME types.
Both of these functions affect the parameters stored in memory only. To change the file settings use one of the Export functions. Note that if the export is performed immediately after the reset the resulting XML file will contain nothing but the default values.
Win32, x64.
For a C++ example, refer to the Export Default Configuration Example for C++.