In C# versuche ich, die folgende C-Methode aufzurufen:
// C code:
BOOL VstSetLineDetail(
tVstHdl pDataHdl, // type is void*
long pLineItemNo,
tVstTransType pTransType, // enum type
tVstTransSubType pTransSubType, // enum type
tVstTransCd pTransCd, // enum type
char *pTransDate,
tVstTaxedGeo *pTaxedGeoFlag, // enum type
double *pExtdAmt,
double *pTotalTax,
double *pCombRate,
char *pUserArea,
tVstTaxingJuris *pTaxingJuris, // enum type
char *pCustExmtCertifNum,
char *pDivCd,
char *pStoreCd,
char *pGLAcct)
Ich bin marshalling es in C # die folgende Weise:
// C# code:
[DllImport(@"VertexNative\Vst.dll")]
public static extern bool VstSetLineDetail(
[In]IntPtr dataHandle,
[In]long lineItemNumber,
[In]VstTransactionType transactionType, // an enum I defined in C#
[In]VstTransactionSubtype transactionSubtype, // C# enum
[In]VstTransactionCode transactionCode, // C# enum
[In]string transactionDate,
[In]ref VstTaxedGeo taxedGeo, // C# enum
[In]ref double totalAmount,
[In]ref double totalTax,
[In]ref double combinedTaxRate,
[In]string userArea,
[In]ref VstTaxingJurisdiction jurisdiction, // C# enum
[In]string exceptionCertificate,
[In]string divisionCode,
[In]string storeCode,
[In]string generalLedgerAccount);
Der Aufruf führt immer zu einer System.AccessViolationException. Ich habe viele Wertekombinationen beim Aufruf der Funktion ausprobiert, aber keine besseren Ergebnisse erhalten. Kann mir jemand sagen, ob es so aussieht, als ob ich die Datentypen richtig zuordnen würde?
Es wäre toll, wenn ich Zugang zum C-Quellcode hätte, um ihn zu debuggen, aber es handelt sich um eine Reihe von DLLs eines Drittanbieters. Ich kann nur die Header-Dateien sehen.
Die Enums in C sind:
typedef enum
{
eVstTransTypeIgnore = 99, /* Means ignore this parameter */
eVstTransTypeSale = 0,
eVstTransTypePurchase,
eVstTransTypeService,
eVstTransTypeRentalLease,
eVstTransTypeNumElems,
eVstTransTypeFirstElem = eVstTransTypeSale
} tVstTransType;
typedef enum
{
eVstTransSubTypeIgnore = 99, /* Means ignore this parameter */
eVstTransSubTypeNone = 0,
eVstTransSubTypeProperty,
eVstTransSubTypeFreight,
eVstTransSubTypeService,
eVstTransSubTypeRentalLease,
eVstTransSubTypeExpense,
eVstTransSubTypeMisc,
eVstTransSubTypeNumElems,
eVstTransSubTypeFirstElem = eVstTransSubTypeNone
} tVstTransSubType;
typedef enum
{
eVstTransCdIgnore = 99, /* Means ignore this parameter */
eVstTransCdNormal = 0,
eVstTransCdAdjustment,
eVstTransCdTaxOnlyDebit,
eVstTransCdTaxOnlyCredit,
eVstTransCdDistributeRate,
eVstTransCdDistributeTax,
eVstTransCdNumElems,
eVstTransCdFirstElem = eVstTransCdNormal
} tVstTransCd;
typedef enum
{
eVstTaxedGeoNone = 0,
eVstTaxedGeoDetermine,
eVstTaxedGeoShipTo,
eVstTaxedGeoShipFrom,
eVstTaxedGeoOrderAccept,
eVstTaxedGeoNumElems,
eVstTaxedGeoFirstElem = eVstTaxedGeoNone
} tVstTaxedGeo;
typedef enum {
eVstTaxingJurisPrimary,
eVstTaxingJurisAddtl,
eVstTaxingJurisNumElems,
eVstTaxingJurisFirstElem = eVstTaxingJurisPrimary
} tVstTaxingJuris;
Und ich habe sie in C# definiert als:
public enum VstTransactionType
{
Sale,
Purchase,
Service,
RentalLease,
Ignore = 99
}
public enum VstTransactionSubtype
{
None,
Property,
Freight,
Service,
RentalLease,
Expense,
Misc,
Ignore = 99
}
public enum VstTransactionCode
{
Normal,
Adjustment,
TaxOnlyDebit,
TaxOnlyCredit,
DistributeRate,
DistributeTax,
Ignore = 99
}
public enum VstTaxedGeo
{
None,
Determine,
ShipTo,
ShipFrom,
OrderAccept
}
public enum VstTaxingJurisdiction
{
Primary,
Additional
}