//+--------------------------------------------------------------------------- // // Microsoft Forms // Copyright (c) 1994 - 1999 Microsoft Corporation. All rights reserved.*/// // File: intl.hxx // // Contents: Codepage definitions // //---------------------------------------------------------------------------- #ifndef _CODEPAGE_H_ #define _CODEPAGE_H_ #pragma once typedef UINT CODEPAGE; // Codepage corresponds to Mlang ID #define CP_UNDEFINED CODEPAGE(-1) #define CP_UCS_2 1200 #define CP_UTF_8 65001 #define CP_UCS_4 12000 #endif