12 lines
447 B
Text
12 lines
447 B
Text
/* -*- 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: */
|