Leaked source code of windows server 2003
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.
|
|
//+---------------------------------------------------------------------------
//
// 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
|