dllimport_gen 1.0.0 dllimport_gen: ^1.0.0 copied to clipboard
A code generation tool that aims to quickly generate dart code from the windows api documentation emulating the DllImport notation in C#.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add dllimport_gen
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
dllimport_gen: ^1.0.0
Alternatively, your editor might support dart pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:dllimport_gen/annotations.dart';
import 'package:dllimport_gen/builder.dart';
import 'package:dllimport_gen/dll_import.dart';
import 'package:dllimport_gen/winapi_types.dart';