forked from fibercrypto/libskyfiber
-
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#116 Finalized
cli.cli
- Loading branch information
Maykel Arias Torres
committed
Jan 18, 2020
1 parent
051aada
commit e4f888f
Showing
3 changed files
with
58 additions
and
42 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
typedef struct { | ||
void* data; ///< Pointer to buffer containing slice data. | ||
GoInt_ len; ///< Number of items stored in slice buffer | ||
GoInt_ cap; ///< Maximum number of items that fits in this slice | ||
///< considering allocated memory and item type's | ||
///< size. | ||
} cli__PasswordFromBytes; | ||
typedef struct{ | ||
GoString_ DataDir; | ||
GoString_ Coin; | ||
GoString_ RPCAddress; | ||
GoString_ RPCUsername; | ||
GoString_ RPCPassword; | ||
} cli__Config; | ||
typedef struct{ | ||
GoInt32_ _unnamed; | ||
} cli__WalletLoadError; | ||
typedef struct{ | ||
GoInt32_ _unnamed; | ||
} cli__WalletSaveError; | ||
typedef GoInterface_ cli__PasswordReader; | ||
typedef GoSlice_ cli__PasswordFromBytes; | ||
typedef struct{ | ||
} cli__PasswordFromTerm; |
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