Hello,
I'm am trying to integrate the ZZip compression library into my wxWindows program, but I'm having a great deal of difficulty doing this.
For my input file names, I am using a wxArrayString to store them, but the ZZip library asks for only "char" variables for the filenames. Is there any way that I can convert the wxStrings in the array to "char"?
Any help would be greatly appreciated.
Regards, econder
Here is a piece of the ZZip code I'm trying to integrate:
__declspec (dllimport) int OpenArchive(actions action,
char *filename,
info_s *info);
This is from the header file. As you can see, I need a char variable for the filename. I hope this helps.
|