tdf#162786, tdf#161947: Add support for setuptools and pip
[LibreOffice.git] / oovbaapi / ooo / vba / dao / RecordStatusEnum.idl
blob7d1e731f60184ea5d89cda5c433ea2e8d0757f60
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 module ooo { module vba { module dao {
3 constants RecordStatusEnum {
4 const long dbRecordDBDeleted = 4;
5 const long dbRecordDeleted = 3;
6 const long dbRecordModified = 1;
7 const long dbRecordNew = 2;
8 const long dbRecordUnmodified = 0;
9 };
10 }; }; };
12 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */