winmd 6.1.0 copy "winmd: ^6.1.0" to clipboard
winmd: ^6.1.0 copied to clipboard

A Dart package for working with Windows Metadata (.winmd) files.

example/main.dart

// Parse the Windows Metadata for a WinRT type and generate a Dart wrapper

import 'package:winmd/winmd.dart';

void main() async {
  // Load the WinRT metadata.
  final scope = await MetadataStore.loadWinrtScope();

  // A Windows Runtime class.
  const typeToGenerate = 'Windows.Media.Playback.MediaPlayer';

  // Find the TypeDef for this class.
  final typeDef = scope.findTypeDef(typeToGenerate)!;

  // Create a Dart projection.
  print('$typeToGenerate contains the following methods:');

  for (final method in typeDef.methods) {
    print('  ${method.name}');
  }

  MetadataStore.close();
}
copied to clipboard
9
likes
160
points
529
downloads

Publisher

verified publisherhalildurmus.dev

Weekly Downloads

2024.09.17 - 2025.04.01

A Dart package for working with Windows Metadata (.winmd) files.

Repository (GitHub)
View/report issues
Contributing

Topics

#winmd #windows #metadata

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

archive, ffi, logging, nuget, path

More

Packages that depend on winmd