Commit 664b5cb0 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

include: Add enum DBPROPFLAGSENUM.

parent 12f5fa1f
......@@ -95,6 +95,24 @@ typedef struct tagDBPROPSET {
typedef DWORD DBPROPFLAGS;
enum DBPROPFLAGSENUM
{
DBPROPFLAGS_NOTSUPPORTED = 0x0000,
DBPROPFLAGS_COLUMN = 0x0001,
DBPROPFLAGS_DATASOURCE = 0x0002,
DBPROPFLAGS_DATASOURCECREATE = 0x0004,
DBPROPFLAGS_DATASOURCEINFO = 0x0008,
DBPROPFLAGS_DBINIT = 0x0010,
DBPROPFLAGS_INDEX = 0x0020,
DBPROPFLAGS_ROWSET = 0x0040,
DBPROPFLAGS_TABLE = 0x0080,
DBPROPFLAGS_COLUMNOK = 0x0100,
DBPROPFLAGS_READ = 0x0200,
DBPROPFLAGS_WRITE = 0x0400,
DBPROPFLAGS_REQUIRED = 0x0800,
DBPROPFLAGS_SESSION = 0x1000,
};
typedef struct tagDBPROPINFO {
LPOLESTR pwszDescription;
DBPROPID dwPropertyID;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment