26 lines
584 B
C++
26 lines
584 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: auWin32Utils.hpp
|
|
Date: 2022-2-1
|
|
File: AuroraUtils.hpp
|
|
File: auROXTLUtils.hpp
|
|
Date: 2021-6-9
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
#if defined(AURORA_IS_MODERNNT_DERIVED) && (defined(_WINDOWS_) || defined(_OTHER_MS_MAIN_HEADER_GUARDS_HERE))
|
|
|
|
#define _AU_SAW_WIN32_EARLY
|
|
|
|
static auline void AuWin32CloseHandle(HANDLE &handle)
|
|
{
|
|
HANDLE local;
|
|
|
|
if ((local = AuExchange(handle, INVALID_HANDLE_VALUE)) != INVALID_HANDLE_VALUE)
|
|
{
|
|
CloseHandle(local);
|
|
}
|
|
}
|
|
#endif |