20 lines
441 B
Dart
20 lines
441 B
Dart
// AUTO GENERATED FILE, DO NOT EDIT.
|
|
//
|
|
// Generated by `package:ffigen`.
|
|
// ignore_for_file: type=lint
|
|
@ffi.DefaultAsset('package:cli_windows/cli_windows.dart')
|
|
library;
|
|
|
|
import 'dart:ffi' as ffi;
|
|
|
|
@ffi.Native<ffi.Int Function(ffi.Int, ffi.Int, ffi.Int, ffi.Int)>(isLeaf: true)
|
|
external int create_thermion_window(
|
|
int width,
|
|
int height,
|
|
int left,
|
|
int top,
|
|
);
|
|
|
|
@ffi.Native<ffi.Void Function()>(isLeaf: true)
|
|
external void update();
|