View Single Post
  #7  
Old 08-31-2004, 20:37
Peter[Pan]
 
Posts: n/a
Solved! thanks, it was a combination of the multiple post here:
i ended up doing:

Code:
Info Code:
typedef void (*func_Callback_NotifyOnline)(DATE *,int);
static func_Callback_NotifyOnline orig_Callback_NotifyOnline;

Hook Code:
orig_Callback_NotifyOnline = (func_Callback_NotifyOnline)0xMEMORYLOCATION;
1000+ Thank You's
Reply With Quote