blob: 31923d6e896ccb4778db12a7e416c36d7c547c43 (
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 adodb {
constants ADCPROP_AUTORECALC_ENUM {
const long adRecalcAlways = 1;
const long adRecalcUpFront = 0;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|