mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 14:30:43 -08:00
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
25 lines
532 B
C
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 */
|