Skip to main content

luaur_code_gen/functions/
get_current_x_64_abi.rs

1use crate::enums::abix_64::ABIX64;
2
3pub fn get_current_x_64_abi() -> ABIX64 {
4    #[cfg(target_os = "windows")]
5    {
6        ABIX64::Windows
7    }
8    #[cfg(not(target_os = "windows"))]
9    {
10        ABIX64::SystemV
11    }
12}