本文整理汇总了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)