blob: 8f67861fc626e6311f1bd9cee97e7010aa36b8ea (
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 access {
constants AcImeSentenceMode {
const long acImeSentenceModeConversation = 2;
const long acImeSentenceModeNone = 3;
const long acImeSentenceModePhrasePredict = 0;
const long acImeSentenceModePluralClause = 1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|