F
Fucool
Unregistered / Unconfirmed
GUEST, unregistred user!
一个DLL 文件,在VB里调用如下;
Declare Function MakeStringObject Lib "PDFENC32.DLL" Alias "MakeMemoryObject" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpBase As Any) As Integer
Declare Function MakeFileObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hFile As Long) As Integer
Declare Function MakeFilenameObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpcszFilename As String) As Integer
Declare Function MakeClipboardObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hWnd As Long) As Integer
Declare Function MakeMemoryObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, lpBase As Any) As Integer
Declare Function MakeStringObject Lib "PDFENC32.DLL" Alias "MakeMemoryObject" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpBase As Any) As Integer
Declare Function MakeFileObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hFile As Long) As Integer
Declare Function MakeFilenameObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpcszFilename As String) As Integer
Declare Function MakeClipboardObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hWnd As Long) As Integer
Declare Function MakeMemoryObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, lpBase As Any) As Integer
我在DELPHI里 的调用如下;但出错,请问应如何写。
Function MakeStringObject; external 'PDFENC32.DLL' name 'MakeMemoryObject';
Function MakeFileObject; external 'PDFENC32.DLL' name 'MakeFileObject';
Function MakeFilenameObject; external 'PDFENC32.DLL' name 'MakeFilenameObject';
Function MakeClipboardObject; external 'PDFENC32.DLL' name 'MakeClipboardObject';
Function MakeMemoryObject; external 'PDFENC32.DLL' name 'MakeMemoryObject';
谢谢大家。
Declare Function MakeStringObject Lib "PDFENC32.DLL" Alias "MakeMemoryObject" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpBase As Any) As Integer
Declare Function MakeFileObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hFile As Long) As Integer
Declare Function MakeFilenameObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpcszFilename As String) As Integer
Declare Function MakeClipboardObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hWnd As Long) As Integer
Declare Function MakeMemoryObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, lpBase As Any) As Integer
Declare Function MakeStringObject Lib "PDFENC32.DLL" Alias "MakeMemoryObject" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpBase As Any) As Integer
Declare Function MakeFileObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hFile As Long) As Integer
Declare Function MakeFilenameObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal lpcszFilename As String) As Integer
Declare Function MakeClipboardObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, ByVal hWnd As Long) As Integer
Declare Function MakeMemoryObject Lib "PDFENC32.DLL" (lpObj As PDFOBJ, ByVal ioDirection As Integer, lpBase As Any) As Integer
我在DELPHI里 的调用如下;但出错,请问应如何写。
Function MakeStringObject; external 'PDFENC32.DLL' name 'MakeMemoryObject';
Function MakeFileObject; external 'PDFENC32.DLL' name 'MakeFileObject';
Function MakeFilenameObject; external 'PDFENC32.DLL' name 'MakeFilenameObject';
Function MakeClipboardObject; external 'PDFENC32.DLL' name 'MakeClipboardObject';
Function MakeMemoryObject; external 'PDFENC32.DLL' name 'MakeMemoryObject';
谢谢大家。