Files
firestorm/build-env/stlnative/LOADPERF.H
T
Cyd 2b8ca921cb Initial full mirror of c:\VWE (source + assets + toolchain + outputs) via Git LFS
Complete disaster-recovery snapshot: engine/game source, game data assets,
VC6 toolchain + DX SDKs, build outputs, deployed game, and _UNUSED archive.
Large binaries in Git LFS; text preserved byte-for-byte (core.autocrlf=false,
no eol attributes). See RECOVERY.md for the one-clone rebuild procedure.
2026-06-24 21:28:16 -05:00

71 lines
1.4 KiB
C++

/*++
Copyright 1995 - 1998 Microsoft Corporation
Module Name:
loadperf.h
Abstract:
Header file for the Performance Monitor counter string installation
and removal functions.
Revision History
16-Nov-95 Created (a-robw)
--*/
#ifndef _LOADPERF_H_
#define _LOADPERF_H_
// function prototypes for perf counter name string load & unload functions
// provided in LOADPERF.DLL
#ifdef __cplusplus
extern "C" {
#endif
#define LOADPERF_FUNCTION __declspec(dllexport) LONG __stdcall
LOADPERF_FUNCTION
LoadPerfCounterTextStringsA (
IN LPSTR lpAnsiCommandLine,
IN BOOL bQuietModeArg
);
LOADPERF_FUNCTION
LoadPerfCounterTextStringsW (
IN LPWSTR lpWideCommandLine,
IN BOOL bQuietModeArg
);
LOADPERF_FUNCTION
UnloadPerfCounterTextStringsW (
IN LPWSTR lpWideCommandLine,
IN BOOL bQuietModeArg
);
LOADPERF_FUNCTION
UnloadPerfCounterTextStringsA (
IN LPSTR lpAnsiCommandLine,
IN BOOL bQuietModeArg
);
#ifdef UNICODE
#define LoadPerfCounterTextStrings LoadPerfCounterTextStringsW
#define UnloadPerfCounterTextStrings UnloadPerfCounterTextStringsW
#else
#define LoadPerfCounterTextStrings LoadPerfCounterTextStringsA
#define UnloadPerfCounterTextStrings UnloadPerfCounterTextStringsA
#endif
#ifdef __cplusplus
}
#endif
#endif // _LOADPERF_H_