2023-02-16 16:01:21 +00:00
|
|
|
/***
|
|
|
|
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
|
|
|
|
File: AuProcAddresses.cpp
|
|
|
|
Date: 2023-2-16
|
|
|
|
Author: Reece
|
|
|
|
***/
|
|
|
|
#include <RuntimeInternal.hpp>
|
|
|
|
|
|
|
|
#if defined(AURORA_IS_MODERNNT_DERIVED)
|
|
|
|
#include "AuProcAddresses.NT.hpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace Aurora
|
|
|
|
{
|
|
|
|
void InitProcAddresses()
|
|
|
|
{
|
2023-06-15 19:44:27 +00:00
|
|
|
static bool gDumbInitOnce {};
|
|
|
|
if (AuExchange(gDumbInitOnce, true))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-02-16 16:01:21 +00:00
|
|
|
#if defined(AURORA_IS_MODERNNT_DERIVED)
|
|
|
|
InitNTAddresses();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|