WPILibC++ 2025.1.1
Loading...
Searching...
No Matches
RuntimeCheck.h
Go to the documentation of this file.
1// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#pragma once
6
7#include <stdint.h>
8
9#include "wpi/string.h"
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15int32_t WPI_IsRuntimeValid(uint32_t* FoundMajor, uint32_t* FoundMinor,
16 uint32_t* ExpectedMajor, uint32_t* ExpectedMinor,
17 WPI_String* RuntimePath);
18
19#ifdef __cplusplus
20} // extern "C"
21#endif
int32_t WPI_IsRuntimeValid(uint32_t *FoundMajor, uint32_t *FoundMinor, uint32_t *ExpectedMajor, uint32_t *ExpectedMinor, WPI_String *RuntimePath)
A const UTF8 string.
Definition string.h:14