KCssStartDate

C Styled Script
Reference Manual

<< Back  End  Next >>
 
 
INDEX
Introduction
Installation
Using The CSS Executive
Language
Directives
System Library
String Library
Regular Expression Lib.
File Library
Database Library
C API
   Embedding CSS
   Writing Libraries
   API Reference
      KCssAddFunc
      KCssCall
      KCssClose
      KCssEnableTrace
      KCssGet
      KCssGetError
      KCssGetResult
      KCssIsTrace
      KCssLoadLibrary
      KCssLoadScriptFile
      KCssLoadScriptMem
      KCssOpen
      KCssSet
      KCssSetError
      KCssSetResult
      KCssShow
      KCssStartDate
      KCssStartTime
      KCssVarResize
      KCssVarSizeof
C++ API
CSS Links
  
long KCssAPI KCssStartDate(              /* get start date */
   KCssHandle aHandle,                      /* CSS handle */
   long *aYear,                             /* year (NULL = not required) */
   long *aMonth,                            /* month 1...12 (NULL = not required) */
   long *aDay                               /* day 1...31 (NULL = not required) */
);

Get CSS start date (date of KCssOpen call)

Example:

long errs, year, month, day;
errs = KCssStartDate(css, &year, &month, &day);
if (errs) .... // error handling
cout << "CSS was started at "
     << month << '/' << day << '/' << year
     << endl;
 Copyright © IBK LandquartLast revised by Peter Koch, 24.02.00<< Back  Top  Next >>