Closed electricface closed 10 years ago
static void DaoTime_Equal( DaoProcess proc, DaoValue p[], int N ) { DaoTime a = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoTime b = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoProcess_PutInteger( proc, a->value == b->value ); }
static void DaoTime_NotEqual( DaoProcess proc, DaoValue p[], int N ) { DaoTime a = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoTime b = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoProcess_PutInteger( proc, a->value != b->value ); }
Right, thanks. Fixed.
static void DaoTime_Equal( DaoProcess proc, DaoValue p[], int N ) { DaoTime a = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoTime b = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoProcess_PutInteger( proc, a->value == b->value ); }
static void DaoTime_NotEqual( DaoProcess proc, DaoValue p[], int N ) { DaoTime a = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoTime b = (DaoTime)DaoValue_TryGetCdata( p[0] ); DaoProcess_PutInteger( proc, a->value != b->value ); }