11 lines
356 B
Text
11 lines
356 B
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
module ooo { module vba { module access {
|
|
constants AcWindowMode {
|
|
const long acDialog = 3;
|
|
const long acHidden = 1;
|
|
const long acIcon = 2;
|
|
const long acWindowNormal = 0;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|