Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// this entire module is only used for [poggers_derive::create_entry]
#[cfg(windows)]
pub use windows::Win32::{
    Foundation::{BOOL, HANDLE, HMODULE},
    System::{
        Console::{AllocConsole, FreeConsole},
        SystemServices::DLL_PROCESS_ATTACH,
    },
};

#[cfg(not(target_os = "windows"))]
pub use ctor::ctor;