What happened to GeGetSysTime()?

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 05/11/2011 at 09:35, xxxxxxxx wrote:

User Information:
Cinema 4D Version:   12/13 
Platform:   Windows  ; Mac  ;  Mac OSX  ; 
Language(s) :     C++  ;

---------
i cannot find an equivalent method in the R12 nor in the R13 docs.

thanks for your help.

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 05/11/2011 at 13:17, xxxxxxxx wrote:

Hi,

You have to use the functions from the C Time Library. Here is a link to a reference : http://www.cplusplus.com/reference/clibrary/ctime/
Take a look at the example for localtime() :  http://www.cplusplus.com/reference/clibrary/ctime/localtime/
The tm structure returned by localtime() contains the time information : second, minute, day, month, year etc.

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 05/11/2011 at 13:37, xxxxxxxx wrote:

Please use GetDateTimeNow of the CINEMA 4D API. It fills a DateTime structure with the current system time.

cheers,
Matthias

THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED

On 06/11/2011 at 06:05, xxxxxxxx wrote:

done, working, thank you.