Skip to content

Commit

Permalink
Minor tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
timsneath committed Aug 30, 2022
1 parent d674c74 commit 44bd1a3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 450 deletions.
4 changes: 2 additions & 2 deletions example/dump.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ Map<String, int> getExports(String module) {
}

final modulePtr = module.toNativeUtf16();
final mask = '*'.toNativeUtf16();

final baseOfDll =
SymLoadModuleEx(hProcess, 0, modulePtr, nullptr, 0, 0, nullptr, 0);
SymLoadModuleEx(hProcess, NULL, modulePtr, nullptr, 0, 0, nullptr, 0);

if (baseOfDll == 0) {
print('SymLoadModuleEx failed.');
Expand All @@ -48,6 +47,7 @@ Map<String, int> getExports(String module) {
exit(1);
}

final mask = '*'.toNativeUtf16();
if (SymEnumSymbols(
hProcess,
baseOfDll,
Expand Down
97 changes: 0 additions & 97 deletions lib/src/winrt/storage/applicationdata.dart

This file was deleted.

0 comments on commit 44bd1a3

Please sign in to comment.