示例#1
0
 public void Init(IPlatform platform, string dll)
 {
     try
     {
         mPlatform = platform;
         mLibraryHandle = mPlatform.LoadDynamicLibrary(dll);
         InitMethods();
     }
     catch (Exception ex)
     {
         throw new JniException("Error loading vfprint.", ex);
     }
 }