LoadLibrary() private method

private LoadLibrary ( string lpFileName ) : IntPtr
lpFileName string
return IntPtr
示例#1
0
 private Win32()
 {
     opengl32Library = Win32.LoadLibrary(opengl32);
 }
示例#2
0
 /// <summary>
 /// Initializes the <see cref="Win32"/> class.
 /// </summary>
 static Win32()
 {
     //  Load the openGL library - without this wgl calls will fail.
     opengl32Library = Win32.LoadLibrary(OpenGL32);
 }
示例#3
0
 private OpenGL32Library()
 {
     libPtr = Win32.LoadLibrary(Win32.opengl32);
 }