2016-04-26 12:51:14 -05:00
|
|
|
pub struct Foo {
|
2020-09-01 16:28:11 -05:00
|
|
|
pub foo: extern "C" fn()
|
2015-03-18 16:05:24 -05:00
|
|
|
}
|
2016-04-26 12:51:14 -05:00
|
|
|
|
2020-09-01 16:28:11 -05:00
|
|
|
extern "C" fn the_foo() {}
|
2016-04-26 12:51:14 -05:00
|
|
|
|
|
|
|
pub const FOO: Foo = Foo {
|
|
|
|
foo: the_foo
|
|
|
|
};
|