thug/Code/Sys/Mem/memtest.h
2016-02-14 08:39:12 +11:00

68 lines
2.5 KiB
C++

/*****************************************************************************
** **
** Neversoft Entertainment **
** **
** Copyright (C) 1999 - All Rights Reserved **
** **
******************************************************************************
** **
** Project: Sys Library **
** **
** Module: Memory Manager (Mem) **
** **
** Created: 03/20/00 - mjb **
** **
** File name: core/sys/mem/memtest.h **
** **
*****************************************************************************/
#ifndef __SYS_MEM_MEMTEST_H
#define __SYS_MEM_MEMTEST_H
/*****************************************************************************
** Includes **
*****************************************************************************/
#ifndef __CORE_DEFINES_H
#include <core/defines.h>
#endif
/*****************************************************************************
** Defines **
*****************************************************************************/
namespace Mem
{
/*****************************************************************************
** Type Defines **
*****************************************************************************/
/*****************************************************************************
** Private Declarations **
*****************************************************************************/
/*****************************************************************************
** Private Prototypes **
*****************************************************************************/
/*****************************************************************************
** Public Declarations **
*****************************************************************************/
/*****************************************************************************
** Public Prototypes **
*****************************************************************************/
void Test( void );
/*****************************************************************************
** Inline Functions **
*****************************************************************************/
} // namespace Mem
#endif // __SYS_MEM_MEMTEST_H