Allowed this project to compile on Windows.

I was missing a c file for windows-specific builds.
This commit is contained in:
Markil3
2021-07-24 14:13:21 -07:00
parent adf4cea82c
commit 6a95966f9e

View File

@@ -0,0 +1,11 @@
/*
* Copyright (c) 2021 William Hubbard. All Rights Reserved.
*/
#include <jni.h>
#include <stdio.h>
int updatePlayer(JNIEnv *env, jobject obj, jobject stream, jshort numChannels, jshort bitsPerSample, jint sampleRate)
{
printf("Updating File\n");
return 0;
}