View Single Post
Old 06-16-2003, 07:26 PM  
Mouton
Posse Member
 
Join Date: Dec 2002
Posts: 1,956
Default

Thx.

Off the record, for those who that might interest:

Code:
//Allocate  = GetProcAddress(hShell32, "SHAllocShared");
Allocate  = GetProcAddress(hShell32, (char *)520);
//Free    = GetProcAddress(hShell32, "SHFreeShared");
Free    = GetProcAddress(hShell32, (char *)523);
//Unlock    = GetProcAddress(hShell32, "SHUnlockShared");
Unlock    = GetProcAddress(hShell32, (char *)522);
//Lock    = GetProcAddress(hShell32, "SHLockShared");
Lock    = GetProcAddress(hShell32, (char *)521);
Mouton is offline