GCC Code Coverage Report


Directory: src/
File: src/msg-error.c
Date: 2024-05-18 00:53:33
Exec Total Coverage
Lines: 2 2 100.0%
Functions: 1 1 100.0%
Branches: 0 0 -%

Line Branch Exec Source
1 /* Copyright 2022 Jan-Michael Brummer
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU Lesser General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17 #include "config.h"
18
19 #include "msg-error.h"
20
21
22 /**
23 * SECTION:msg-error
24 * @title: MsgError
25 * @short_description: Error codes.
26 * @include: msg/msg.h
27 *
28 * Error codes used to represent errors thrown by the MS Graph APIs.
29 */
30 GQuark
31 4 msg_error_quark (void)
32 {
33 4 return g_quark_from_static_string ("msg-error-quark");
34 }
35