12 lines
419 B
Text
12 lines
419 B
Text
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
module ooo { module vba { module adodb {
|
|
constants ObjectStateEnum {
|
|
const long adStateClosed = 0;
|
|
const long adStateConnecting = 2;
|
|
const long adStateExecuting = 4;
|
|
const long adStateFetching = 8;
|
|
const long adStateOpen = 1;
|
|
};
|
|
}; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|