forked from fibercrypto/libfibercrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cgo] refs fibercrypto#5 Added
coin.mocks.TransactionInputIterator
- Loading branch information
Maykel Arias Torres
committed
Mar 24, 2020
1 parent
8d54c2f
commit 675efc8
Showing
4 changed files
with
87 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package main | ||
|
||
/* | ||
#include <string.h> | ||
#include <stdlib.h> | ||
#include "fctypes.h" | ||
*/ | ||
import "C" | ||
|
||
//export FC_mocks_TransactionInputIterator_HasNext | ||
func FC_mocks_TransactionInputIterator_HasNext(__m *C.TransactionInputIteratorMocks__Handle, _arg0 *bool) (____error_code uint32) { | ||
_m, ok_m := lookupTransactionInputIteratorMocksHandle(*__m) | ||
if !ok_m { | ||
____error_code = FC_BAD_HANDLE | ||
return | ||
} | ||
__arg0 := _m.HasNext() | ||
*_arg0 = __arg0 | ||
return | ||
} | ||
|
||
//export FC_mocks_TransactionInputIterator_Next | ||
func FC_mocks_TransactionInputIterator_Next(__m *C.TransactionInputIteratorMocks__Handle, _arg0 *bool) (____error_code uint32) { | ||
_m, ok_m := lookupTransactionInputIteratorMocksHandle(*__m) | ||
if !ok_m { | ||
____error_code = FC_BAD_HANDLE | ||
return | ||
} | ||
__arg0 := _m.Next() | ||
*_arg0 = __arg0 | ||
return | ||
} | ||
|
||
//export FC_mocks_TransactionInputIterator_Value | ||
func FC_mocks_TransactionInputIterator_Value(__m *C.TransactionInputIteratorMocks__Handle, _arg0 *C.TransactionInput__Handle) (____error_code uint32) { | ||
_m, ok_m := lookupTransactionInputIteratorMocksHandle(*__m) | ||
if !ok_m { | ||
____error_code = FC_BAD_HANDLE | ||
return | ||
} | ||
__arg0 := _m.Value() | ||
*_arg0 = registerTransactionInputHandle(&__arg0) | ||
return | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters