1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
constants AcObjectType {
const long acDataAccessPage = 6;
const long acDefault = -1;
const long acDiagram = 8;
const long acForm = 2;
const long acFunction = 10;
const long acMacro = 4;
const long acModule = 5;
const long acQuery = 1;
const long acReport = 3;
const long acServerView = 7;
const long acStoredProcedure = 9;
const long acTable = 0;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|