Changes between Version 1 and Version 2 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr
- Timestamp:
- 08/19/10 18:30:13 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/Display/DisplayStr
v1 v2 4 4 {{{ 5 5 void DisplayStr(int nFont, int x, int y, int dsplogic, const char* pszText); 6 7 void DisplayStr(int nFont, int x, int y, int dsplogic, const std::string& strText); 6 8 }}} 7 9 … … 12 14 * y - Y coordinate (0 - 479) 13 15 * 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 15 18 16 19 == Return Value == … … 26 29 }}} 27 30 31 {{{ 32 string strMsg = "Hello World"; 33 DisplayStr(4, 10, 10, DSP_LOGIC_XOR, strMsg); 34 }}} 35 28 36 == See Also == 29 37