Show / Hide Table of Contents

Interface ILibraryLoader

Interface for platform specific native interface to the library

Inherited Members
IFunctionPointerLoader.GetProcAddress(String)
Namespace: WPIUtil.NativeUtilities
Assembly: FRC.WPIUtil.dll
Syntax
public interface ILibraryLoader : IFunctionPointerLoader

Properties

| Improve this Doc View Source

NativeLibraryHandle

Gets the native library handle for the library

Declaration
IntPtr NativeLibraryHandle { get; }
Property Value
Type Description
IntPtr

Methods

| Improve this Doc View Source

LoadLibrary(String)

Loads the library from the specified file name

Declaration
void LoadLibrary(string filename)
Parameters
Type Name Description
String filename
| Improve this Doc View Source

TryLoadLibrary(String)

Tires to load library from specified file name

Declaration
bool TryLoadLibrary(string filename)
Parameters
Type Name Description
String filename
Returns
Type Description
Boolean
| Improve this Doc View Source

UnloadLibrary()

Unloads the native library

Declaration
void UnloadLibrary()
  • Improve this Doc
  • View Source
Back to top Copyright © 2017 RobotDotNet