Ver Mensaje Individual
  #123 (permalink)  
Antiguo 20/10/2006, 12:13
Avatar de Eternal Idol
Eternal Idol
 
Fecha de Ingreso: mayo-2004
Ubicación: Lucentum
Mensajes: 6.192
Antigüedad: 20 años
Puntos: 74
Código:
((void (*)(unsigned char*, unsigned char*))&r) (p, q);
Pero ese codigo es horriblemente ilegible asi que lo haria asi:
Código:
typedef void (decrypt_ptr)(unsigned char*, unsigned char*);
decrypt_ptr *decrypt = (decrypt_ptr*)&r;
decrypt(p, q);