Class MacOsLibraryLoader
This class handles native libraries on Mac OS
Inheritance
MacOsLibraryLoader
Assembly: FRC.WPIUtil.dll
Syntax
public class MacOsLibraryLoader : ILibraryLoader, IFunctionPointerLoader
Properties
|
Improve this Doc
View Source
NativeLibraryHandle
Gets the native library handle for the library
Declaration
public IntPtr NativeLibraryHandle { get; }
Property Value
Explicit Interface Implementations
|
Improve this Doc
View Source
IFunctionPointerLoader.GetProcAddress(String)
Declaration
IntPtr IFunctionPointerLoader.GetProcAddress(string name)
Parameters
Type |
Name |
Description |
String |
name |
|
Returns
|
Improve this Doc
View Source
ILibraryLoader.LoadLibrary(String)
Declaration
void ILibraryLoader.LoadLibrary(string filename)
Parameters
Type |
Name |
Description |
String |
filename |
|
|
Improve this Doc
View Source
ILibraryLoader.TryLoadLibrary(String)
Try to load a native library from a path
Declaration
bool ILibraryLoader.TryLoadLibrary(string filename)
Parameters
Type |
Name |
Description |
String |
filename |
|
Returns
|
Improve this Doc
View Source
ILibraryLoader.UnloadLibrary()
Declaration
void ILibraryLoader.UnloadLibrary()
Implements