|
|
|
#1
|
||||
|
||||
|
Split and join files library
Hello people!
I created a library to merge the split files. (My first library) With this library you can split or join files. Update 1.01 add functions: - ProcIsRunning - CurrProcStop Update 1.02 changes: - Inplemented in function SplitFile varible to output files destination - fixed size limited on 2 GB. You can now use parts larger than 5 GB if necessary. - fixed return of function MergeFiles. Now returns "True" if size of the destination files is equal to the sum of the size of original part and the previous size of destination file before process. If anyone wants to test, and give some suggestion. If anyone finds this DLL useful post on another topic. PS: To analyze the performance of the library it is good to test on large files. I hope it's useful. Last edited by Cesar82; 05-06-2017 at 19:24. Reason: Added update 1.02 |
| Sponsored Links |
|
#2
|
||||
|
||||
|
Quote:
|
|
#3
|
||||
|
||||
|
You are using an Enhanced Edition version of Inno Setup.
The Inno Setup Enhanced Edition already has the TMsg type. To fix this error simply delete this part (This 9 lines). The Standard version of Inno Setup needs this part. Code:
type
TMsg = record
hWnd: HWND;
message: Word;
wParam: Word;
lParam: LongWord;
Time: TFileTime;
pt: TPoint;
end;
Like this: Code:
#ifndef IS_ENHANCED
type
TMsg = record
hWnd: HWND;
message: Word;
wParam: Word;
lParam: LongWord;
Time: TFileTime;
pt: TPoint;
end;
#endif
Last edited by Cesar82; 04-06-2017 at 13:37. |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| BlackBox v2 | y_thelastknight | Conversion Tutorials | 567 | 11-03-2025 07:16 |
| Useful Dll for Inno Setup users | peterf1999 | Conversion Tutorials | 88 | 01-12-2017 16:00 |
| Total War Collection - 6xDVD9 [LZMA + INNO SETUP + CIU] | REV0 | PC Games - CD/DVD Conversions | 1 | 28-06-2015 17:00 |
| Total War Collection - 2xBLURAY [LZMA + INNO SETUP + CIU] | REV0 | PC Games - CD/DVD Conversions | 2 | 09-01-2013 18:02 |
| Total War Collection - 11xDVD5 [LZMA + INNO SETUP + CIU] | REV0 | PC Games - CD/DVD Conversions | 0 | 09-01-2013 16:38 |