()
| 2177 | |
| 2178 | # DWORD WINAPI GetLastError(void); |
| 2179 | def GetLastError(): |
| 2180 | _GetLastError = windll.kernel32.GetLastError |
| 2181 | _GetLastError.argtypes = [] |
| 2182 | _GetLastError.restype = DWORD |
| 2183 | return _GetLastError() |
| 2184 | |
| 2185 | |
| 2186 | # void WINAPI SetLastError( |
no outgoing calls
no test coverage detected