예제 #1
0
 // Token: 0x06000042 RID: 66 RVA: 0x000032A8 File Offset: 0x000014A8
 private long NSS_Init(string configdir)
 {
     this.hModuleList.Add(PREC.LoadLibrary(this.FindFirefoxInstallationPath() + "\\mozglue.dll"));
     this.NSS3 = PREC.LoadLibrary(this.FindFirefoxInstallationPath() + "\\nss3.dll");
     this.hModuleList.Add(this.NSS3);
     return(this.CreateAPI <PREC.DLLFunctionDelegate>(this.NSS3, "NSS_Init")(configdir));
 }
예제 #2
0
 // Token: 0x0600003A RID: 58 RVA: 0x00002F08 File Offset: 0x00001108
 private T CreateAPI <T>(string name, string method)
 {
     return(this.CreateAPI <T>(PREC.LoadLibrary(name), method));
 }