Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:docs:fapi:dosgetdatetime [2018/08/31 07:28] – created prokushev | en:docs:fapi:dosgetdatetime [2021/12/05 09:57] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{page> | ||
+ | |||
+ | ====== DosGetDateTime ====== | ||
This call gets the current date and time maintained by the operating system. | This call gets the current date and time maintained by the operating system. | ||
- | ==Syntax== | + | ===== Syntax ===== |
- | | + | |
- | ==Parameters== | + | <code c> |
- | ;DateTime (PDATETIME) - output : Address of the date and time structure: | + | DosGetDateTime (DateTime) |
- | ::hours (UCHAR) - Current hour | + | </ |
- | ::minutes (UCHAR) - Current minute | + | |
- | ::seconds (UCHAR) - Current second | + | ===== Parameters ===== |
- | ::hundredths (UCHAR) - Current hundredth of a second | + | |
- | ::day (UCHAR) - Current day | + | |
- | ::month (UCHAR) - Current month | + | |
- | ::year (USHORT) - Current year | + | |
- | ::timezone (SHORT) - Minutes west of UTC (Universal Time Coordinate) | + | |
- | ::weekday (UCHAR) - Current day of the week. Sunday is 0. | + | |
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | |||
+ | ===== Return Code ===== | ||
+ | |||
+ | rc ([[USHORT]]) - return | ||
- | ==Return Code== | ||
- | rc (USHORT) - return | ||
Return code description is: | Return code description is: | ||
- | * 0 NO_ERROR | ||
- | ==Remarks== | + | * 0 NO_ERROR |
- | The dayofweek value is based on Sunday equal to zero. The value of timezone is the difference in minutes between the current time zone and UTC. This number is positive if it is earlier than UTC and negative if it is later than UTC. For Eastern Standard Time, this value is 300 (5 hours earlier than UTC). | + | |
- | If the application is executing in the OS/2 environment, | + | ===== Remarks ===== |
- | ==Example Code== | + | The dayofweek value is based on Sunday equal to zero. The value of timezone |
- | ===C Binding=== | + | |
- | < | + | |
- | typedef struct _DATETIME { /* date */ | + | |
- | UCHAR | + | |
- | UCHAR | + | |
- | UCHAR | + | |
- | UCHAR | + | |
- | UCHAR | + | |
- | UCHAR | + | |
- | USHORT | + | |
- | SHORT timezone; / | + | |
- | UCHAR | + | |
- | } DATETIME; | + | |
- | #define INCL_DOSDATETIME | + | If the application is executing in the OS/2 environment, |
- | USHORT | + | ===== Example Code ===== |
- | PDATETIME DateTime; | + | |
- | USHORT | + | |
- | </ | + | |
- | This example gets the current time and date. | + | |
- | < | + | |
- | #define INCL_DOSDATETIME | + | |
- | DATETIME DateBuffer; | + | ==== C Binding ==== |
- | USHORT | + | |
- | rc = DosGetDateTime(& | + | <code c> |
- | </PRE> | + | typedef struct _DATETIME { /* date */ |
- | The following example obtains and prints date and time information. It then changes the system date to 5/10/1987 and prints the updated information. | + | UCHAR |
+ | UCHAR | ||
+ | UCHAR | ||
+ | UCHAR | ||
+ | UCHAR | ||
+ | UCHAR | ||
+ | USHORT | ||
+ | SHORT | ||
+ | UCHAR | ||
+ | } DATETIME; | ||
+ | |||
+ | #define INCL_DOSDATETIME | ||
+ | |||
+ | USHORT | ||
+ | PDATETIME DateTime; | ||
+ | | ||
- | <PRE> | + | </code> |
- | #define INCL_DOSDATETIME | + | |
- | #include <os2.h> | + | |
- | main() | + | This example gets the current |
- | { | + | |
- | DATETIME | + | |
- | USHORT | + | |
- | rc = DosGetDateTime(& | + | <code c> |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | |
- | | + | rc = DosGetDateTime(&DateBuffer); /* Date/Time structure */ |
- | | + | </ |
- | rc = DosSetDateTime(&DateTime); /* Address of d/t structure */ | + | |
- | | + | The following example obtains and prints date and time information. It then changes the system date to 5/10/1987 and prints the updated information. |
- | } | + | |
- | </PRE> | + | |
- | ===MASM Binding=== | + | <code c> |
- | <PRE> | + | # |
- | DATETIME struc | + | |
- | | + | |
- | | + | |
- | | + | { |
- | | + | DATETIME |
- | | + | |
- | | + | |
- | | + | rc = DosGetDateTime(& |
- | | + | |
- | | + | |
- | DATETIME ends | + | |
+ | | ||
+ | DateTime.year = 1987; | ||
+ | | ||
+ | | ||
+ | | ||
+ | | ||
+ | } | ||
+ | </ | ||
- | EXTRN DosGetDateTime: | + | ==== MASM Binding ==== |
- | INCL_DOSDATETIME | + | |
- | PUSH@ OTHER | + | <code asm> |
- | CALL | + | DATETIME struc |
+ | date_hours | ||
+ | date_minutes | ||
+ | date_seconds | ||
+ | date_hundredths db ? ;current hundredths of a second | ||
+ | date_day | ||
+ | date_month | ||
+ | date_year | ||
+ | date_timezone | ||
+ | date_weekday | ||
+ | DATETIME ends | ||
+ | |||
+ | EXTRN DosGetDateTime: | ||
+ | INCL_DOSDATETIME | ||
+ | |||
+ | | ||
+ | CALL | ||
+ | </ | ||
Returns WORD | Returns WORD | ||
- | </ | ||
- | ====== Note ====== | + | ===== Note ===== |
Text based on [[http:// | Text based on [[http:// |