編輯:已經得到這個在32位下工作,我現在試圖讓它爲64位工作。我已經獲得了DLL的源代碼,並且正在爲64位編譯DLL和應用程序。我每次都會遇到訪問衝突。這裏是DLL的代碼(C++中Visual Studio 2005):將Visual Basic 6.0類型轉換爲VB.NET'Structure'
#pragma pack(push, 2)
// Output Results Structure
typedef struct tagTVA_RESULTS {
int iID; /* Difference ID 1 .. n */
int iLeft; /* Bounding rectangle */
int iRight;
int iTop;
int iBottom;
double dCx; /* Center of gravity */
double dCy;
double dMajor; /* Shape information */
double dMinor;
double dAngle; /* Rotational information */
int lArea; /* Number of pixels */
int iEdge; /* Set if difference is at the edge of the image */
double dNormalDensity;
int iNormalCount;
double dDifferenceDensity;
} TVA_RESULTS, *PTVA_RESULTS;
#pragma pack (pop)
注意它的包設置爲2。我試圖在應用程序將其設置爲2,以及,它失敗。我嘗試了其他值,甚至嘗試了不同的值。我已經嘗試明確使用4作爲整數大小和8作爲雙倍大小。但我會假設(有限的知識),如果兩個包裝大小是相同的,它應該工作。
在這一點上,我懷疑如何調用該函數。它的第一個參數是一個指向這些結構數組的指針。應用程序傳入數組ByRef的第一個元素,我認爲這可以實現這一點。但是如果指向數組的指針可能會解釋這些症狀。這是DLL中的函數定義。
int WINAPI MNtvaAnalyzeVB (TVA_RESULTS *pResults, int iMaxCount)
我的老闆認爲它可能是一個big/little endian的問題,但似乎不太可能,如果他們都被在同一環境中編譯。
我該怎麼辦?編輯
末>>>
我轉換的Visual Basic 6.0應用程序到VB.NET。我有幾個結構傳遞給外部DLL文件。這不起作用,我有一種感覺,這是由於結構沒有正確傳遞。
這裏的原始結構:
Public Type TVA_PARAMETERS
iStandardFilterOnOff As Long
iSampleFilterOnOff As Long
iDifferenceFilterOnOff As Long
iRotationCorrectionOnOff As Long
iLocalCorrectionOnOff As Long
iStandardAOIx As Long
iStandardAOIy As Long
iStandardAOIdx As Long
iStandardAOIdy As Long
iSampleAOIx As Long
iSampleAOIy As Long
iSampleAOIdx As Long
iSampleAOIdy As Long
iRepeatHorizontal As Long
iRepeatVertical As Long
dSensitivity As Double
iMergeWidth As Long
iMergeHeight As Long
iMinimumDifferenceArea As Long
iMaximumDifferenceArea As Long
End Type
如果我做了LENB該類型的Visual Basic 6.0中的變量,我得到84個字節。 (注:我不知道,如果這對確定其大小的一種有效方式。)
我曾試圖把它正是如此轉換到VB.NET:
Public Structure TVA_PARAMETERS
Public iStandardFilterOnOff As Integer
Public iSampleFilterOnOff As Integer
Public iDifferenceFilterOnOff As Integer
Public iRotationCorrectionOnOff As Integer
Public iLocalCorrectionOnOff As Integer
Public iStandardAOIx As Integer
Public iStandardAOIy As Integer
Public iStandardAOIdx As Integer
Public iStandardAOIdy As Integer
Public iSampleAOIx As Integer
Public iSampleAOIy As Integer
Public iSampleAOIdx As Integer
Public iSampleAOIdy As Integer
Public iRepeatHorizontal As Integer
Public iRepeatVertical As Integer
Public dSensitivity As Double
Public iMergeWidth As Integer
Public iMergeHeight As Integer
Public iMinimumDifferenceArea As Integer
Public iMaximumDifferenceArea As Integer
End Structure
在VB.NET,System.Runtime.InteropServices.Marshal.sizeof()給88字節。我希望,因爲這些只是數值,這將工作(我知道字符串可以是一個痛苦)。我沒有對外部函數的代碼,但它的聲明如下:
Declare Function MNtvaParameters Lib "MNTva.dll" (ByRef pParameters As TVA_PARAMETERS) As Integer
我猜這種結構是不一樣的大小,這樣的DLL文件調用失敗,但我沒有得到任何錯誤,並正如我所說,我沒有看代碼的代碼。它返回一個零,如果它是成功的,但它顯然沒有實際效果。
我玩過Runtime.InteropServices.StructLayoutAttribute,但如果這是答案,我無法確定正確的參數。
我有另一個這樣的結構,但它是如此相似。我猜如果我能解決這個問題,我可以解決其他問題。
我不知道這個問題是關於什麼的,但它看起來很酷,所以+1。 :) – Neolisk
@Neilisk:它可能是「我有一些結構傳遞給外部DLL,這不起作用」。 –