blob: d9259f26b8c94496fa9cfeca222fd3ec4349453d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba {
constants VbCompareMethod {
const long vbBinaryCompare = 0;
const long vbDatabaseCompare = 2;
const long vbTextCompare = 1;
};
}; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|