blob: d8c069768f932721fce84d7a32d19e3b428dc107 (
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 XlCalculationInterruptKey {
const long xlAnyKey = 2;
const long xlEscKey = 1;
const long xlNoKey = 0;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|