Quick News |
»19 February 2004
MiniSplit 1.3 released. Added suppport for large files.
Added template for many storage media.
28 December 2003
Kamus 1.1 released.
Kamus is an English-Indonesia dictionary.
22 December 2003
GameShock 1.3 released.
Changes: new help system, simplified find cheat interface...
(details)
27 October 2003
Marhaban ya Ramadhan. We moslems are now celebrating
the month of a thousand months.
11 October 2003
MiniSplit 1.2a released.
Bugs fixed: unable to complete file joining on Windows 9x...
(details)
|
|
|
 |
[fixed] Gameshock 1.3 unregistered: When run on first time, the program doesn't stop opening "this is the first time, do you want to read the tutorial?" questions... Have to kill the process to make it stop! Did it to me twice on three executions so far. Windows XP home running on a Compaq Presario 700 laptop. |
|
[fixed] Minisplitter works incorrectly with files > 4GB (or > 2 GB, I'm not sure). You need to use GetFileSizeEX, not GetFileSize in your function:
int FileSize (const
char *FileName, size_t *fsize) { HANDLE fh;
fh = CreateFile(FileName, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, 0); if (fh != INVALID_HANDLE_VALUE) { if (fsize != NULL) *fsize = GetFileSize(fh, NULL); CloseHandle(fh); return TRUE; } return FALSE; } |
|
Please enter descriptive message so we have greater chance to fix the bug. |
|
|
|
|