GetProcAddress() 공개 정적인 메소드

public static GetProcAddress ( string procedureName ) : IntPtr
procedureName string
리턴 System.IntPtr
예제 #1
0
파일: WGL.cs 프로젝트: damian-666/ReignSDK
 public static void Init()
 {
     SwapInterval = (SwapIntervalFunc)Marshal.GetDelegateForFunctionPointer(GL.GetProcAddress("wglSwapIntervalEXT"), typeof(SwapIntervalFunc));
 }
예제 #2
0
파일: GLX.cs 프로젝트: damian-666/ReignSDK
 public static void Init()
 {
     SwapIntervalMesa = (SwapIntervalMesaFunc)Marshal.GetDelegateForFunctionPointer(GL.GetProcAddress("glXSwapIntervalMESA"), typeof(SwapIntervalMesaFunc));
 }