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.
17 lines
486 B
17 lines
486 B
//
|
|
// Copyright (C) 1997, Microsoft Corporation. All Rights Reserved.
|
|
//
|
|
#ifndef __PUMSA_H__
|
|
#define __PUMSA_H__
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// Declaration of PumSa bit information
|
|
|
|
const BYTE _NOUN = 0x01;
|
|
const BYTE _VERB = 0x02;
|
|
const BYTE _ALONE = 0x04;
|
|
const BYTE _ADJECTIVE = 0x08;
|
|
const BYTE _PRONOUN = 0x10;
|
|
const BYTE _NUM = 0x20;
|
|
|
|
#endif
|