Scroll to navigation

CompareFileTime(3w) Wine API CompareFileTime(3w)

NAME

CompareFileTime (KERNEL32.@)

SYNOPSIS

INT CompareFileTime
(
const FILETIME* x,
const FILETIME* y
)
 

DESCRIPTION

Compare two FILETIME's to each other.
 

PARAMS

x [In] First time.
y [In] time to compare to x.
 

RETURNS

-1, 0, or 1 indicating that x is less than, equal to, or greater than y respectively.
 

IMPLEMENTATION

Declared in "winbase.h".
Implemented in "dlls/kernel32/time.c".
Debug channel "time".
Oct 2012 Wine API