Mercurial > hg > openttd
view src/string_type.h @ 11436:caf4456fbbf3 draft
(svn r15794) -Codechange: remove the DoDrawString part of the old text drawing API
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sat, 21 Mar 2009 22:46:17 +0000 |
parents | 6385dffc0b37 |
children | bc7926153e19 |
line wrap: on
line source
/* $Id$ */ /** @file string_type.h Types for strings. */ #ifndef STRING_TYPE_H #define STRING_TYPE_H /** * Valid filter types for IsValidChar. */ enum CharSetFilter { CS_ALPHANUMERAL, ///< Both numeric and alphabetic and spaces and stuff CS_NUMERAL, ///< Only numeric ones CS_ALPHA, ///< Only alphabetic values }; typedef uint32 WChar; #endif /* STRING_TYPE_H */