src/string_type.h
changeset 8710 52015340050c
parent 8609 8c0c3e9dd6a0
equal deleted inserted replaced
8709:4187ad809fe7 8710:52015340050c
       
     1 /* $Id$ */
       
     2 
       
     3 /** @file string_type.h Types for strings. */
       
     4 
       
     5 #ifndef STRING_TYPE_H
       
     6 #define STRING_TYPE_H
       
     7 
       
     8 /**
       
     9  * Valid filter types for IsValidChar.
       
    10  */
       
    11 enum CharSetFilter {
       
    12 	CS_ALPHANUMERAL,      ///< Both numeric and alphabetic and spaces and stuff
       
    13 	CS_NUMERAL,           ///< Only numeric ones
       
    14 	CS_ALPHA,             ///< Only alphabetic values
       
    15 };
       
    16 
       
    17 typedef uint32 WChar;
       
    18 
       
    19 #endif /* STRING_TYPE_H */