P
Peter
i wrote the following snippet in C
__declspec(dllexport) __stdcall int print2scrn(char *name)
I declared in VB6...
declare function wipefiles lib "ctools" print2scrn(strng as string) as
integer
or
declare function wipefiles lib "ctools" print2scrn(strptr(strng as
string)) as integer
(I don't need to declare Alias... or @ since i didn't compile with
underscores)
all my call come back with...
"Can't find DLL entry point print2scrn in ctools"
i've written quite a few other c functions and called them from VB, but
this is a first for me with a STRING. Anybody know anything about how to
do this?
thx, Peter
__declspec(dllexport) __stdcall int print2scrn(char *name)
I declared in VB6...
declare function wipefiles lib "ctools" print2scrn(strng as string) as
integer
or
declare function wipefiles lib "ctools" print2scrn(strptr(strng as
string)) as integer
(I don't need to declare Alias... or @ since i didn't compile with
underscores)
all my call come back with...
"Can't find DLL entry point print2scrn in ctools"
i've written quite a few other c functions and called them from VB, but
this is a first for me with a STRING. Anybody know anything about how to
do this?
thx, Peter