From 6a95966f9e82fe073bed6f85facc660b312c704c Mon Sep 17 00:00:00 2001 From: Markil3 <75867393+Markil3@users.noreply.github.com> Date: Sat, 24 Jul 2021 14:13:21 -0700 Subject: [PATCH] Allowed this project to compile on Windows. I was missing a c file for windows-specific builds. --- player/src/main/c/player_win.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 player/src/main/c/player_win.c diff --git a/player/src/main/c/player_win.c b/player/src/main/c/player_win.c new file mode 100644 index 0000000..5b5bedb --- /dev/null +++ b/player/src/main/c/player_win.c @@ -0,0 +1,11 @@ +/* + * Copyright (c) 2021 William Hubbard. All Rights Reserved. + */ +#include +#include + +int updatePlayer(JNIEnv *env, jobject obj, jobject stream, jshort numChannels, jshort bitsPerSample, jint sampleRate) +{ + printf("Updating File\n"); + return 0; +} \ No newline at end of file