aboutsummaryrefslogtreecommitdiffhomepage
path: root/midimonster.c
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-08-07 17:25:24 +0200
committercbdev <cb@cbcdn.com>2019-08-07 17:25:24 +0200
commit47a5f9a21bd661f9161d6175ebd074962daee255 (patch)
tree8faa7b645cd719eb64a82e41f2bc536579ef265b /midimonster.c
parent20a6882a063404858588596bd3f12bdd9e53460a (diff)
downloadmidimonster-47a5f9a21bd661f9161d6175ebd074962daee255.tar.gz
midimonster-47a5f9a21bd661f9161d6175ebd074962daee255.tar.bz2
midimonster-47a5f9a21bd661f9161d6175ebd074962daee255.zip
Fix export visibilities for GCC
Diffstat (limited to 'midimonster.c')
-rw-r--r--midimonster.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/midimonster.c b/midimonster.c
index df27ca3..1e47698 100644
--- a/midimonster.c
+++ b/midimonster.c
@@ -40,7 +40,7 @@ static void signal_handler(int signum){
shutdown_requested = 1;
}
-uint64_t MM_API mm_timestamp(){
+MM_API uint64_t mm_timestamp(){
return global_timestamp;
}
@@ -98,7 +98,7 @@ int mm_map_channel(channel* from, channel* to){
return 0;
}
-void map_free(){
+static void map_free(){
size_t u;
for(u = 0; u < mappings; u++){
free(map[u].to);
@@ -108,7 +108,7 @@ void map_free(){
map = NULL;
}
-int MM_API mm_manage_fd(int new_fd, char* back, int manage, void* impl){
+MM_API int mm_manage_fd(int new_fd, char* back, int manage, void* impl){
backend* b = backend_match(back);
size_t u;
@@ -158,7 +158,7 @@ int MM_API mm_manage_fd(int new_fd, char* back, int manage, void* impl){
return 0;
}
-void fds_free(){
+static void fds_free(){
size_t u;
for(u = 0; u < fds; u++){
//TODO free impl
@@ -172,7 +172,7 @@ void fds_free(){
fd = NULL;
}
-int MM_API mm_channel_event(channel* c, channel_value v){
+MM_API int mm_channel_event(channel* c, channel_value v){
size_t u, p;
//find mapped channels
@@ -213,7 +213,7 @@ int MM_API mm_channel_event(channel* c, channel_value v){
return 0;
}
-void event_free(){
+static void event_free(){
size_t u;
for(u = 0; u < sizeof(event_pool) / sizeof(event_collection); u++){
@@ -223,7 +223,7 @@ void event_free(){
}
}
-int usage(char* fn){
+static int usage(char* fn){
fprintf(stderr, "MIDIMonster v0.1\n");
fprintf(stderr, "Usage:\n");
fprintf(stderr, "\t%s <configfile>\n", fn);
@@ -252,7 +252,7 @@ static fd_set fds_collect(int* max_fd){
return rv_fds;
}
-int platform_initialize(){
+static int platform_initialize(){
#ifdef _WIN32
WSADATA wsa;
WORD version = MAKEWORD(2, 2);