/*** *txtmode.c - set global text mode flag * * Copyright (c) 1989-1994, Microsoft Corporation. All rights reserved. * *Purpose: * Sets the global file mode to text. This is the default. * *Revision History: * 06-08-89 PHG Module created, based on asm version. * 04-04-90 GJF Added #include . Also, fixed the copyright. * 01-23-92 GJF Added #include (contains decl of _fmode). * 04-05-94 GJF Added conditional so this definition doesn't make it * into the msvcrt*.dll for Win32s. * *******************************************************************************/ #ifndef DLL_FOR_WIN32S #include #include int _fmode = 0; /* set text mode */ #endif /* DLL_FOR_WIN32S */