Files
libreoffice/oovbaapi/ooo/vba/adodb/EditModeEnum.idl
Noel Power ed7012e9a3 add more missing adodb constants
Change-Id: Ia43e1c63aa3a1f72deaa20351f9fe59fcc021b62
2013-02-11 14:54:03 +00:00

19 lines
627 B
Plaintext

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
module ooo { module vba { module adodb {
constants EditModeEnum {
const long adEditAdd = 2;
const long adEditDelete = 4;
const long adEditInProgress = 1;
const long adEditNone = 0;
};
}; }; };
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */