/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
module ooo { module vba { module adodb {
    constants PropertyAttributesEnum {
        const long adPropNotSupported = 0;
        const long adPropOptional = 2;
        const long adPropRead = 512;
        const long adPropRequired = 1;
        const long adPropWrite = 1024;
    };
}; }; };

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */