Hello Everyone
Thanks
Code:
#COMPILE DLL "TEST.DLL" DECLARE FUNCTION SysAllocStringByteLen LIB "OLEAUT32.DLL" ALIAS "SysAllocStringByteLen" (psz AS ASCIIZ, BYVAL ulen AS DWORD) AS DWORD 'Is this SUB TEST(ix AS LONG) EXPORT ix=SysAllocStringByteLen("Testing......", 16) END SUB 'The equivalent of this SUB TEST1(s AS STRING) EXPORT s="Testing......" END SUB
Comment