[ntcore] Add ntcoreffi binary (#4471)

Co-authored-by: Peter Johnson <johnson.peter@gmail.com>
This commit is contained in:
Thad House
2022-10-15 01:02:38 -07:00
committed by GitHub
parent 1f45732700
commit 396143004c
5 changed files with 356 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
// Copyright (c) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#define AddFunctionToLink(FuncName) \
extern void FuncName(void); \
FuncName()
void DoNotCallMeImOnlyForLinking(void) {
#include "ExportedSymbols.h"
}