mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Less copy and paste. Allows these very simple timings to be logged from elsewhere as well.
9 lines
245 B
C
9 lines
245 B
C
#pragma once
|
|
#include "Types.h"
|
|
|
|
void TimingLogInitialize(const CHAR8* filename);
|
|
void TimingLog(const CHAR8* logEvent, int n);
|
|
void TimingLogTotalTime(const CHAR8* logEvent, int n);
|
|
void TimingLogWrite(const CHAR8* text);
|
|
void TimingLogStop();
|