1
2
3
4
5
6
7
8
9
use crate::guid::GUID;

pub trait Interface: 'static {
    const GUID: GUID;
}

impl Interface for () {
    const GUID: GUID = 0x00000000_0000_0000_C000_000000000046;
}