1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo
{ module vba
{ module excel
{
4 const long xlIMEModeAlpha
= 8;
5 const long xlIMEModeAlphaFull
= 7;
6 const long xlIMEModeDisable
= 3;
7 const long xlIMEModeHangul
= 10;
8 const long xlIMEModeHangulFull
= 9;
9 const long xlIMEModeHiragana
= 4;
10 const long xlIMEModeKatakana
= 5;
11 const long xlIMEModeKatakanaHalf
= 6;
12 const long xlIMEModeNoControl
= 0;
13 const long xlIMEModeOff
= 2;
14 const long xlIMEModeOn
= 1;
18 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */