JackUtils 0.5
Provides simplified Jack API for clients :)
Loading...
Searching...
No Matches
ju_defs.h
Go to the documentation of this file.
1/* General definitions :p
2 * Copyright (C) UtoECat 2022. All rights Reserved!
3
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18#pragma once
19
27#include <stddef.h>
28#include <stdint.h>
29#include <stdlib.h>
30#include <string.h>
31#include <stdbool.h>
32
33#define JU_API
34#define JU_DEPRECATED
35#define JU_WEAK
36
41typedef signed long ju_ssize_t;
42
49 const char* name;
50 const char* description;
51 const char* author;
52 const char* license;
53 const char** contributors;
54 float version;
55 const char* source_url;
56};
57
58extern const struct program_info program_info;
signed long ju_ssize_t
Signed size type.
Definition: ju_defs.h:41
Structure required for custom cllients, that uses jackutils! It provides libjackutils with general in...
Definition: ju_defs.h:48
const char * author
Name of authors of your program.
Definition: ju_defs.h:51
float version
Version of your program.
Definition: ju_defs.h:54
const char ** contributors
Contributors of your program.
Definition: ju_defs.h:53
const char * name
Name of your program.
Definition: ju_defs.h:49
const char * license
License of your program.
Definition: ju_defs.h:52
const char * description
General description of your program.
Definition: ju_defs.h:50
const char * source_url
Url to your project page, github, etc.
Definition: ju_defs.h:55