When packing a file with a packer plugin the archive name is displayed in the pack dialog.
When using my plugin TotalSQX there is only the first character displayed instead of the whole path. The plugin is Unicode only.
Any ideas?
Pack/unpack files - archive name in dialog
Moderators: Hacker, petermad, Stefan2, white
Probably you're using non-Unicode callback so it finds end of string at the second byte of your path (which is zero byte).
Please check if you're exporting SetProcessDataProcW function:
Please check if you're exporting SetProcessDataProcW function:
Code: Select all
void __stdcall SetProcessDataProcW(HANDLE hArcData, tProcessDataProcW pProcessDataProc) {
TcProcessDataProcW=pProcessDataProc;
}