mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
27 lines
462 B
Rust
27 lines
462 B
Rust
use libffi::middle::Type;
|
|
use mlua::prelude::*;
|
|
|
|
use crate::ffi::{FfiSignedness, FfiSize};
|
|
|
|
pub struct CVoidInfo();
|
|
|
|
impl FfiSignedness for CVoidInfo {
|
|
fn get_signedness(&self) -> bool {
|
|
false
|
|
}
|
|
}
|
|
impl FfiSize for CVoidInfo {
|
|
fn get_size(&self) -> usize {
|
|
0
|
|
}
|
|
}
|
|
impl CVoidInfo {
|
|
pub fn new() -> Self {
|
|
Self()
|
|
}
|
|
pub fn get_middle_type() -> Type {
|
|
Type::void()
|
|
}
|
|
}
|
|
|
|
impl LuaUserData for CVoidInfo {}
|