blob: d73a08a4f38ce0054bb6e003c0c734491ea57f74 (
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 { module excel {
constants XlChartGallery {
const long xlAnyGallery = 23;
const long xlBuiltIn = 21;
const long xlUserDefined = 22;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|