导航:[首页]->[windows]->[《Windows核心编程》内核对象学习笔记]
##跨进程边界共享内核对象 ###使用对象句柄继承
HANDLE_FLAG_INHERIT If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the object handle. HANDLE_FLAG_PROTECT_FROM_CLOSE If this flag is set, calling the CloseHandle function will not close the object handle. ###对象命名
###复制内核对象DuplicateHandle
分类浏览[windows] |