summaryrefslogtreecommitdiff
path: root/include/wolf/log/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/wolf/log/log.h')
-rw-r--r--include/wolf/log/log.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/include/wolf/log/log.h b/include/wolf/log/log.h
index 4603be3..c272d31 100644
--- a/include/wolf/log/log.h
+++ b/include/wolf/log/log.h
@@ -202,16 +202,21 @@ void wolf_log_openlogtosyslog( const char *ident,
/**
* Open a channel to the Windows event logger.
*
- * @param server name of the server to log to, NULL if local computer
- * @param log name of the log, usually this should be 'Application'
- * @param source name of the event log source
- * @param level one out of wolf_log_level_t, the minimal level which
- * should be logged into the event log
+ * @param server name of the server to log to, NULL if local computer
+ * @param log name of the log, usually this should be 'Application'
+ * @param source name of the event log source
+ * @param path_to_dll path to the message/category DLL for the localization
+ * of the categories and messages to log. the string should
+ * be expandable, i.e. about hard-coded drives and paths,
+ * e. g. "%SystemRoot%\\System32\\myapp.dll"
+ * @param level one out of wolf_log_level_t, the minimal level which
+ * should be logged into the event log
*
*/
void wolf_log_openlogtoeventlog( const char *server,
const char *log,
const char *source,
+ const char *path_to_dll,
wolf_log_level_t level );
#endif /* defined HAVE_EVENTLOG */