Example #1
0
 public void AuthOutputLogPath(string fileName, IntPtr userDataPtr, AuthLogPathCb callback)
 {
     AuthOutputLogPathNative(fileName, userDataPtr, callback);
 }
Example #2
0
 public static extern void AuthOutputLogPathNative(string fileName, IntPtr userDataPtr, AuthLogPathCb callback);
Example #3
0
 public void AuthOutputLogPath(string fileName, AuthLogPathCb callback)
 {
     AuthOutputLogPathNative(fileName, callback.ToHandlePtr(), OnAuthLogPathCb);
 }