blob: 159ad5372bd1bcc41c41ab8553bbc1cf3c0f0b97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlBarShape {
const long xlBox = 0;
const long xlConeToMax = 5;
const long xlConeToPoint = 4;
const long xlCylinder = 3;
const long xlPyramidToMax = 2;
const long xlPyramidToPoint = 1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|