FreeRDP/winpr/libwinpr/handle/handle.c

82 lines
1.9 KiB
C
Raw Normal View History

2012-05-29 22:14:26 +04:00
/**
* WinPR: Windows Portable Runtime
* Handle Management
*
* Copyright 2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
* Copyright 2014 DI (FH) Martin Haimberger <martin.haimberger@thincast.com>
2012-05-29 22:14:26 +04:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2022-02-16 12:08:00 +03:00
#include <winpr/config.h>
2012-05-29 22:14:26 +04:00
#include <winpr/handle.h>
#ifndef _WIN32
#include <pthread.h>
#include "../synch/synch.h"
#include "../thread/thread.h"
2013-05-17 01:32:58 +04:00
#include "../pipe/pipe.h"
2014-04-02 23:51:28 +04:00
#include "../comm/comm.h"
2013-09-24 08:07:48 +04:00
#include "../security/security.h"
2012-05-29 22:14:26 +04:00
#ifdef WINPR_HAVE_UNISTD_H
#include <unistd.h>
#endif
2021-06-09 15:03:34 +03:00
#include <winpr/assert.h>
2013-05-17 01:32:58 +04:00
#include "../handle/handle.h"
2012-05-29 22:14:26 +04:00
BOOL CloseHandle(HANDLE hObject)
{
ULONG Type;
2019-11-06 17:24:51 +03:00
WINPR_HANDLE* Object;
if (!winpr_Handle_GetInfo(hObject, &Type, &Object))
return FALSE;
2012-05-29 22:14:26 +04:00
if (!Object)
return FALSE;
if (!Object->ops)
return FALSE;
if (Object->ops->CloseHandle)
return Object->ops->CloseHandle(hObject);
return FALSE;
2012-05-29 22:14:26 +04:00
}
BOOL DuplicateHandle(HANDLE hSourceProcessHandle, HANDLE hSourceHandle, HANDLE hTargetProcessHandle,
2019-11-06 17:24:51 +03:00
LPHANDLE lpTargetHandle, DWORD dwDesiredAccess, BOOL bInheritHandle,
DWORD dwOptions)
2012-05-29 22:14:26 +04:00
{
2019-11-06 17:24:51 +03:00
*((ULONG_PTR*)lpTargetHandle) = (ULONG_PTR)hSourceHandle;
return TRUE;
2012-05-29 22:14:26 +04:00
}
BOOL GetHandleInformation(HANDLE hObject, LPDWORD lpdwFlags)
{
return TRUE;
2012-05-29 22:14:26 +04:00
}
BOOL SetHandleInformation(HANDLE hObject, DWORD dwMask, DWORD dwFlags)
{
return TRUE;
2012-05-29 22:14:26 +04:00
}
#endif