blob: 50cea0cde513dbd441f8dbb7041549517abb6106 (
plain)
1
2
3
4
5
6
7
8
9
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module excel {
constants XlImportDataAs {
const long xlPivotTableReport = 1;
const long xlQueryTable = 0;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|