blob: fbd3bdd0bbb43c93ce2b2222d343e672e3b8ab1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
constants AcExportXMLOtherFlags {
const long acEmbedSchema = 1;
const long acExcludePrimaryKeyAndIndexes = 2;
const long acLiveReportSource = 8;
const long acPersistReportML = 16;
const long acRunFromServer = 4;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|