Bueno, la solución para eso creo que tu librería ya te la aporta: registra en un vector todas las funciones y todos los eventos que las disparan seguramente, de manera que tendrás que recorrer ese vector, determinar cuál es la función que te interesa y luego llamarla de esta manera (call) o con apply:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>test</title>
<script>
function addEvent(obj, evType, fn, useCapture){
if (obj.addEventListener){
obj.addEventListener(evType, fn, useCapture);
} else if (obj.attachEvent){
obj.attachEvent("on"+evType, fn);
} else {
obj['on'+evType]=fn;
}
}
function decirHola(){
alert('hola!');
}
function simular(obj){
decirHola.call(obj)
}
window.onload=function(){
addEvent(document.getElementById('pp'), 'click', decirHola, false);
simular(document.getElementById('pp'));
}
</script>
</head>
<body>
<div id="pp">click</div>
</body>
</html>