blob: 40ec3d628972cfa2863470bf2798499580293482 (
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 XlCalculationState {
const long xlCalculating = 1;
const long xlDone = 0;
const long xlPending = 2;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|