Add MATRIX_RECEIPT_TYPE_UNKNOWN

This commit is contained in:
Gergely Polonkai 2018-02-28 13:13:44 +01:00
parent bd6599a693
commit 260d37cc35
2 changed files with 2 additions and 0 deletions

View File

@ -159,6 +159,7 @@ G_DEFINE_QUARK(matrix-error-quark, matrix_error);
/**
* MatrixReceiptType:
* @MATRIX_RECEIPT_TYPE_UNKNOWN: the receipt type is unknown to this SDK
* @MATRIX_RECEIPT_TYPE_READ: indicate that the message has been read
*
* Receipt types of acknowledgment.

View File

@ -116,6 +116,7 @@ typedef enum {
} MatrixPusherKind;
typedef enum {
MATRIX_RECEIPT_TYPE_UNKNOWN,
MATRIX_RECEIPT_TYPE_READ
} MatrixReceiptType;