blob: 649bda6dd1c4ddf0b3fb0f5a6ee22123cfa09827 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module access {
constants ProcKind {
const long Get = 3;
const long Let = 1;
const long Proc = 0;
const long Set = 2;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|