本文整理匯總了Python中_winapi.DUPLICATE_CLOSE_SOURCE屬性的典型用法代碼示例。如果您正苦於以下問題:Python _winapi.DUPLICATE_CLOSE_SOURCE屬性的具體用法?Python _winapi.DUPLICATE_CLOSE_SOURCE怎麽用?Python _winapi.DUPLICATE_CLOSE_SOURCE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類_winapi
的用法示例。
在下文中一共展示了_winapi.DUPLICATE_CLOSE_SOURCE屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: steal_handle
# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import DUPLICATE_CLOSE_SOURCE [as 別名]
def steal_handle(source_pid, handle):
'''Steal a handle from process identified by source_pid.'''
source_process_handle = _winapi.OpenProcess(
_winapi.PROCESS_DUP_HANDLE, False, source_pid)
try:
return _winapi.DuplicateHandle(
source_process_handle, handle,
_winapi.GetCurrentProcess(), 0, False,
_winapi.DUPLICATE_SAME_ACCESS | _winapi.DUPLICATE_CLOSE_SOURCE)
finally:
_winapi.CloseHandle(source_process_handle)
示例2: detach
# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import DUPLICATE_CLOSE_SOURCE [as 別名]
def detach(self):
'''Get the handle. This should only be called once.'''
# retrieve handle from process which currently owns it
if self._pid == os.getpid():
# The handle has already been duplicated for this process.
return self._handle
# We must steal the handle from the process whose pid is self._pid.
proc = _winapi.OpenProcess(_winapi.PROCESS_DUP_HANDLE, False,
self._pid)
try:
return _winapi.DuplicateHandle(
proc, self._handle, _winapi.GetCurrentProcess(),
self._access, False, _winapi.DUPLICATE_CLOSE_SOURCE)
finally:
_winapi.CloseHandle(proc)
示例3: detach
# 需要導入模塊: import _winapi [as 別名]
# 或者: from _winapi import DUPLICATE_CLOSE_SOURCE [as 別名]
def detach(self):
# retrieve handle from process which currently owns it
if self._pid == os.getpid():
return self._handle
proc = _winapi.OpenProcess(_winapi.PROCESS_DUP_HANDLE, False,
self._pid)
try:
return _winapi.DuplicateHandle(
proc, self._handle, _winapi.GetCurrentProcess(),
self._access, False, _winapi.DUPLICATE_CLOSE_SOURCE)
finally:
_winapi.CloseHandle(proc)