blob: 37663064a2b604b2c12083ed82bce5c7e8b6600e (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
constants AcCloseSave {
const long acSaveNo = 2;
const long acSavePrompt = 0;
const long acSaveYes = 1;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|