You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
/***
|
|
*w4io.h - fake FILE structure for Win 4 printf/sprintf/debug printf support
|
|
*
|
|
*/
|
|
|
|
#if defined(M_I386) || defined(FLAT)
|
|
#ifndef FAR
|
|
#define FAR
|
|
#endif
|
|
# ifndef FLAT
|
|
# define FLAT
|
|
# endif
|
|
#else
|
|
#ifndef FAR
|
|
#define FAR __far
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef NULL
|
|
# define NULL 0
|
|
#endif
|
|
|
|
#ifndef _WCHAR_T_DEFINED
|
|
typedef unsigned short wchar_t;
|
|
#define _WCHAR_T_DEFINED
|
|
#endif
|
|
|
|
struct w4io
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
wchar_t FAR *_pwcbuf; // wchar_t output buffer
|
|
wchar_t FAR *_pwcstart;
|
|
} wc;
|
|
struct
|
|
{
|
|
char FAR *_pchbuf; // char output buffer
|
|
char FAR *_pchstart;
|
|
} ch;
|
|
} buf ;
|
|
unsigned int cchleft; // output buffer character count
|
|
void (_cdecl *writechar)(int ch,
|
|
int num,
|
|
struct w4io FAR *f,
|
|
int FAR *pcchwritten);
|
|
};
|
|
|
|
#define pwcbuf buf.wc._pwcbuf
|
|
#define pwcstart buf.wc._pwcstart
|
|
#define pchbuf buf.ch._pchbuf
|
|
#define pchstart buf.ch._pchstart
|
|
|
|
#define REG1 register
|
|
#define REG2 register
|
|
|
|
/* prototypes */
|
|
int _cdecl w4iooutput(struct w4io FAR *stream, const char FAR *format, va_list argptr);
|