mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-04 12:58:41 +00:00
linker
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
// Copyright (c) 2024 Epic Games Tools
|
||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
||||
|
||||
#pragma once
|
||||
|
||||
typedef enum LNK_TimerType
|
||||
{
|
||||
LNK_Timer_Image,
|
||||
LNK_Timer_Pdb,
|
||||
LNK_Timer_Rdi,
|
||||
LNK_Timer_Lib,
|
||||
LNK_Timer_Debug,
|
||||
LNK_Timer_Count
|
||||
} LNK_TimerType;
|
||||
|
||||
typedef struct LNK_Timer
|
||||
{
|
||||
U64 begin;
|
||||
U64 end;
|
||||
} LNK_Timer;
|
||||
|
||||
internal void lnk_timer_begin(LNK_TimerType timer);
|
||||
internal void lnk_timer_end(LNK_TimerType timer);
|
||||
|
||||
Reference in New Issue
Block a user