mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-04 00:23:25 +08:00
8a6d1c6cd2
* Fix compilation for windows, setup ambuild * Add built tier1 and mathlib for win64 * Ensure compilation is working on windows and linux * Add -fPIC * Add compiled libs, with optimisation enabled * Added windows lib * Fix hl2sdk for windows * Longs are the devil * Fix up threadtools functions * Add updated libs * Rework lib naming, and package script * Update lib directory according to new packaging --------- Co-authored-by: Kenzzer <kenzzer@users.noreply.github.com>
57 lines
1.3 KiB
C
57 lines
1.3 KiB
C
//====== Copyright c 1996-2007, Valve Corporation, All rights reserved. =======//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//
|
|
//=============================================================================//
|
|
|
|
#ifndef SYSTEMINFORMATION_H
|
|
#define SYSTEMINFORMATION_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#ifndef PLATFORM_INTERFACE
|
|
#define PLATFORM_INTERFACE
|
|
#endif
|
|
|
|
//
|
|
// Defines a possible outcome of a system call
|
|
//
|
|
enum SYSTEM_CALL_RESULT_t
|
|
{
|
|
SYSCALL_SUCCESS = 0, // System call succeeded
|
|
SYSCALL_FAILED = 1, // System call failed
|
|
SYSCALL_NOPROC = 2, // Failed to find required system procedure
|
|
SYSCALL_NODLL = 3, // Failed to find or load required system module
|
|
SYSCALL_UNSUPPORTED = 4, // System call unsupported on the OS
|
|
};
|
|
|
|
|
|
//
|
|
// Information about paged pool memory
|
|
//
|
|
struct PAGED_POOL_INFO_t
|
|
{
|
|
uint32_t numPagesUsed; // Number of Paged Pool pages used
|
|
uint32_t numPagesFree; // Number of Paged Pool pages free
|
|
};
|
|
|
|
//
|
|
// Plat_GetMemPageSize
|
|
// Returns the size of a memory page in kilobytes.
|
|
//
|
|
PLATFORM_INTERFACE uint32_t Plat_GetMemPageSize();
|
|
|
|
//
|
|
// Plat_GetPagedPoolInfo
|
|
// Fills in the paged pool info structure if successful.
|
|
//
|
|
PLATFORM_INTERFACE SYSTEM_CALL_RESULT_t Plat_GetPagedPoolInfo( PAGED_POOL_INFO_t *pPPI );
|
|
|
|
|
|
|
|
#endif // #ifndef SYSTEMINFORMATION_H
|