KCssStartTime

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 KCssStartTime(              /* get start time */
   KCssHandle aHandle,                      /* CSS handle */
   long *aHour,                             /* hour 0...23 (NULL = not required) */
   long *aMinute,                           /* minute 0...59 (NULL = not required) */
   long *aSecond                            /* second 0...59 (NULL = not required) */
);

Get CSS start time (time of KCssOpen call)

Example:

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