Hi gents! A little pascal question for you all.. If I declare a procedure like this. procedure myproc(myint: integer);cdecl; begin end; I then reference it like this @myproc what does this really stand for. It is my assumption that it is a untyped pointer to the address of myproc. Is this assumption correct? Cliff