Differenze tra le versioni di "Ottenere l'orario locale comprensivo dei microsecondi con la funzione esterna g date time get microsecond() del API di GLIB"
Da Gambas-it.org - Wikipedia.
Riga 22: | Riga 22: | ||
dt = g_date_time_new_now_local() | dt = g_date_time_new_now_local() | ||
− | Print CDate(Time(Now)); "."; g_date_time_get_microsecond(dt) | + | Print CDate(Time(Now)); ".\e[31m"; g_date_time_get_microsecond(dt); "\e[0m" |
'''End''' | '''End''' |
Versione delle 07:19, 20 gen 2018
Per ottenere l'orario locale comprensivo dei microsecondi, si potrà utilizzare la funzione esterna "g_date_time_get_microsecond( )" del API di GLIB-2.0 .
E' necessario avere installata nel sistema e richiamare in Gambas la libreria dinamica condivisa: "libglib-2.0.so"
Mostriamo un semplice esempio pratico:
Library "libglib-2.0" ' GDateTime * g_date_time_new_now_local (void) ' Creates a GDateTime corresponding to this exact instant in the local time zone. Private Extern g_date_time_new_now_local() As Pointer ' gint g_date_time_get_microsecond (GDateTime *datetime) ' Retrieves the microsecond of the date represented by datetime. Private Extern g_date_time_get_microsecond(datetime As Pointer) As Integer Public Sub Main() Dim dt As Pointer dt = g_date_time_new_now_local() Print CDate(Time(Now)); ".\e[31m"; g_date_time_get_microsecond(dt); "\e[0m" End