blob: 0489a9f7b9aa3152f73177d3318a573f83fe5b2e (
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 AcPrintObjQuality {
const long acPRPQDraft = -1;
const long acPRPQHigh = -4;
const long acPRPQLow = -2;
const long acPRPQMedium = -3;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|