This file contains hidden or 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
com::declare! { | |
// A COM interface declared here | |
#[uuid(...)] | |
pub interface IOldSchool { | |
fn foo(); | |
fn bar(); | |
} | |
// A COM class declared here (not defined here) | |
#[uuid(...)] |