Changes between Initial Version and Version 1 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetDateStr


Ignore:
Timestamp:
08/20/10 14:53:21 (14 years ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetDateStr

    v1 v1  
     1= GetDateStr =
     2Get the date
     3
     4{{{
     5string GetDateStr(void);
     6
     7char* GetDateStr(char* pszBuffer);
     8}}}
     9
     10== Parameters ==
     11
     12 * pszBuffer - buffer to hold formatted time, application must insure that this buffer is large enough.
     13
     14== Return Value ==
     15
     16 * Returns the date formatted as "MM/DD/YYYY" or "DD/MM/YYYY", or "YYYY-MM-DD", based on boot loader preferences.
     17
     18== Remarks ==
     19
     20
     21== Examples ==
     22
     23{{{
     24string strDate = GetDateStr();
     25DisplayText(10, 10, strDate);
     26}}}
     27
     28{{{
     29char szDate[20];
     30GetDateStr(szDate);
     31DisplayText(10, 10, szDate);
     32}}}
     33
     34== See Also ==
     35
     36 * [http://tech.825spectrum.com/trac/wiki/Docs/Prog/Manual/ApplicationLibraries/lib825ev/Time/GetTimeStr GetTimeStr]