Kbase P25032: Error 3260 calling a PROCEDURE declared as EXTERNAL (DLL entrypoint).
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/16/2008 |
|
Status: Unverified
SYMPTOM(s):
Error 3260 calling a PROCEDURE declared as EXTERNAL (DLL entrypoint).
Could not find the entrypoint <function>. (3260)
<function> does exist in the external DLL.
CAUSE:
DLL entrypoints are case-sensitive.
For example, the in kernel32.exe you have entrypoint GetComputerNameA; but the following declaration will generate error 3260 becase the case is not exactly the same:
PROCEDURE GETComputerNameA EXTERNAL "kernel32.dll":
...
END.
FIX:
Make sure that the name for your PROCEDURE declaration matches exactly the case of the DLL entrypoint.