Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont
- Timestamp:
- 08/24/10 16:06:02 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont
v3 v4 3 3 4 4 {{{ 5 int ReadFont(int nFont, const string& strFilename); 6 5 7 int ReadFont(int nFont, const char* pszFilename); 6 7 int ReadFont(int nFont, const std::string& strFilename);8 8 }}} 9 9 … … 23 23 24 24 {{{ 25 ReadFont(11, "/mnt/nand/fonts/Font788_8x2.fnt"); 25 string strFontFile = "/mnt/nand/fonts/Font788_8x2.fnt"; 26 ReadFont(11, strFontFile); 26 27 }}} 27 28 28 29 {{{ 29 string strFontFile = "/mnt/nand/fonts/Font788_8x2.fnt"; 30 ReadFont(11, strFontFile); 30 ReadFont(11, "/mnt/nand/fonts/Font788_8x2.fnt"); 31 31 }}} 32 32