1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2025-01-07 09:43:40 +08:00
hl2sdk/game/missionchooser/asw_system.h
2010-07-22 01:46:14 -05:00

15 lines
547 B
C

#ifndef _INCLUDED_ASW_SYSTEM_H
#define _INCLUDED_ASW_SYSTEM_H
#ifdef _WIN32
#pragma once
#endif
#include "filesystem.h"
bool ASW_System_GetCurrentTimeAndDate(int *year, int *month, int *dayOfWeek, int *day, int *hour, int *minute, int *second);
const char *Sys_FindFirst (FileFindHandle_t &searchhandle, const char *path, char *basename, int namelength );
const char* Sys_FindNext (FileFindHandle_t &searchhandle, char *basename, int namelength);
void Sys_FindClose (FileFindHandle_t &searchhandle);
#endif _INCLUDED_ASW_SYSTEM_H