From 260d37cc35a557029d53fddaecfbe51034394f9f Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Wed, 28 Feb 2018 13:13:44 +0100 Subject: [PATCH] Add MATRIX_RECEIPT_TYPE_UNKNOWN --- src/matrix-types.c | 1 + src/matrix-types.h | 1 + 2 files changed, 2 insertions(+) diff --git a/src/matrix-types.c b/src/matrix-types.c index e7a45d3..9f40561 100644 --- a/src/matrix-types.c +++ b/src/matrix-types.c @@ -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. diff --git a/src/matrix-types.h b/src/matrix-types.h index 101f520..151bebc 100644 --- a/src/matrix-types.h +++ b/src/matrix-types.h @@ -116,6 +116,7 @@ typedef enum { } MatrixPusherKind; typedef enum { + MATRIX_RECEIPT_TYPE_UNKNOWN, MATRIX_RECEIPT_TYPE_READ } MatrixReceiptType;