This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <time.h> | |
#include <emmintrin.h> | |
/* | |
* Round up n to the next multiple of m. | |
* m needs to be a power of 2. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[package] | |
name = "winevent-tracker" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
clearscreen = "3" | |
windows = { version = "0.54", features = [ | |
"Win32_Foundation", | |
"Win32_System_Threading", |