56 lines
2.3 KiB
C
Executable File
56 lines
2.3 KiB
C
Executable File
/***************************************************************************************
|
|
*
|
|
* WRITEPAD(r): Handwriting Recognition Engine (HWRE) and components.
|
|
* Copyright (c) 2001-2016 PhatWare (r) Corp. All rights reserved.
|
|
*
|
|
* Licensing and other inquires: <developer@phatware.com>
|
|
* Developer: Stan Miasnikov, et al. (c) PhatWare Corp. <http://www.phatware.com>
|
|
*
|
|
* WRITEPAD HWRE is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU "AS-IS"
|
|
* AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE,
|
|
* INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR
|
|
* FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL PHATWARE CORP.
|
|
* BE LIABLE TO YOU OR ANYONE ELSE FOR ANY DIRECT, SPECIAL, INCIDENTAL,
|
|
* INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER,
|
|
* INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF USE, SAVINGS
|
|
* OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR NOT PHATWARE CORP.
|
|
* HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH LOSS, HOWEVER CAUSED AND ON
|
|
* ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE
|
|
* POSSESSION, USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
* See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with WritePad. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
**************************************************************************************/
|
|
|
|
#ifndef LANGID_H
|
|
#define LANGID_H
|
|
|
|
#define LANGUAGE_NONE 0
|
|
#define LANGUAGE_ENGLISH 1
|
|
#define LANGUAGE_FRENCH 2
|
|
#define LANGUAGE_GERMAN 3
|
|
#define LANGUAGE_SPANISH 4
|
|
#define LANGUAGE_ITALIAN 5
|
|
#define LANGUAGE_SWEDISH 6
|
|
#define LANGUAGE_NORWEGIAN 7
|
|
#define LANGUAGE_DUTCH 8
|
|
#define LANGUAGE_DANISH 9
|
|
#define LANGUAGE_PORTUGUESE 10
|
|
#define LANGUAGE_PORTUGUESEB 11
|
|
#define LANGUAGE_MEDICAL 12
|
|
#define LANGUAGE_FINNISH 13
|
|
#define LANGUAGE_INDONESIAN 14
|
|
#define LANGUAGE_ENGLISHUK 15
|
|
#define LANGUAGE_SIZE 16
|
|
|
|
#define LANG_MEDICAL 0x71 // special entry for medical dictionary
|
|
|
|
#endif // LANGID_H
|