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;
12 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */