Changes between Version 3 and Version 4 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont


Ignore:
Timestamp:
08/24/10 16:06:02 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/ReadFont

    v3 v4  
    33
    44{{{
     5int ReadFont(int nFont, const string& strFilename);
     6
    57int ReadFont(int nFont, const char* pszFilename);
    6 
    7 int ReadFont(int nFont, const std::string& strFilename);
    88}}}
    99
     
    2323
    2424{{{
    25 ReadFont(11, "/mnt/nand/fonts/Font788_8x2.fnt");
     25string strFontFile = "/mnt/nand/fonts/Font788_8x2.fnt";
     26ReadFont(11, strFontFile);
    2627}}}
    2728
    2829{{{
    29 string strFontFile = "/mnt/nand/fonts/Font788_8x2.fnt";
    30 ReadFont(11, strFontFile);
     30ReadFont(11, "/mnt/nand/fonts/Font788_8x2.fnt");
    3131}}}
    3232