summaryrefslogtreecommitdiffstats
path: root/private/crt32/stdio/woutput.c
diff options
context:
space:
mode:
Diffstat (limited to 'private/crt32/stdio/woutput.c')
-rw-r--r--private/crt32/stdio/woutput.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/private/crt32/stdio/woutput.c b/private/crt32/stdio/woutput.c
new file mode 100644
index 000000000..f11425391
--- /dev/null
+++ b/private/crt32/stdio/woutput.c
@@ -0,0 +1,31 @@
+/***
+*woutput.c - wprintf style output to a FILE (wchar_t version)
+*
+* Copyright (c) 1993, Microsoft Corporation. All rights reserved.
+*
+*Purpose:
+* This file contains the code that does all the work for the
+* wprintf family of functions. It should not be called directly, only
+* by the *wprintf functions. We don't make any assumtions about the
+* sizes of ints, longs, shorts, or long doubles, but if types do overlap,
+* we also try to be efficient. We do assume that pointers are the same
+* size as either ints or longs.
+* If CPRFLAG is defined, defines _cprintf instead.
+* **** DOESN'T CURRENTLY DO MTHREAD LOCKING ****
+*
+*Revision History:
+* 04-27-93 CFW Module created.
+*
+*******************************************************************************/
+
+#define WPRFLAG 1
+
+#ifndef _UNICODE /* CRT flag */
+#define _UNICODE 1
+#endif
+
+#ifndef UNICODE /* NT flag */
+#define UNICODE 1
+#endif
+
+#include "output.c"