Files
libreoffice/oovbaapi/ooo/vba/adodb/ObjectStateEnum.idl

13 lines
419 B
Plaintext
Raw Normal View History

/* -*- 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: */