Fixed bug in WinProxy where error add bad func name + update winproxy function list in doc

This commit is contained in:
hakril
2018-12-21 18:52:08 +01:00
parent 4f62434dfb
commit a194f0be6b
4 changed files with 2392 additions and 1272 deletions
+2 -7
View File
@@ -9,14 +9,9 @@ import windows
winprox = windows.winproxy
all_in_module = [getattr(winprox, x) for x in dir(winprox)]
transp = [f for f in all_in_module if isinstance(f, winprox.TransparentApiProxy)]
functions = [f for f in all_in_module if hasattr(f, "prototype") and f not in transp]
functions = [f for f in all_in_module if hasattr(f, "prototype")]
print ("Transparent proxies:")
print("")
for f in transp:
print("* {0}({1})".format(f.target_func, ", ".join([x[1] for x in f.params])))
import pdb;pdb.set_trace()
print ("Functions:")
print("")
+1 -1258
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff