16 lines
494 B
C
16 lines
494 B
C
// --------------------------------------------------------------------------------
|
|
// @Title: t32server - file io functions
|
|
// @Description: -
|
|
// @Author: KJM
|
|
// @Copyright: (C) 1989-2022 Lauterbach GmbH, licensed for use with TRACE32(R) only
|
|
// --------------------------------------------------------------------------------
|
|
// $Id: fileio.h 18850 2022-01-26 18:41:29Z bschroefel $
|
|
|
|
#ifndef FILEIO_H_
|
|
#define FILEIO_H_
|
|
|
|
int GetFile(char *buf);
|
|
int SendFile(char *buf);
|
|
|
|
#endif /*FILEIO_H_*/
|