mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
25 lines
673 B
TypeScript
25 lines
673 B
TypeScript
import { libSuffix } from "../deno.ts";
|
|
|
|
const library_file = "./tests/ffi/utility/proc_clock/lib."+libSuffix;
|
|
let library = Deno.dlopen(library_file, {
|
|
sizeof_clock: {
|
|
parameters: [],
|
|
result: "i32",
|
|
},
|
|
});
|
|
const sizeof_clock = library.symbols.sizeof_clock();
|
|
const type_clock_t = "u" + (sizeof_clock * 8);
|
|
library.close();
|
|
library = Deno.dlopen(library_file, {
|
|
get_clock: {
|
|
parameters: [],
|
|
result: type_clock_t,
|
|
},
|
|
get_offset: {
|
|
parameters: [type_clock_t, type_clock_t],
|
|
result: "f64",
|
|
},
|
|
});
|
|
|
|
export const get_clock = library.symbols.get_clock;
|
|
export const get_offset = library.symbols.get_offset;
|