Python ctypes.wintypes.DWORD Examples
The following are 30
code examples of ctypes.wintypes.DWORD().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
ctypes.wintypes
, or try the search function
.
Example #1
Source File: client.py From gdog with GNU General Public License v3.0 | 7 votes |
def _set_argtypes(self): ''' Functions arguments. ''' self.MONITORENUMPROC = WINFUNCTYPE(INT, DWORD, DWORD, POINTER(RECT), DOUBLE) windll.user32.GetSystemMetrics.argtypes = [INT] windll.user32.EnumDisplayMonitors.argtypes = [HDC, c_void_p, self.MONITORENUMPROC, LPARAM] windll.user32.GetWindowDC.argtypes = [HWND] windll.gdi32.CreateCompatibleDC.argtypes = [HDC] windll.gdi32.CreateCompatibleBitmap.argtypes = [HDC, INT, INT] windll.gdi32.SelectObject.argtypes = [HDC, HGDIOBJ] windll.gdi32.BitBlt.argtypes = [HDC, INT, INT, INT, INT, HDC, INT, INT, DWORD] windll.gdi32.DeleteObject.argtypes = [HGDIOBJ] windll.gdi32.GetDIBits.argtypes = [HDC, HBITMAP, UINT, UINT, c_void_p, POINTER(BITMAPINFO), UINT]
Example #2
Source File: etw.py From pywintrace with Apache License 2.0 | 6 votes |
def _getEventInformation(record): """ Initially we are handed an EVENT_RECORD structure. While this structure technically contains all of the information necessary, TdhGetEventInformation parses the structure and simplifies it so we can more effectively parse and handle the various fields. :param record: The EventRecord structure for the event we are parsing :return: Returns a pointer to a TRACE_EVENT_INFO structure or None on error. """ info = ct.POINTER(tdh.TRACE_EVENT_INFO)() buffer_size = wt.DWORD() # Call TdhGetEventInformation once to get the required buffer size and again to actually populate the structure. status = tdh.TdhGetEventInformation(record, 0, None, None, ct.byref(buffer_size)) if tdh.ERROR_INSUFFICIENT_BUFFER == status: info = ct.cast((ct.c_byte * buffer_size.value)(), ct.POINTER(tdh.TRACE_EVENT_INFO)) status = tdh.TdhGetEventInformation(record, 0, None, info, ct.byref(buffer_size)) if tdh.ERROR_SUCCESS != status: raise ct.WinError(status) return info
Example #3
Source File: winapi.py From cWMI with Apache License 2.0 | 6 votes |
def CoCreateInstance(clsid, unk, ctx, iid): prototype = ctypes.WINFUNCTYPE( HRESULT, ctypes.POINTER(GUID), wintypes.LPVOID, wintypes.DWORD, ctypes.POINTER(GUID), ctypes.POINTER(wintypes.LPVOID) ) paramflags = ( (_In_, 'rclsid'), (_In_, 'pUnkOuter'), (_In_, 'dwClsContext'), (_In_, 'riid'), (_Out_, 'ppv') ) _CoCreateInstance = prototype(('CoCreateInstance', ole32), paramflags) _CoCreateInstance.errcheck = RAISE_NON_ZERO_ERR return _CoCreateInstance(clsid, unk, ctx, iid)
Example #4
Source File: winapi.py From cWMI with Apache License 2.0 | 6 votes |
def CoInitializeEx(reserved, co_init): prototype = ctypes.WINFUNCTYPE( HRESULT, wintypes.LPVOID, wintypes.DWORD ) paramflags = ( (_In_, 'pvReserved'), (_In_, 'dwCoInit') ) _CoInitializeEx = prototype(('CoInitializeEx', ole32), paramflags) _CoInitializeEx.errcheck = RAISE_NON_ZERO_ERR return _CoInitializeEx(reserved, co_init)
Example #5
Source File: winspool.py From sk1-wx with GNU General Public License v3.0 | 6 votes |
def get_printer_names(): names = [] info = ctypes.POINTER(BYTE)() pcbNeeded = DWORD(0) pcReturned = DWORD(0) winspool.EnumPrintersW(PRINTER_ENUM_LOCAL, NAME, 1, ctypes.byref(info), 0, ctypes.byref(pcbNeeded), ctypes.byref(pcReturned)) bufsize = pcbNeeded.value if bufsize: buff = msvcrt.malloc(bufsize) winspool.EnumPrintersW(PRINTER_ENUM_LOCAL, NAME, 1, buff, bufsize, ctypes.byref(pcbNeeded), ctypes.byref(pcReturned)) info = ctypes.cast(buff, ctypes.POINTER(PRINTER_INFO_1)) for i in range(pcReturned.value): names.append(info[i].pName) msvcrt.free(buff) return names
Example #6
Source File: winspool.py From sk1-wx with GNU General Public License v3.0 | 6 votes |
def is_color_printer(prtname): ret = False if not prtname: prtname = get_default_printer() hptr = open_printer(prtname) info = ctypes.POINTER(BYTE)() cbBuf = DWORD(0) pcbNeeded = DWORD(0) winspool.GetPrinterA(hptr, 2, ctypes.byref(info), cbBuf, ctypes.byref(pcbNeeded)) bufsize = pcbNeeded.value if bufsize: buff = msvcrt.malloc(bufsize) winspool.GetPrinterA(hptr, 2, buff, bufsize, ctypes.byref(pcbNeeded)) info = ctypes.cast(buff, ctypes.POINTER(PRINTER_INFO_2)) ret = info.contents.pDevMode.contents.dmColor == 2 msvcrt.free(buff) close_printer(hptr) return ret
Example #7
Source File: display.py From vergeml with MIT License | 6 votes |
def try_enable_ansi(): """Try enabling ANSI colors https://stackoverflow.com/questions/44482505/setconsolemode-returning-false-when-enabling-ansi-color-under-windows-10""" lpMode = wintypes.DWORD() handle = WINAPI._GetStdHandle(WINAPI._STDOUT) if WINAPI._GetConsoleMode(handle, ctypes.byref(lpMode)): if not WINAPI._SetConsoleMode(handle, lpMode.value | WINAPI._ENABLE_VIRTUAL_TERMINAL_PROCESSING): return False else: return False lpMode = wintypes.DWORD() handle = WINAPI._GetStdHandle(WINAPI._STDERR) if WINAPI._GetConsoleMode(handle, ctypes.byref(lpMode)): if not WINAPI._SetConsoleMode(handle, lpMode.value | WINAPI._ENABLE_VIRTUAL_TERMINAL_PROCESSING): return False else: return False return True
Example #8
Source File: createminidump.py From minidump with MIT License | 6 votes |
def enum_process_names(): pid_to_name = {} for pid in enum_pids(): pid_to_name[pid] = 'Not found' process_handle = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, False, pid) if process_handle is None: logging.debug('[Enum Processes]Failed to open process PID: %d Reason: %s ' % (pid, WinError(get_last_error()))) continue image_name = (ctypes.c_char*MAX_PATH)() max_path = DWORD(4096) #res = GetProcessImageFileName(process_handle, image_name, MAX_PATH) res = QueryFullProcessImageName(process_handle, 0 ,image_name, ctypes.byref(max_path)) if res == 0: logging.debug('[Enum Proceses]Failed GetProcessImageFileName on PID: %d Reason: %s ' % (pid, WinError(get_last_error()))) continue pid_to_name[pid] = image_name.value.decode() return pid_to_name
Example #9
Source File: driverlib.py From win_driver_plugin with BSD 3-Clause "New" or "Revised" License | 6 votes |
def open_device(self, access=GENERIC_READ | GENERIC_WRITE, mode=0, creation=OPEN_EXISTING, flags=FILE_ATTRIBUTE_NORMAL): """See: CreateFile function http://msdn.microsoft.com/en-us/library/windows/desktop/aa363858(v=vs.85).aspx """ CreateFile_Fn = ctypes.windll.kernel32.CreateFileA CreateFile_Fn.argtypes = [ wintypes.LPCSTR, # _In_ LPCTSTR lpFileName wintypes.DWORD, # _In_ DWORD dwDesiredAccess wintypes.DWORD, # _In_ DWORD dwShareMode LPSECURITY_ATTRIBUTES, # _In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes wintypes.DWORD, # _In_ DWORD dwCreationDisposition wintypes.DWORD, # _In_ DWORD dwFlagsAndAttributes wintypes.HANDLE] # _In_opt_ HANDLE hTemplateFile CreateFile_Fn.restype = wintypes.HANDLE self.handle = wintypes.HANDLE(CreateFile_Fn('\\\\.\\' + self.name, access, mode, NULL, creation, flags, NULL))
Example #10
Source File: driverlib.py From win_driver_plugin with BSD 3-Clause "New" or "Revised" License | 6 votes |
def open_service(service_manager_handle, service_name, desired_access): """ See: OpenService function https://msdn.microsoft.com/en-us/library/windows/desktop/ms684330(v=vs.85).aspx """ OpenService_Fn = ctypes.windll.Advapi32.OpenServiceA #SC_HANDLE WINAPI OpenService( OpenService_Fn.argtypes = [ # wintypes.HANDLE, # _In_ SC_HANDLE hSCManager, LPCTSTR, # _In_ LPCTSTR lpServiceName, wintypes.DWORD # _In_ DWORD dwDesiredAccess ] OpenService_Fn.restype = wintypes.SC_HANDLE handle = OpenService_Fn( service_manager_handle, service_name, desired_access ) return handle
Example #11
Source File: driverlib.py From win_driver_plugin with BSD 3-Clause "New" or "Revised" License | 6 votes |
def open_sc_manager(machine_name, database_name, desired_access): """See: OpenSCManager function https://msdn.microsoft.com/en-us/library/windows/desktop/ms684323(v=vs.85).aspx """ OpenSCManager_Fn = ctypes.windll.Advapi32.OpenSCManagerA #SC_HANDLE WINAPI OpenSCManager( OpenSCManager_Fn.argtypes = [ # LPCTSTR, # _In_opt_ LPCTSTR lpMachineName, LPCTSTR, # _In_opt_ LPCTSTR lpDatabaseName, wintypes.DWORD # _In_ DWORD dwDesiredAccess ] OpenSCManager_Fn.restype = wintypes.SC_HANDLE handle = OpenSCManager_Fn( machine_name, database_name, desired_access ) return handle
Example #12
Source File: driverlib.py From win_driver_plugin with BSD 3-Clause "New" or "Revised" License | 6 votes |
def start_service(service_handle, service_arg_count, service_arg_vectors): """See: StartService function https://msdn.microsoft.com/en-us/library/windows/desktop/ms686321(v=vs.85).aspx """ StartService_Fn = ctypes.windll.Advapi32.StartServiceA #BOOL WINAPI StartService( StartService_Fn.argtypes = [ # wintypes.SC_HANDLE, # _In_ SC_HANDLE hService, wintypes.DWORD, # _In_ DWORD dwNumServiceArgs, LPCTSTR # _In_opt_ LPCTSTR *lpServiceArgVectors ] StartService_Fn.restype = wintypes.BOOL bool = StartService_Fn( service_handle, service_arg_count, service_arg_vectors ) return bool
Example #13
Source File: Win32NativeWifiApi.py From win32wifi with GNU General Public License v3.0 | 6 votes |
def WlanOpenHandle(): """ The WlanOpenHandle function opens a connection to the server. DWORD WINAPI WlanOpenHandle( _In_ DWORD dwClientVersion, _Reserved_ PVOID pReserved, _Out_ PDWORD pdwNegotiatedVersion, _Out_ PHANDLE phClientHandle ); """ func_ref = wlanapi.WlanOpenHandle func_ref.argtypes = [DWORD, c_void_p, POINTER(DWORD), POINTER(HANDLE)] func_ref.restype = DWORD negotiated_version = DWORD() client_handle = HANDLE() result = func_ref(2, None, byref(negotiated_version), byref(client_handle)) if result != ERROR_SUCCESS: raise Exception("WlanOpenHandle failed.") return client_handle
Example #14
Source File: Win32NativeWifiApi.py From win32wifi with GNU General Public License v3.0 | 6 votes |
def WlanCloseHandle(hClientHandle): """ The WlanCloseHandle function closes a connection to the server. DWORD WINAPI WlanCloseHandle( _In_ HANDLE hClientHandle, _Reserved_ PVOID pReserved ); """ func_ref = wlanapi.WlanCloseHandle func_ref.argtypes = [HANDLE, c_void_p] func_ref.restype = DWORD result = func_ref(hClientHandle, None) if result != ERROR_SUCCESS: raise Exception("WlanCloseHandle failed.") return result
Example #15
Source File: Win32NativeWifiApi.py From win32wifi with GNU General Public License v3.0 | 6 votes |
def WlanEnumInterfaces(hClientHandle): """ The WlanEnumInterfaces function enumerates all of the wireless LAN interfaces currently enabled on the local computer. DWORD WINAPI WlanEnumInterfaces( _In_ HANDLE hClientHandle, _Reserved_ PVOID pReserved, _Out_ PWLAN_INTERFACE_INFO_LIST *ppInterfaceList ); """ func_ref = wlanapi.WlanEnumInterfaces func_ref.argtypes = [HANDLE, c_void_p, POINTER(POINTER(WLAN_INTERFACE_INFO_LIST))] func_ref.restype = DWORD wlan_ifaces = pointer(WLAN_INTERFACE_INFO_LIST()) result = func_ref(hClientHandle, None, byref(wlan_ifaces)) if result != ERROR_SUCCESS: raise Exception("WlanEnumInterfaces failed.") return wlan_ifaces
Example #16
Source File: Win32NativeWifiApi.py From win32wifi with GNU General Public License v3.0 | 6 votes |
def WlanDeleteProfile(hClientHandle, pInterfaceGuid, profileName): """ DWORD WINAPI WlanDeleteProfile( _In_ HANDLE hClientHandle, _In_ const GUID *pInterfaceGuid, _In_ LPCWSTR strProfileName, _Reserved_ PVOID pReserved ); """ func_ref = wlanapi.WlanDeleteProfile func_ref.argtypes = [HANDLE, POINTER(GUID), LPCWSTR, c_void_p] func_ref.restype = DWORD result = func_ref(hClientHandle, byref(pInterfaceGuid), profileName, None) if result != ERROR_SUCCESS: raise Exception("WlanDeleteProfile failed. error %d" % result, result) return result
Example #17
Source File: Win32NativeWifiApi.py From win32wifi with GNU General Public License v3.0 | 6 votes |
def WlanConnect(hClientHandle, pInterfaceGuid, pConnectionParameters): """ The WlanConnect function attempts to connect to a specific network. DWORD WINAPI WlanConnect( _In_ HANDLE hClientHandle, _In_ const GUID *pInterfaceGuid, _In_ const PWLAN_CONNECTION_PARAMETERS pConnectionParameters, _Reserved_ PVOID pReserved ); """ func_ref = wlanapi.WlanConnect func_ref.argtypes = [HANDLE, POINTER(GUID), POINTER(WLAN_CONNECTION_PARAMETERS), c_void_p] func_ref.restype = DWORD result = func_ref(hClientHandle, pointer(pInterfaceGuid), pointer(pConnectionParameters), None) if result != ERROR_SUCCESS: raise Exception("".join(["WlanConnect failed with error ", str(result)])) return result
Example #18
Source File: win32.py From Python24 with MIT License | 5 votes |
def FillConsoleOutputAttribute(stream_id, attr, length, start): ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' handle = handles[stream_id] attribute = wintypes.WORD(attr) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. return _FillConsoleOutputAttribute( handle, attribute, length, start, byref(num_written))
Example #19
Source File: win32.py From kobo-predict with BSD 2-Clause "Simplified" License | 5 votes |
def FillConsoleOutputAttribute(stream_id, attr, length, start): ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' handle = handles[stream_id] attribute = wintypes.WORD(attr) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. return _FillConsoleOutputAttribute( handle, attribute, length, start, byref(num_written))
Example #20
Source File: win32.py From CrawlBox with The Unlicense | 5 votes |
def FillConsoleOutputAttribute(stream_id, attr, length, start): ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' handle = handles[stream_id] attribute = wintypes.WORD(attr) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. return _FillConsoleOutputAttribute( handle, attribute, length, start, byref(num_written))
Example #21
Source File: win32.py From CrawlBox with The Unlicense | 5 votes |
def FillConsoleOutputCharacter(stream_id, char, length, start): handle = handles[stream_id] char = c_char(char.encode()) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. success = _FillConsoleOutputCharacterA( handle, char, length, start, byref(num_written)) return num_written.value
Example #22
Source File: win32.py From kobo-predict with BSD 2-Clause "Simplified" License | 5 votes |
def FillConsoleOutputCharacter(stream_id, char, length, start): handle = handles[stream_id] char = c_char(char.encode()) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. success = _FillConsoleOutputCharacterA( handle, char, length, start, byref(num_written)) return num_written.value
Example #23
Source File: win32.py From arnold-usd with Apache License 2.0 | 5 votes |
def FillConsoleOutputAttribute(stream_id, attr, length, start): ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' handle = handles[stream_id] attribute = wintypes.WORD(attr) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. return _FillConsoleOutputAttribute( handle, attribute, length, start, byref(num_written))
Example #24
Source File: win32.py From Python24 with MIT License | 5 votes |
def FillConsoleOutputCharacter(stream_id, char, length, start): handle = handles[stream_id] char = c_char(char.encode()) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. success = _FillConsoleOutputCharacterA( handle, char, length, start, byref(num_written)) return num_written.value
Example #25
Source File: test_win32_shim.py From vnpy_crypto with MIT License | 5 votes |
def test_handler(self): @count_calls def interrupt_polling(): print('Caught CTRL-C!') from ctypes import windll from ctypes.wintypes import BOOL, DWORD kernel32 = windll.LoadLibrary('kernel32') # <http://msdn.microsoft.com/en-us/library/ms683155.aspx> GenerateConsoleCtrlEvent = kernel32.GenerateConsoleCtrlEvent GenerateConsoleCtrlEvent.argtypes = (DWORD, DWORD) GenerateConsoleCtrlEvent.restype = BOOL # Simulate CTRL-C event while handler is active. try: with allow_interrupt(interrupt_polling) as context: result = GenerateConsoleCtrlEvent(0, 0) # Sleep so that we give time to the handler to # capture the Ctrl-C event. time.sleep(0.5) except KeyboardInterrupt: pass else: if result == 0: raise WindowsError() else: self.fail('Expecting `KeyboardInterrupt` exception!') # Make sure our handler was called. self.assertEqual(interrupt_polling.__calls__, 1)
Example #26
Source File: win32.py From vnpy_crypto with MIT License | 5 votes |
def FillConsoleOutputCharacter(stream_id, char, length, start): handle = handles[stream_id] char = c_char(char.encode()) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. success = _FillConsoleOutputCharacterA( handle, char, length, start, byref(num_written)) return num_written.value
Example #27
Source File: win32.py From vnpy_crypto with MIT License | 5 votes |
def FillConsoleOutputAttribute(stream_id, attr, length, start): ''' FillConsoleOutputAttribute( hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten )''' handle = handles[stream_id] attribute = wintypes.WORD(attr) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. return _FillConsoleOutputAttribute( handle, attribute, length, start, byref(num_written))
Example #28
Source File: win32.py From zmirror with MIT License | 5 votes |
def FillConsoleOutputCharacter(stream_id, char, length, start): handle = handles[stream_id] char = c_char(char.encode()) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. success = _FillConsoleOutputCharacterA( handle, char, length, start, byref(num_written)) return num_written.value
Example #29
Source File: win32.py From Yuki-Chan-The-Auto-Pentest with MIT License | 5 votes |
def FillConsoleOutputCharacter(stream_id, char, length, start): handle = handles[stream_id] char = c_char(char.encode()) length = wintypes.DWORD(length) num_written = wintypes.DWORD(0) # Note that this is hard-coded for ANSI (vs wide) bytes. success = _FillConsoleOutputCharacterA( handle, char, length, start, byref(num_written)) return num_written.value
Example #30
Source File: win_vmmap.py From IDAngr with BSD 2-Clause "Simplified" License | 5 votes |
def vmmap(pid, is_64=True): base = 0 if is_64: mbi = MEMORY_BASIC_INFORMATION_64() addr_type = wintypes.LARGE_INTEGER else: mbi = MEMORY_BASIC_INFORMATION_32() addr_type = wintypes.DWORD proc = win32api.OpenProcess(win32con.PROCESS_QUERY_INFORMATION, 0, pid) maps = [] while windll.kernel32.VirtualQueryEx(proc.handle, addr_type(base), ctypes.byref(mbi), ctypes.sizeof(mbi)) > 0: mapperm = 0 if mbi.Protect & win32con.PAGE_EXECUTE: mapperm = SEG_PROT_X elif mbi.Protect & win32con.PAGE_EXECUTE_READ: mapperm = SEG_PROT_X | SEG_PROT_R elif mbi.Protect & win32con.PAGE_EXECUTE_READWRITE: mapperm = SEG_PROT_X | SEG_PROT_R | SEG_PROT_W elif mbi.Protect & win32con.PAGE_EXECUTE_WRITECOPY: mapperm = SEG_PROT_X | SEG_PROT_R elif mbi.Protect & win32con.PAGE_NOACCESS: mapperm = 0 elif mbi.Protect & win32con.PAGE_READONLY: mapperm = SEG_PROT_R elif mbi.Protect & win32con.PAGE_READWRITE: mapperm = SEG_PROT_R | SEG_PROT_W elif mbi.Protect & win32con.PAGE_WRITECOPY: mapperm = SEG_PROT_R #print hex(mbi.BaseAddress) +"\t"+ hex(mbi.BaseAddress + mbi.RegionSize) +"\t"+ hex(mapperm) maps.append((mbi.BaseAddress, mbi.BaseAddress + mbi.RegionSize, mapperm, "")) base += mbi.RegionSize win32api.CloseHandle(proc) return maps