public Unrar() { this.archivePathName = string.Empty; this.archiveHandle = new IntPtr(0); this.retrieveComment = true; this.password = string.Empty; this.comment = string.Empty; this.header = new RARHeaderDataEx(); this.destinationPath = string.Empty; this.callback = new UNRARCallback(this.RARCallback); }
private static extern void RARSetCallback(IntPtr hArcData, UNRARCallback callback, int userData);
public Unrar() { this.callback=new UNRARCallback(RARCallback); }
public Unrar() { this.callback = new UNRARCallback(RARCallback); }
public Unrar() { callback = RARCallback; }
public static extern void RARSetCallback(IntPtr hArcData, UNRARCallback callback, long userData);