You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/writing-plugins.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -402,7 +402,7 @@ In Manalyze, looking up imports is a two-step process. You usually query the lis
402
402
403
403
You can also use the ``find_imports`` and ``find_imported_dlls`` function if you're looking for something specific. For instance::
404
404
405
-
auto dlls = pe.find_imports("WS2_32.dll", false);
405
+
auto dlls = pe.find_imported_dlls("WS2_32.dll", false);
406
406
407
407
...will return all shared libraries imported by the PE matching the regular expression given as the first argument. The second argument controls whether the regular expression is case sensitive and defaults to false when omitted.
0 commit comments