Rename matrix-api-types.[ch] to matrix-types.[ch]
This commit is contained in:
parent
19a5ab01a0
commit
fbb24e3acc
@ -18,8 +18,8 @@
|
||||
|
||||
<chapter>
|
||||
<title>Matrix Client</title>
|
||||
<xi:include href="xml/matrix-types.xml"/>
|
||||
<xi:include href="xml/matrix-client.xml"/>
|
||||
<xi:include href="xml/matrix-api-types.xml"/>
|
||||
<xi:include href="xml/matrix-api.xml"/>
|
||||
<xi:include href="xml/matrix-http-api.xml"/>
|
||||
<xi:include href="xml/matrix-version.xml"/>
|
||||
|
@ -18,8 +18,8 @@ matrix_client_get_type
|
||||
</SECTION>
|
||||
|
||||
<SECTION>
|
||||
<FILE>matrix-api-types</FILE>
|
||||
<TITLE>Fundamental types for MatrixAPI</TITLE>
|
||||
<FILE>matrix-types</FILE>
|
||||
<TITLE>Fundamental types for the Matrix GLib SDK</TITLE>
|
||||
|
||||
<SUBSECTION>
|
||||
MatrixAPIError
|
||||
|
@ -4,8 +4,8 @@ lib_LTLIBRARIES = libmatrix-glib-0.0.la
|
||||
bin_PROGRAMS = test-api-client
|
||||
|
||||
INST_H_SRC_FILES = \
|
||||
matrix-types.h \
|
||||
matrix-api.h \
|
||||
matrix-api-types.h \
|
||||
matrix-http-api.h \
|
||||
matrix-client.h \
|
||||
$(NULL)
|
||||
@ -16,14 +16,14 @@ INST_H_BUILT_FILES = \
|
||||
$(NULL)
|
||||
|
||||
matrix_enum_headers = \
|
||||
matrix-types.h \
|
||||
matrix-api.h \
|
||||
matrix-api-types.h \
|
||||
$(NULL)
|
||||
|
||||
libmatrix_glib_0_0_la_SOURCES = \
|
||||
matrix-version.c \
|
||||
matrix-types.c \
|
||||
matrix-api.c \
|
||||
matrix-api-types.c \
|
||||
matrix-http-api.c \
|
||||
matrix-enumtypes.c \
|
||||
utils.c \
|
||||
|
@ -22,7 +22,7 @@
|
||||
#include <glib-object.h>
|
||||
#include <json-glib/json-glib.h>
|
||||
|
||||
#include "matrix-api-types.h"
|
||||
#include "matrix-types.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
@ -16,17 +16,16 @@
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#include "matrix-api-types.h"
|
||||
#include "matrix-types.h"
|
||||
#include "matrix-enumtypes.h"
|
||||
#include "utils.h"
|
||||
|
||||
/**
|
||||
* SECTION:matrix-api-types
|
||||
* SECTION:matrix-types
|
||||
* @title: Generic types
|
||||
* @short_description: Generic types for all #MatrixAPI
|
||||
* implementations
|
||||
* @short_description: Generic types for Matrix GLib SDK calls
|
||||
*
|
||||
* These are the types used by all #MatrixAPI implementations for
|
||||
* These are the generic types used by many SDK calls for
|
||||
* communication with the homeserver.
|
||||
*/
|
||||
|
@ -16,8 +16,8 @@
|
||||
* <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef __MATRIX_API_TYPES_H__
|
||||
#define __MATRIX_API_TYPES_H__
|
||||
#ifndef __MATRIX_TYPES_H__
|
||||
#define __MATRIX_TYPES_H__
|
||||
|
||||
#include <glib-object.h>
|
||||
#include <json-glib/json-glib.h>
|
||||
@ -309,4 +309,4 @@ gchar *matrix_api_state_event_get_json_data(MatrixAPIStateEvent *event,
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __MATRIX_API_TYPES_H__ */
|
||||
#endif /* __MATRIX_TYPES_H__ */
|
Loading…
Reference in New Issue
Block a user