11 lines
391 B
Text
11 lines
391 B
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
module ooo { module vba { module dao {
|
|
constants DriverPromptEnum {
|
|
const long dbDriverComplete = 0;
|
|
const long dbDriverCompleteRequired = 3;
|
|
const long dbDriverNoPrompt = 1;
|
|
const long dbDriverPrompt = 2;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|