Skip to content

Commit a194f0b

Browse files
committed
Fixed bug in WinProxy where error add bad func name + update winproxy function list in doc
1 parent 4f62434 commit a194f0b

4 files changed

Lines changed: 2392 additions & 1272 deletions

File tree

docs/generate_winproxy_list.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,9 @@
99

1010
winprox = windows.winproxy
1111
all_in_module = [getattr(winprox, x) for x in dir(winprox)]
12-
transp = [f for f in all_in_module if isinstance(f, winprox.TransparentApiProxy)]
13-
functions = [f for f in all_in_module if hasattr(f, "prototype") and f not in transp]
12+
functions = [f for f in all_in_module if hasattr(f, "prototype")]
1413

15-
16-
print ("Transparent proxies:")
17-
print("")
18-
for f in transp:
19-
print("* {0}({1})".format(f.target_func, ", ".join([x[1] for x in f.params])))
14+
import pdb;pdb.set_trace()
2015

2116
print ("Functions:")
2217
print("")

0 commit comments

Comments
 (0)