blob: cd1eee9b8dc7fa0ab356ca5607fa739800a5df31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlArabicModes {
const long xlArabicBothStrict = 3;
const long xlArabicNone = 0;
const long xlArabicStrictAlefHamza = 1;
const long xlArabicStrictFinalYaa = 2;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|