mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
465 B
28 lines
465 B
/*
|
|
* dats.hxx
|
|
*
|
|
*
|
|
* Copyright (c) 1998 Microsoft Corporation
|
|
*
|
|
* PURPOSE: Defines the global list of Data Attributes (dats).
|
|
*
|
|
*
|
|
* OWNER: brentp
|
|
*/
|
|
|
|
#ifndef DATS_HXX
|
|
#define DATS_HXX
|
|
|
|
enum DAT
|
|
{
|
|
datNil = -1,
|
|
datNumeric,
|
|
datString,
|
|
datString1, // Just for test purpose have different datString.
|
|
datString2,
|
|
datString3,
|
|
datDate,
|
|
datMax
|
|
};
|
|
|
|
#endif //DATS_HXX
|