Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr


Ignore:
Timestamp:
08/19/10 18:30:13 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

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

    v1 v2  
    44{{{
    55void DisplayStr(int nFont, int x, int y, int dsplogic, const char* pszText);
     6
     7void DisplayStr(int nFont, int x, int y, int dsplogic, const std::string& strText);
    68}}}
    79
     
    1214 * y - Y coordinate (0 - 479)
    1315 * dsplogic - DSP_LOGIC_OVERWRITE, DSP_LOGIC_SET, DSP_LOGIC_XOR, or DSP_LOGIC_RESET
    14  * pszText - character array pointer such as string literal "Hello World"
     16 * pszText - character array pointer such as string literal "Hello World" to display
     17 * strText - string reference to string to display
    1518
    1619== Return Value ==
     
    2629}}}
    2730
     31{{{
     32string strMsg = "Hello World";
     33DisplayStr(4, 10, 10, DSP_LOGIC_XOR, strMsg);
     34}}}
     35
    2836== See Also ==
    2937