1
0
mirror of https://github.com/rfivet/uemacs.git synced 2025-11-23 11:41:15 -05:00

Review interface of fileio.

This commit is contained in:
2013-06-09 17:31:28 +08:00
parent b57c1adc20
commit 4bf4c48056
5 changed files with 36 additions and 23 deletions

View File

@@ -256,10 +256,18 @@
#undef TRUE
#endif
#if 0
#define FALSE 0 /* False, no, bad, etc. */
#define TRUE 1 /* True, yes, good, etc. */
#define ABORT 2 /* Death, ^G, abort, etc. */
#define FAILED 3 /* not-quite fatal false return */
#endif
typedef enum {
FALSE,
TRUE
} boolean ;
#define ABORT 2
#define STOP 0 /* keyboard macro not in use */
#define PLAY 1 /* playing */