
###Function###
DllCallbackRegister

###Description###
Cre une fonction Callback DLL definie par l'utilisateur.

###Syntax###
DllCallbackRegister ( "function", "return type", "params" )


###Parameters###
@@ParamTable@@
function
	Le nom de la fonction  appeler.
return type
	Le type de retour et d'appel conventionnel de la fonction (Voir DllCall).
params
	Une demi-colone separe les paramteres  passer pour cette fonction. Voir Remarques.
@@End@@

###ReturnValue###
@@ReturnTable@@
Succs:	un Dll "handle"  utiliser avec les fonctions <a href="DllCallbackGetPtr.htm">DllCallbackGetPtr()</a> et <a href="DllCallbackFree.htm">DllCallbackFree()</a> .
chec:	0 .
@@End@@


###Remarks###
Utilisez tous les types <a href="DllCall.htm">DllCall()</a>  sauf "struct".
Quand vous avez fini de travailler avec un callback, faites appel  la fonction <a href="DllCallbackFree.htm">DllCallbackFree()</a> pour le librer. Normalement AutoIt ferme tous les fichiers ??upon termination?, mais utiliser <a href="DllCallbackFree.htm">DllCallbackFree()</a> reste une bonne ide.


###Related###
DllCall, DllCallbackFree, DllCallbackGetPtr


###Example###
@@IncludeExample@@
