(desc='')
| 3 | from collections import defaultdict |
| 4 | import os |
| 5 | def gdiReport(desc=''): |
| 6 | PH = windll.kernel32.OpenProcess(0x400, 0, os.getpid()) |
| 7 | numGdi = windll.user32.GetGuiResources(PH, 0) |
| 8 | windll.kernel32.CloseHandle(PH) |
| 9 | print (f'{desc}, {numGdi}') |
| 10 | |
| 11 | |
| 12 | last = None |
nothing calls this directly
no outgoing calls
no test coverage detected