001// Copyright (c) FIRST and other WPILib contributors. 002// Open Source Software; you can modify and/or share it under the terms of 003// the WPILib BSD license file in the root directory of this project. 004 005package edu.wpi.first.hal; 006 007/** 008 * SystemServer JNI Functions. 009 * 010 * @see "SystemServer.h" 011 */ 012public class SystemServerJNI extends JNIWrapper { 013 /** 014 * Gets the system server NT handle. 015 * 016 * @return The system server NT handle 017 * @see "HAL_GetSystemServerHandle" 018 */ 019 public static native int getSystemServerHandle(); 020 021 /** Utility class. */ 022 private SystemServerJNI() {} 023}