forked from microsoft/krabsetw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Readme.txt
27 lines (12 loc) · 834 Bytes
/
Readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Krabs Readme.txt
Important Preprocessor Definitions:
* UNICODE - krabsetw expects the UNICODE preproessor definition to be defined. The code will
not successfully compile without this flag. There is no plan to support non-UNICODE defined
compilation.
* NDEBUG - Set this varible in release builds to disable runtime type assertions.
You'll still get a runtime error if the size type you're requesting is not the
same size as the property in the event schema.
* TYPEASSERT - Set this variable only in debug builds (not NDEBUG) to enable strict assertions.
This means that if an explicit type check is not defined for a requested type, a static_assert
is thrown and the code will not compile until one is added. This is mainly used for krabs
development to ensure that we don't miss asserts for types that are supported.