SQLite: demo modul: extern "C" není potřeba pro SQL funkce
authorFrantišek Kučera <franta-hg@frantovo.cz>
Tue, 12 May 2020 21:30:46 +0200
changeset 582f84ed5f3abf
parent 57 1b21c78d8706
child 59 d6614ad97bed
SQLite: demo modul: extern "C" není potřeba pro SQL funkce
c++/sqlite-demo-modul/demo.cpp
     1.1 --- a/c++/sqlite-demo-modul/demo.cpp	Fri May 08 00:02:05 2020 +0200
     1.2 +++ b/c++/sqlite-demo-modul/demo.cpp	Tue May 12 21:30:46 2020 +0200
     1.3 @@ -7,7 +7,7 @@
     1.4   */
     1.5  
     1.6  #define C_API extern "C"
     1.7 -#define SQL_FN(functionName) C_API void functionName (sqlite3_context* ctx, int valueCount, sqlite3_value** values)
     1.8 +#define SQL_FN(functionName) void functionName (sqlite3_context* ctx, int valueCount, sqlite3_value** values)
     1.9  
    1.10  SQLITE_EXTENSION_INIT1
    1.11