chuyiwen_gmsv/include/buf.h

12 lines
269 B
C
Raw Normal View History

2016-12-24 08:45:52 +08:00
#ifndef __BUF_H__
#define __BUF_H__
#include "common.h"
void memEnd( void );
BOOL configmem( int unit , int unitnumber );
BOOL memInit( void );
void* allocateMemory( const unsigned int nbyte );
void freeMemory( void* freepointer );
void showMem( char *buf);
#endif