2020-04-22 12:56:21 -04:00
|
|
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
|
|
//
|
|
|
|
// Purpose:
|
|
|
|
//
|
|
|
|
//=====================================================================================//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-05-09 19:57:22 +03:00
|
|
|
#ifdef _WIN32
|
2020-04-22 12:56:21 -04:00
|
|
|
#include <windows.h>
|
|
|
|
#include <direct.h>
|
|
|
|
#include <io.h>
|
2023-05-09 19:57:22 +03:00
|
|
|
#include <sys/utime.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-04-22 12:56:21 -04:00
|
|
|
#include <time.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2023-05-09 19:57:22 +03:00
|
|
|
#include "tier0/icommandline.h"
|
2020-04-22 12:56:21 -04:00
|
|
|
#include "tier1/strtools.h"
|
|
|
|
#include "tier1/utlvector.h"
|
|
|
|
#include "tier1/utlbuffer.h"
|
|
|
|
#include "tier1/utlstring.h"
|
2023-05-09 19:57:22 +03:00
|
|
|
#include "tier1/byteswap.h"
|
2020-04-22 12:56:21 -04:00
|
|
|
#include "datamap.h"
|
2023-05-09 19:57:22 +03:00
|
|
|
#include "bsplib.h"
|
2020-04-22 12:56:21 -04:00
|
|
|
|