(dwErrCode)
| 2187 | # __in DWORD dwErrCode |
| 2188 | # ); |
| 2189 | def SetLastError(dwErrCode): |
| 2190 | _SetLastError = windll.kernel32.SetLastError |
| 2191 | _SetLastError.argtypes = [DWORD] |
| 2192 | _SetLastError.restype = None |
| 2193 | _SetLastError(dwErrCode) |
| 2194 | |
| 2195 | |
| 2196 | # UINT WINAPI GetErrorMode(void); |
no outgoing calls
no test coverage detected