11 lines
371 B
Text
11 lines
371 B
Text
/* -*- 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: */
|