TaggedOpenLibrary constants off by one fix.
[AROS.git] / compiler / include / exec / rawfmt.h
blob7cedc78e6fa51fd168461b8e81a359e057bc3415
1 #ifndef EXEC_RAWFMT_H
2 #define EXEC_RAWFMT_H
4 #include <aros/asmcall.h>
6 /* Magic constants for RawDoFmt() anv VNewRawDoFmt() to be given as
7 PutChProc */
9 #define RAWFMTFUNC_STRING (VOID_FUNC)0 /* Output to string given in PutChData */
10 #define RAWFMTFUNC_SERIAL (VOID_FUNC)1 /* Output to debug log (usually serial port) */
11 #define RAWFMTFUNC_COUNT (VOID_FUNC)2 /* Just count characters, PutChData is a pointer
12 to the counter (ULONG *) */
14 #endif