13 lines
461 B
Text
13 lines
461 B
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
module ooo { module vba { module adodb {
|
|
constants CEResyncEnum {
|
|
const long adResyncAll = 15;
|
|
const long adResyncAutoIncrement = 1;
|
|
const long adResyncConflicts = 2;
|
|
const long adResyncInserts = 8;
|
|
const long adResyncNone = 0;
|
|
const long adResyncUpdates = 4;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|