Reece
d7c6d66fad
[+] AuPopCnt [+] NormalizePath, GetFileFromPath, GetDirectoryFromPath, GoUpToSeparator [*] Fix Version Helpers again [*] Fix registry locale memory check under read registry in SWInfo [*] Breakout portable process code away from evil win32 code [*] .dynlib -> .dylib under macos
15 lines
291 B
C++
15 lines
291 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Stack.Win32.hpp
|
|
Date: 2022-1-26
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Debug
|
|
{
|
|
void ParseStack(CONTEXT *ctx, StackTrace &backTrace);
|
|
|
|
StackTrace PlatformWalkCallStack();
|
|
} |