18 lines
486 B
C
18 lines
486 B
C
//
|
|
// 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
|