Platform SDK: Fax Services |
A fax client application calls the FaxSetLoggingCategories function to modify the current logging categories for the fax server to which the client has connected. A logging category determines the errors or other events the fax server records in the application event log.
BOOL WINAPI FaxSetLoggingCategories( HANDLE FaxHandle, // handle to the fax server CONST FAX_LOG_CATEGORY *Categories, // new logging categories data DWORD NumberCategories // number of category structures );
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero. To get extended error information, call GetLastError. GetLastError can return one of the following errors.
Error code | Description |
---|---|
ERROR_INVALID_PARAMETER | One or all of the FaxHandle, Categories, or NumberCategories parameters are invalid or NULL. |
ERROR_ACCESS_DENIED | Access is denied. FAX_CONFIG_SET access is required. |
ERROR_NOT_ENOUGH_MEMORY | An error occurred during memory allocation. |
The fax service administration application, an MMC snap-in component, typically calls the FaxSetLoggingCategories function to modify the current logging categories and logging levels for a fax server. To query the categories and levels, an application can call the FaxGetLoggingCategories function. For more information, see Managing Logging Categories.
Windows NT/2000: Requires Windows 2000.
Windows 95/98: Requires Windows 95 or later. Available as a redistributable with BackOffice Small Business Server.
Header: Declared in Winfax.h.
Library: Included as a resource in Winfax.dll.
Unicode: Implemented as Unicode and ANSI versions on all platforms.
Fax Service Client Application Programming Interface Overview, Fax Service Client API Functions, FaxConnectFaxServer, FaxGetLoggingCategories, FAX_LOG_CATEGORY