Skip to content

Commit

Permalink
[test] refs #8 Added integrate callback
Browse files Browse the repository at this point in the history
  • Loading branch information
Maykel Arias Torres committed Oct 15, 2018
1 parent 6153c16 commit 08bed62
Show file tree
Hide file tree
Showing 8 changed files with 582 additions and 158 deletions.
131 changes: 110 additions & 21 deletions LibskycoinNet/skycoin/skycoin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,33 @@ public static GoSlice GoSlicep_value(GoSlice obj) {
return ret;
}

public static SWIGTYPE_p_GoUint8_ new_GoUint8Ptr() {
global::System.IntPtr cPtr = skycoinPINVOKE.new_GoUint8Ptr();
SWIGTYPE_p_GoUint8_ ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_GoUint8_(cPtr, false);
return ret;
}

public static SWIGTYPE_p_GoUint8_ copy_GoUint8Ptr(SWIGTYPE_p_GoUint8_ value) {
global::System.IntPtr cPtr = skycoinPINVOKE.copy_GoUint8Ptr(SWIGTYPE_p_GoUint8_.getCPtr(value));
SWIGTYPE_p_GoUint8_ ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_GoUint8_(cPtr, false);
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static void delete_GoUint8Ptr(SWIGTYPE_p_GoUint8_ obj) {
skycoinPINVOKE.delete_GoUint8Ptr(SWIGTYPE_p_GoUint8_.getCPtr(obj));
}

public static void GoUint8Ptr_assign(SWIGTYPE_p_GoUint8_ obj, SWIGTYPE_p_GoUint8_ value) {
skycoinPINVOKE.GoUint8Ptr_assign(SWIGTYPE_p_GoUint8_.getCPtr(obj), SWIGTYPE_p_GoUint8_.getCPtr(value));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
}

public static SWIGTYPE_p_GoUint8_ GoUint8Ptr_value(SWIGTYPE_p_GoUint8_ obj) {
SWIGTYPE_p_GoUint8_ ret = new SWIGTYPE_p_GoUint8_(skycoinPINVOKE.GoUint8Ptr_value(SWIGTYPE_p_GoUint8_.getCPtr(obj)), true);
return ret;
}

public static _GoString_ new_GoStringp() {
global::System.IntPtr cPtr = skycoinPINVOKE.new_GoStringp();
_GoString_ ret = (cPtr == global::System.IntPtr.Zero) ? null : new _GoString_(cPtr, false);
Expand Down Expand Up @@ -351,6 +378,33 @@ public static SWIGTYPE_p_Block__Handle Block__HandlePtr_value(SWIGTYPE_p_Block__
return ret;
}

public static SWIGTYPE_p_BlockBody__Handle new_BlockBody__HandlePtr() {
global::System.IntPtr cPtr = skycoinPINVOKE.new_BlockBody__HandlePtr();
SWIGTYPE_p_BlockBody__Handle ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_BlockBody__Handle(cPtr, false);
return ret;
}

public static SWIGTYPE_p_BlockBody__Handle copy_BlockBody__HandlePtr(SWIGTYPE_p_BlockBody__Handle value) {
global::System.IntPtr cPtr = skycoinPINVOKE.copy_BlockBody__HandlePtr(SWIGTYPE_p_BlockBody__Handle.getCPtr(value));
SWIGTYPE_p_BlockBody__Handle ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_BlockBody__Handle(cPtr, false);
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static void delete_BlockBody__HandlePtr(SWIGTYPE_p_BlockBody__Handle obj) {
skycoinPINVOKE.delete_BlockBody__HandlePtr(SWIGTYPE_p_BlockBody__Handle.getCPtr(obj));
}

public static void BlockBody__HandlePtr_assign(SWIGTYPE_p_BlockBody__Handle obj, SWIGTYPE_p_BlockBody__Handle value) {
skycoinPINVOKE.BlockBody__HandlePtr_assign(SWIGTYPE_p_BlockBody__Handle.getCPtr(obj), SWIGTYPE_p_BlockBody__Handle.getCPtr(value));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
}

public static SWIGTYPE_p_BlockBody__Handle BlockBody__HandlePtr_value(SWIGTYPE_p_BlockBody__Handle obj) {
SWIGTYPE_p_BlockBody__Handle ret = new SWIGTYPE_p_BlockBody__Handle(skycoinPINVOKE.BlockBody__HandlePtr_value(SWIGTYPE_p_BlockBody__Handle.getCPtr(obj)), true);
return ret;
}

public static SWIGTYPE_p_Signature_Handle new_Signature_HandlePtr() {
global::System.IntPtr cPtr = skycoinPINVOKE.new_Signature_HandlePtr();
SWIGTYPE_p_Signature_Handle ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_Signature_Handle(cPtr, false);
Expand Down Expand Up @@ -484,6 +538,32 @@ public static SWIGTYPE_p_FeeCalcFunc FeeCalcFuncPtr_value(SWIGTYPE_p_FeeCalcFunc
return ret;
}

public static SWIGTYPE_p_p_coin__Block new_coin__BlockPtrPtr() {
global::System.IntPtr cPtr = skycoinPINVOKE.new_coin__BlockPtrPtr();
SWIGTYPE_p_p_coin__Block ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_p_coin__Block(cPtr, false);
return ret;
}

public static SWIGTYPE_p_p_coin__Block copy_coin__BlockPtrPtr(coin__Block value) {
global::System.IntPtr cPtr = skycoinPINVOKE.copy_coin__BlockPtrPtr(coin__Block.getCPtr(value));
SWIGTYPE_p_p_coin__Block ret = (cPtr == global::System.IntPtr.Zero) ? null : new SWIGTYPE_p_p_coin__Block(cPtr, false);
return ret;
}

public static void delete_coin__BlockPtrPtr(SWIGTYPE_p_p_coin__Block obj) {
skycoinPINVOKE.delete_coin__BlockPtrPtr(SWIGTYPE_p_p_coin__Block.getCPtr(obj));
}

public static void coin__BlockPtrPtr_assign(SWIGTYPE_p_p_coin__Block obj, coin__Block value) {
skycoinPINVOKE.coin__BlockPtrPtr_assign(SWIGTYPE_p_p_coin__Block.getCPtr(obj), coin__Block.getCPtr(value));
}

public static coin__Block coin__BlockPtrPtr_value(SWIGTYPE_p_p_coin__Block obj) {
global::System.IntPtr cPtr = skycoinPINVOKE.coin__BlockPtrPtr_value(SWIGTYPE_p_p_coin__Block.getCPtr(obj));
coin__Block ret = (cPtr == global::System.IntPtr.Zero) ? null : new coin__Block(cPtr, false);
return ret;
}

public static void SKY_handle_close(SWIGTYPE_p_Handle p0) {
skycoinPINVOKE.SKY_handle_close(SWIGTYPE_p_Handle.getCPtr(p0));
}
Expand All @@ -494,6 +574,33 @@ public static uint zeroFeeCalculator(SWIGTYPE_p_Transaction__Handle handle, SWIG
return ret;
}

public static uint fix121FeeCalculator(SWIGTYPE_p_Transaction__Handle handle, SWIGTYPE_p_GoUint64_ pFee, SWIGTYPE_p_void context) {
uint ret = skycoinPINVOKE.fix121FeeCalculator(SWIGTYPE_p_Transaction__Handle.getCPtr(handle), SWIGTYPE_p_GoUint64_.getCPtr(pFee), SWIGTYPE_p_void.getCPtr(context));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static uint badFeeCalculator(SWIGTYPE_p_Transaction__Handle handle, SWIGTYPE_p_GoUint64_ pFee, SWIGTYPE_p_void context) {
uint ret = skycoinPINVOKE.badFeeCalculator(SWIGTYPE_p_Transaction__Handle.getCPtr(handle), SWIGTYPE_p_GoUint64_.getCPtr(pFee), SWIGTYPE_p_void.getCPtr(context));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static SWIGTYPE_p_FeeCalculator feeCalc() {
SWIGTYPE_p_FeeCalculator ret = new SWIGTYPE_p_FeeCalculator(skycoinPINVOKE.feeCalc(), true);
return ret;
}

public static SWIGTYPE_p_FeeCalculator fix121() {
SWIGTYPE_p_FeeCalculator ret = new SWIGTYPE_p_FeeCalculator(skycoinPINVOKE.fix121(), true);
return ret;
}

public static SWIGTYPE_p_FeeCalculator badCalc() {
SWIGTYPE_p_FeeCalculator ret = new SWIGTYPE_p_FeeCalculator(skycoinPINVOKE.badCalc(), true);
return ret;
}

public static int MEMPOOLIDX {
set {
skycoinPINVOKE.set_MEMPOOLIDX(value);
Expand Down Expand Up @@ -1018,12 +1125,6 @@ public static uint SKY_fee_TransactionFee(SWIGTYPE_p_Transaction__Handle handle,
return ret;
}

public static uint SKY_coin_GetBlockObject(SWIGTYPE_p_Block__Handle handle, coin__Block outBlock) {
uint ret = skycoinPINVOKE.SKY_coin_GetBlockObject__SWIG_0(SWIGTYPE_p_Block__Handle.getCPtr(handle), coin__Block.getCPtr(outBlock));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static uint SKY_cipher_CheckSecKeyHash(cipher_SecKey s, cipher_SHA256 sha) {
uint ret = skycoinPINVOKE.SKY_cipher_CheckSecKeyHash__SWIG_0(cipher_SecKey.getCPtr(s), cipher_SHA256.getCPtr(sha));
return ret;
Expand Down Expand Up @@ -1183,7 +1284,7 @@ public static uint SKY_coin_CreateUnspent(coin__BlockHeader p0, SWIGTYPE_p_Trans
}

public static uint SKY_coin_GetBlockObject(SWIGTYPE_p_Block__Handle p0, SWIGTYPE_p_p_coin__Block p1) {
uint ret = skycoinPINVOKE.SKY_coin_GetBlockObject__SWIG_1(SWIGTYPE_p_Block__Handle.getCPtr(p0), SWIGTYPE_p_p_coin__Block.getCPtr(p1));
uint ret = skycoinPINVOKE.SKY_coin_GetBlockObject(SWIGTYPE_p_Block__Handle.getCPtr(p0), SWIGTYPE_p_p_coin__Block.getCPtr(p1));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
Expand Down Expand Up @@ -2698,18 +2799,6 @@ public static uint SKY_secp256k1go_ECmultGen(secp256k1go__XYZ p0, SWIGTYPE_p_Num
return ret;
}

public static uint SKY_encrypt_Sha256Xor_Encrypt(GoSlice p0, GoSlice p1, GoSlice p2) {
uint ret = skycoinPINVOKE.SKY_encrypt_Sha256Xor_Encrypt(GoSlice.getCPtr(p0), GoSlice.getCPtr(p1), GoSlice.getCPtr (p2));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static uint SKY_encrypt_Sha256Xor_Decrypt(GoSlice p0, GoSlice p1, GoSlice p2) {
uint ret = skycoinPINVOKE.SKY_encrypt_Sha256Xor_Decrypt(GoSlice.getCPtr(p0), GoSlice.getCPtr(p1), GoSlice.getCPtr (p2));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}

public static uint SKY_droplet_FromString(string p0, SWIGTYPE_p_unsigned_long_long p1) {
var tmpp0 = p0;
{
Expand Down Expand Up @@ -4087,8 +4176,8 @@ public static uint SKY_coin_Create_Transactions(SWIGTYPE_p_Transactions__Handle
return ret;
}

public static uint SKY_coin_GetTransactionsObject(SWIGTYPE_p_Transactions__Handle p0, SWIGTYPE_p_p_GoSlice_ p1) {
uint ret = skycoinPINVOKE.SKY_coin_GetTransactionsObject(SWIGTYPE_p_Transactions__Handle.getCPtr(p0), SWIGTYPE_p_p_GoSlice_.getCPtr(p1));
public static uint SKY_coin_GetTransactionsObject(SWIGTYPE_p_Transactions__Handle p0, GoSlice p1) {
uint ret = skycoinPINVOKE.SKY_coin_GetTransactionsObject(SWIGTYPE_p_Transactions__Handle.getCPtr(p0), GoSlice.getCPtr (p1));
if (skycoinPINVOKE.SWIGPendingException.Pending) throw skycoinPINVOKE.SWIGPendingException.Retrieve();
return ret;
}
Expand Down
73 changes: 62 additions & 11 deletions LibskycoinNet/skycoin/skycoinPINVOKE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,21 @@ static skycoinPINVOKE() {
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_GoSlicep_value")]
public static extern global::System.IntPtr GoSlicep_value(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_new_GoUint8Ptr")]
public static extern global::System.IntPtr new_GoUint8Ptr();

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_copy_GoUint8Ptr")]
public static extern global::System.IntPtr copy_GoUint8Ptr(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_delete_GoUint8Ptr")]
public static extern void delete_GoUint8Ptr(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_GoUint8Ptr_assign")]
public static extern void GoUint8Ptr_assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_GoUint8Ptr_value")]
public static extern global::System.IntPtr GoUint8Ptr_value(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_new_GoStringp")]
public static extern global::System.IntPtr new_GoStringp();

Expand Down Expand Up @@ -383,6 +398,21 @@ static skycoinPINVOKE() {
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_Block__HandlePtr_value")]
public static extern global::System.IntPtr Block__HandlePtr_value(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_new_BlockBody__HandlePtr")]
public static extern global::System.IntPtr new_BlockBody__HandlePtr();

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_copy_BlockBody__HandlePtr")]
public static extern global::System.IntPtr copy_BlockBody__HandlePtr(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_delete_BlockBody__HandlePtr")]
public static extern void delete_BlockBody__HandlePtr(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_BlockBody__HandlePtr_assign")]
public static extern void BlockBody__HandlePtr_assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_BlockBody__HandlePtr_value")]
public static extern global::System.IntPtr BlockBody__HandlePtr_value(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_new_Signature_HandlePtr")]
public static extern global::System.IntPtr new_Signature_HandlePtr();

Expand Down Expand Up @@ -458,12 +488,42 @@ static skycoinPINVOKE() {
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_FeeCalcFuncPtr_value")]
public static extern global::System.IntPtr FeeCalcFuncPtr_value(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_new_coin__BlockPtrPtr")]
public static extern global::System.IntPtr new_coin__BlockPtrPtr();

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_copy_coin__BlockPtrPtr")]
public static extern global::System.IntPtr copy_coin__BlockPtrPtr(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_delete_coin__BlockPtrPtr")]
public static extern void delete_coin__BlockPtrPtr(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_coin__BlockPtrPtr_assign")]
public static extern void coin__BlockPtrPtr_assign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_coin__BlockPtrPtr_value")]
public static extern global::System.IntPtr coin__BlockPtrPtr_value(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_handle_close")]
public static extern void SKY_handle_close(global::System.Runtime.InteropServices.HandleRef jarg1);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_zeroFeeCalculator")]
public static extern uint zeroFeeCalculator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_fix121FeeCalculator")]
public static extern uint fix121FeeCalculator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_badFeeCalculator")]
public static extern uint badFeeCalculator(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_feeCalc")]
public static extern global::System.IntPtr feeCalc();

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_fix121")]
public static extern global::System.IntPtr fix121();

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_badCalc")]
public static extern global::System.IntPtr badCalc();

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_set_MEMPOOLIDX")]
public static extern void set_MEMPOOLIDX(int jarg1);

Expand Down Expand Up @@ -767,9 +827,6 @@ static skycoinPINVOKE() {
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_fee_TransactionFee__SWIG_0")]
public static extern uint SKY_fee_TransactionFee__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, ulong jarg2, global::System.Runtime.InteropServices.HandleRef jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_coin_GetBlockObject__SWIG_0")]
public static extern uint SKY_coin_GetBlockObject__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_cipher_CheckSecKeyHash__SWIG_0")]
public static extern uint SKY_cipher_CheckSecKeyHash__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

Expand Down Expand Up @@ -1232,8 +1289,8 @@ static skycoinPINVOKE() {
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_coin_CreateUnspent")]
public static extern uint SKY_coin_CreateUnspent(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, long jarg3, global::System.Runtime.InteropServices.HandleRef jarg4);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_coin_GetBlockObject__SWIG_1")]
public static extern uint SKY_coin_GetBlockObject__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_coin_GetBlockObject")]
public static extern uint SKY_coin_GetBlockObject(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_coin_GetBlockBody")]
public static extern uint SKY_coin_GetBlockBody(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);
Expand Down Expand Up @@ -1874,12 +1931,6 @@ static skycoinPINVOKE() {
[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_secp256k1go_ECmultGen")]
public static extern uint SKY_secp256k1go_ECmultGen(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_encrypt_Sha256Xor_Encrypt")]
public static extern uint SKY_encrypt_Sha256Xor_Encrypt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_encrypt_Sha256Xor_Decrypt")]
public static extern uint SKY_encrypt_Sha256Xor_Decrypt(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, global::System.Runtime.InteropServices.HandleRef jarg3);

[global::System.Runtime.InteropServices.DllImport("skycoin", EntryPoint="CSharp_skycoin_SKY_droplet_FromString")]
public static extern uint SKY_droplet_FromString(string jarg1, global::System.Runtime.InteropServices.HandleRef jarg2);

Expand Down
Loading

0 comments on commit 08bed62

Please sign in to comment.