1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-24 14:30:43 -08:00
emacs/mps/code/mpsio.h
Richard Brooksby c0bb4cd3cd Removing hopenames from the master sources.
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames.

Copied from Perforce
 Change: 24911
 ServerID: perforce.ravenbrook.com
2001-12-07 13:19:25 +00:00

25 lines
532 B
C

/* impl.h.mpsio: RAVENBROOK MEMORY POOL SYSTEM I/O INTERFACE
*
* $Id$
* Copyright (c) 2001 Ravenbrook Limited.
*
* .readership: For MPS client application developers, MPS developers.
* .sources: design.mps.io
*/
#ifndef mpsio_h
#define mpsio_h
#include "mps.h" /* for mps_res_t */
typedef struct mps_io_s *mps_io_t;
extern mps_res_t mps_io_create(mps_io_t *);
extern void mps_io_destroy(mps_io_t);
extern mps_res_t mps_io_write(mps_io_t, void *, size_t);
extern mps_res_t mps_io_flush(mps_io_t);
#endif /* mpsio_h */