Function
GLibEqualFunc
Declaration
gboolean
(*GEqualFunc)(
gconstpointera,
gconstpointerb
)
Description [src]
Specifies the type of a function used to test two values for
equality. The function should return TRUE if both values are equal
and FALSE otherwise.
Parameters
a-
Type:
gconstpointerA value.
The argument can beNULL.The data is owned by the caller of the function. b-
Type:
gconstpointerA value to compare with.
The argument can beNULL.The data is owned by the caller of the function.
Return value
Type: gboolean
TRUE if a = b; FALSE otherwise.