![]() |
Delphi-Version: XE5
Problem with DLL in Delphi
I want to use this DLL:
Code:
in Delphi.
http://ntinfo.biz/files/diedll.zip
C header is:
Code:
I ported it to Delphi:
#ifndef DIEDLL_H
#define DIEDLL_H #include <windows.h> // flags #define DIE_SHOWERRORS 0x00000001 #define DIE_SHOWOPTIONS 0x00000002 #define DIE_SHOWVERSION 0x00000004 #define DIE_SHOWENTROPY 0x00000008 #define DIE_SINGLELINEOUTPUT 0x00000010 #define DIE_SHOWFILEFORMATONCE 0x00000020 #ifdef __cplusplus extern "C" { #endif int __declspec(dllexport) __stdcall DIE_scanA(char *pszFileName,char *pszOutBuffer,int nOutBufferSize,unsigned int nFlags); int __declspec(dllexport) __stdcall DIE_scanW(wchar_t *pwszFileName,char *pszOutBuffer,int nOutBufferSize,unsigned int nFlags); int __declspec(dllexport) __stdcall DIE_scanExA(char *pszFileName,char *pszOutBuffer,int nOutBufferSize,unsigned int nFlags,char *pszDataBase); int __declspec(dllexport) __stdcall DIE_scanExW(wchar_t *pwszFileName,char *pszOutBuffer,int nOutBufferSize,unsigned int nFlags,wchar_t *pwszDataBase); PCHAR __declspec(dllexport) __stdcall DIE_versionA(void); PWCHAR __declspec(dllexport) __stdcall DIE_versionW(void); #ifdef UNICODE #define DIE_scan DIE_scanW #define DIE_scanEx DIE_scanExW #define DIE_version DIE_versionW #else #define DIE_scan DIE_scanA #define DIE_scanEx DIE_scanExA #define DIE_version DIE_versionA #endif #ifdef __cplusplus } #endif #endif // DIEDLL_H
Delphi-Quellcode:
No I tried use it:
unit diedll;
interface const DIE_SHOWERRORS = $00000001; DIE_SHOWOPTIONS = $00000002; DIE_SHOWVERSION = $00000004; DIE_SHOWENTROPY = $00000008; DIE_SINGLELINEOUTPUT = $00000010; DIE_SHOWFILEFORMATONCE = $00000020; function DIE_scanA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall; external 'diedll.dll' name 'DIE_scanA'; function DIE_scanW(pszFileName, pszOutBuffer: PWideChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall; external 'diedll.dll' name 'DIE_scanW'; function DIE_scanExA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal; pszDataBase: PAnsiChar): Integer; stdcall; external 'diedll.dll' name 'DIE_scanExA'; function DIE_scanExW(pszFileName, pszOutBuffer: PWideChar; nOutBufferSize: Cardinal; nFlags: Cardinal; pwszDataBase: PWideChar): Integer; stdcall; external 'diedll.dll' name 'DIE_scanExW'; function DIE_versionA: PAnsiChar; stdcall; external 'diedll.dll' name 'DIE_versionA'; function DIE_versionW: PWideChar; stdcall; external 'diedll.dll' name 'DIE_versionW'; implementation end.
Delphi-Quellcode:
Message: Function entry point not found in diedll.dll.
var
Buffer: array [0..1023] of Char; begin Caption := DIE_versionW; DIE_scanW('C:\Windows\notepad.exe', Buffer, 1024, DIE_SHOWOPTIONS or DIE_SHOWVERSION); ShowMessage(string(Buffer)); end; I checked what is exported from DLL and make changes in unit:
Delphi-Quellcode:
So, function to check version looks to be ok, but in scans is something wrong:
function DIE_scanA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall;
external 'diedll.dll' name '_DIE_scanA@16'; function DIE_scanW(pszFileName, pszOutBuffer: PWideChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall; external 'diedll.dll' name '_DIE_scanW@16'; function DIE_scanExA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal; pszDataBase: PAnsiChar): Integer; stdcall; external 'diedll.dll' name '_DIE_scanExA@20'; function DIE_scanExW(pszFileName, pszOutBuffer: PWideChar; nOutBufferSize: Cardinal; nFlags: Cardinal; pwszDataBase: PWideChar): Integer; stdcall; external 'diedll.dll' name '_DIE_scanExW@20'; function DIE_versionA: PAnsiChar; stdcall; external 'diedll.dll' name '_DIE_versionA@0'; function DIE_versionW: PWideChar; stdcall; external 'diedll.dll' name '_DIE_versionW@0';
Code:
Help make it working, please :(
---------------------------
Debugger Exception Notification --------------------------- Project DIE.exe raised exception class $C0000090 with message 'floating point invalid operation at 0x6c09023f'. --------------------------- Break Continue Help --------------------------- |
AW: Problem with DLL in Delphi
Here you work with AnsiChar:
Delphi-Quellcode:
But this is not Ansi:
function DIE_scanA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall;
external 'diedll.dll' name 'DIE_scanA';
Delphi-Quellcode:
Try this instead
var
Buffer: array [0..1023] of Char;
Delphi-Quellcode:
but maybe there are other problems.
var
Buffer: array [0..1023] of AnsiChar; |
Re: AW: Problem with DLL in Delphi
Zitat:
Delphi-Quellcode:
Otherwise compiler tell me that types must be compatible.
var
Buffer: array [0..1023] of Char; begin Caption := DIE_versionW; DIE_scanW('C:\Windows\notepad.exe', Buffer, SizeOf(Buffer), DIE_SHOWOPTIONS or DIE_SHOWVERSION); ShowMessage(StrPas(Buffer)); end; Somebody has used this DLL? |
AW: Problem with DLL in Delphi
What about
Delphi-Quellcode:
?
DIE_scanW('C:\Windows\notepad.exe', @Buffer[Low(Buffer)], SizeOf(Buffer), DIE_SHOWOPTIONS or DIE_SHOWVERSION);
|
Re: Problem with DLL in Delphi
Same result:
Code:
Maybe some can try it in C++?
---------------------------
Debugger Exception Notification --------------------------- Project DIE.exe raised exception class $C0000090 with message 'floating point invalid operation at 0x6bfc023f'. --------------------------- Break Continue Help --------------------------- :( |
AW: Problem with DLL in Delphi
Code:
The output buffer is always AnsiChar,
int __declspec(dllexport) __stdcall DIE_scanA (char *pszFileName, char *pszOutBuffer, int nOutBufferSize, unsigned int nFlags);
int __declspec(dllexport) __stdcall DIE_scanW (wchar_t *pwszFileName, char *pszOutBuffer, int nOutBufferSize, unsigned int nFlags); int __declspec(dllexport) __stdcall DIE_scanExA(char *pszFileName, char *pszOutBuffer, int nOutBufferSize, unsigned int nFlags, char *pszDataBase); int __declspec(dllexport) __stdcall DIE_scanExW(wchar_t *pwszFileName, char *pszOutBuffer, int nOutBufferSize, unsigned int nFlags, wchar_t *pwszDataBase); but that still does not explain the error message. :gruebel: |
Re: AW: Problem with DLL in Delphi
Zitat:
Delphi-Quellcode:
Have you looked on SDK? There is folder with signatures, if function doesn't see it, it returns string that nothing found (and no exceptions), this may be DLL internal exception?
function DIE_scanA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall;
external 'diedll.dll' name '_DIE_scanA@16'; function DIE_scanW(pszFileName: PWideChar; pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal): Integer; stdcall; external 'diedll.dll' name '_DIE_scanW@16'; function DIE_scanExA(pszFileName, pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal; pszDataBase: PAnsiChar): Integer; stdcall; external 'diedll.dll' name '_DIE_scanExA@20'; function DIE_scanExW(pszFileName: PWideChar; pszOutBuffer: PAnsiChar; nOutBufferSize: Cardinal; nFlags: Cardinal; pwszDataBase: PWideChar): Integer; stdcall; external 'diedll.dll' name '_DIE_scanExW@20'; function DIE_versionA: PAnsiChar; stdcall; external 'diedll.dll' name '_DIE_versionA@0'; function DIE_versionW: PWideChar; stdcall; external 'diedll.dll' name '_DIE_versionW@0'; |
AW: Problem with DLL in Delphi
Dont know if it helps :
![]() |
Re: Problem with DLL in Delphi
No, still the same error :(
|
AW: Problem with DLL in Delphi
why your use __cplusplus and __stdcall?
sample.. use
Code:
instead of define
#ifdef __cplusplus
extern "C" { #endif Zitat:
sample
Code:
Delphi
#ifndef TAGSLIBDEF
#define TAGSLIBDEF(f) WINAPI f #endif
Code:
Create the DEF File with DumpBin
TagsLibrary_Free name 'TagsLibrary_Free@HereTheByteWhichHTAGSHas' Sample (TagsLibrary_Free@4) if HTAGS = Integer
dumpbin /exports TagsLib.dll >TagsLib.def Create a lib LIB /DEF:TagsLib.DEF Sample Header
Code:
def file should then be
#ifndef TAGSLIBDEF_H
#define TAGSLIBDEF_H #include <wtypes.h> #ifdef __cplusplus extern "C" { #endif #ifndef TAGSLIBDEF #define TAGSLIBDEF(f) WINAPI f #endif // Your Exports Header and so on BOOL TAGSLIBDEF(TagsLibrary_Free)(HTAGS Tags); int TAGSLIBDEF(TagsLibrary_Load)(HTAGS Tags, LPWSTR FileName, TTagType TagType, BOOL ParseTags); #ifdef __cplusplus } #endif #endif Zitat:
sorry for my bad english. this is for static linking DLL not "dynamic linking" And your should disable floating point exception inside Delphi greets |
Alle Zeitangaben in WEZ +1. Es ist jetzt 12:41 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz