mirror of
https://github.com/decompals/wibo.git
synced 2025-10-15 22:55:11 +00:00
12 lines
331 B
C++
12 lines
331 B
C++
#pragma once
|
|
|
|
#include "common.h"
|
|
|
|
namespace kernel32 {
|
|
|
|
BOOL WIN_FUNC CloseHandle(HANDLE hObject);
|
|
BOOL WIN_FUNC DuplicateHandle(HANDLE hSourceProcessHandle, HANDLE hSourceHandle, HANDLE hTargetProcessHandle,
|
|
LPHANDLE lpTargetHandle, DWORD dwDesiredAccess, BOOL bInheritHandle, DWORD dwOptions);
|
|
|
|
} // namespace kernel32
|