eventlog 0.4.0

A log-compatible wrapper around the Windows Event Log API
Documentation
1
2
3
4
5
6
7
8
9
#![allow(dead_code)]
#![allow(renamed_and_removed_lints)]
#![cfg_attr(clippy, allow(unreadable_literal))]

// build.rs generates a rust snippet with constants from res/eventmsgs.h into
// res/eventmsgs.rs.
include!("../res/eventmsgs.rs");

// vim: set ft=rust et sw=2 ts=2 sts=2 cinoptions=2 tw=79 :