1. sendBlat help
- Posted by GeorgeWalters Apr 12, 2009
- 1120 views
- Last edited Apr 13, 2009
Can someone tell me what this error is telling me?
C:\Acutrack\bin\opr400.exe:10535 in function sendBlat() c_proc/c_func: bad routine number (-1)
Is this a missing blat.dll??
2. Re: sendBlat help
- Posted by ghaberek (admin) Apr 13, 2009
- 1136 views
Is this a missing blat.dll??
Sounds like it. Can you echo back the variable you're assigning to open_dll()?
atom blat blat = open_dll( "blat.dll" ) ? blat
If it's zero, then the library was not found. Is it in a location under your PATH?
-Greg
3. Re: sendBlat help
- Posted by bernie Apr 13, 2009
- 1143 views
Can someone tell me what this error is telling me?
C:\Acutrack\bin\opr400.exe:10535 in function sendBlat() c_proc/c_func: bad routine number (-1)
Is this a missing blat.dll??
George:
Here is the web site referred to by Michael Raley in the archive.
I looks like a bad callback but I am not familiar with software.
4. Re: sendBlat help
- Posted by GeorgeWalters Apr 14, 2009
- 1094 views
Thanks, guys. It was a missing blat.dll. The computer was remote from me and I needed to tell the local pc guy what to look for. I think for the future I'll mod sendBlat and check the return code and print a meaningful message where Greg put ?blat.
5. Re: sendBlat help
- Posted by ghaberek (admin) Apr 14, 2009
- 1113 views
Thanks, guys. It was a missing blat.dll. The computer was remote from me and I needed to tell the local pc guy what to look for. I think for the future I'll mod sendBlat and check the return code and print a meaningful message where Greg put ?blat.
I always do something like this:
global function link_dll( sequence name ) atom dll dll = open_dll( name ) if dll = 0 then printf( 2, "Unable to link dll: %s\n", {name} ) end if return dll end function
-Greg