cclib.cpp

This commit is contained in:
jl777
2019-01-19 01:33:06 -11:00
parent f93a96af07
commit b22c190e3c
3 changed files with 7 additions and 0 deletions

View File

@@ -559,6 +559,9 @@ if ENABLE_WALLET
komodod_LDADD += $(LIBBITCOIN_WALLET)
endif
cclib.so: cclib.cpp
gcc -o cclib.so -c cclib.cpp
komodod_LDADD += \
$(BOOST_LIBS) \
$(BDB_LIBS) \

2
src/cc/cclib.cpp Normal file
View File

@@ -0,0 +1,2 @@
char *CClib_name() { return("stub"); }

View File

@@ -60,6 +60,8 @@
// evalcodes 0x10 to 0x7f are reserved for cclib dynamic CC
#define EVAL_FIRSTUSER 0x10
#define EVAL_LASTUSER 0x7f
typedef uint8_t EvalCode;