16 lines
345 B
C
Executable File
16 lines
345 B
C
Executable File
/// \file EpochTimeToString.h
|
|
///
|
|
/// This file is part of RakNet Copyright 2003 Jenkins Software LLC
|
|
///
|
|
/// Usage of RakNet is subject to the appropriate license agreement.
|
|
|
|
#ifndef __EPOCH_TIME_TO_STRING_H
|
|
#define __EPOCH_TIME_TO_STRING_H
|
|
|
|
#include "Export.h"
|
|
|
|
RAK_DLL_EXPORT char * EpochTimeToString(long long time);
|
|
|
|
#endif
|
|
|