Interface ILibraryLoader
Interface for platform specific native interface to the library
Inherited Members
Namespace: WPIUtil.NativeUtilities
Assembly: FRC.WPIUtil.dll
Syntax
public interface ILibraryLoader : IFunctionPointerLoader
Properties
| Improve this Doc View SourceNativeLibraryHandle
Gets the native library handle for the library
Declaration
IntPtr NativeLibraryHandle { get; }
Property Value
Type | Description |
---|---|
IntPtr |
Methods
| Improve this Doc View SourceLoadLibrary(String)
Loads the library from the specified file name
Declaration
void LoadLibrary(string filename)
Parameters
Type | Name | Description |
---|---|---|
String | filename |
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 |
UnloadLibrary()
Unloads the native library
Declaration
void UnloadLibrary()