dee-model.h | dee-model.h | |||
---|---|---|---|---|
skipping to change at line 67 | skipping to change at line 67 | |||
/** | /** | |||
* DeeModelTag: | * DeeModelTag: | |||
* | * | |||
* The DeeModelTag structure is private and should only be used with the | * The DeeModelTag structure is private and should only be used with the | |||
* provided #DeeModel API. It is owned by DeeModel and should not be freed. | * provided #DeeModel API. It is owned by DeeModel and should not be freed. | |||
**/ | **/ | |||
typedef struct _DeeModelTag DeeModelTag; | typedef struct _DeeModelTag DeeModelTag; | |||
/** | /** | |||
* DeeCompareRowFunc: | * DeeCompareRowFunc: | |||
* @row1: The model being indexed | * @row1: (array): The model being indexed | |||
* @row2: The row to extract terms for | * @row2: (array): The row to extract terms for | |||
* @user_data: (closure): User data to pass to comparison function | * @user_data: (closure): User data to pass to comparison function | |||
* | * | |||
* Compares @row1 and @row2. Mainly used with dee_model_insert_sorted() and | * Compares @row1 and @row2. Mainly used with dee_model_insert_sorted() and | |||
* dee_model_find_sorted(). | * dee_model_find_sorted(). | |||
* | * | |||
* Returns: -1, 0, or 1 if @row1 is respectively less than, equal, or great er | * Returns: -1, 0, or 1 if @row1 is respectively less than, equal, or great er | |||
* than @row2. | * than @row2. | |||
*/ | */ | |||
typedef gint (*DeeCompareRowFunc) (GVariant** row1, | typedef gint (*DeeCompareRowFunc) (GVariant** row1, | |||
GVariant** row2, | GVariant** row2, | |||
End of changes. 1 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||