11 lines
382 B
Text
11 lines
382 B
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
module ooo { module vba { module access {
|
|
constants AcFormOpenDataMode {
|
|
const long acFormAdd = 0;
|
|
const long acFormEdit = 1;
|
|
const long acFormPropertySettings = -1;
|
|
const long acFormReadOnly = 2;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|