20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
/***
|
|
*mbascii1.c - Enable MB ASCII Support
|
|
*
|
|
* Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
|
|
*
|
|
*Purpose:
|
|
* Enable MB ASCII support (set _mbascii flag to 1).
|
|
*
|
|
* [For complete description, see mbascii0.c.]
|
|
*
|
|
*Revision History:
|
|
* 11-19-92 KRS Ported from 16-bit sources.
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#include <cruntime.h>
|
|
#include <mbdata.h>
|
|
|
|
unsigned int _mbascii = 1; /* !0 = operate on MB ASCII chars */
|