2019-09-28 11:34:46 -07:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-06-26 17:12:55 -07:00
|
|
|
/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */
|
2019-09-28 11:34:46 -07:00
|
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
|
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
|
|
|
/* the project. */
|
|
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
|
|
2020-06-26 17:12:55 -07:00
|
|
|
namespace hal {
|
2019-09-28 11:34:46 -07:00
|
|
|
namespace sim {
|
|
|
|
|
bool InitializeSimDeviceDataJNI(JNIEnv* env);
|
|
|
|
|
void FreeSimDeviceDataJNI(JNIEnv* env);
|
|
|
|
|
} // namespace sim
|
2020-06-26 17:12:55 -07:00
|
|
|
} // namespace hal
|