commit fdb2ec531c7813b015df5aa3bc5c0ea6e533c1cf from: Markus Uhlin date: Sat Jul 13 11:07:59 2024 UTC Added a new command commit - 589d4eee3b0a290ffc4625796083c3d8e84f49db commit + fdb2ec531c7813b015df5aa3bc5c0ea6e533c1cf blob - ca1dc3de1e91739019fea5bea7c8c3aedc2929ad blob + 3dad9285c341f945f5006c980f7c7a3a0983f070 --- FICS/build.mk +++ FICS/build.mk @@ -16,6 +16,7 @@ OBJS = $(SRC_DIR)adminproc.o\ $(SRC_DIR)formula.o\ $(SRC_DIR)gamedb.o\ $(SRC_DIR)gameproc.o\ + $(SRC_DIR)iset.o\ $(SRC_DIR)legal.o\ $(SRC_DIR)lists.o\ $(SRC_DIR)matchproc.o\ blob - /dev/null blob + da687ab4da7daffc8a683bc0ff25cab829051305 (mode 644) --- /dev/null +++ FICS/iset.cpp @@ -0,0 +1,12 @@ +#include "stdinclude.h" +#include "common.h" + +#include "iset.h" + +PUBLIC int +com_iset(int p, param_list param) +{ + (void) p; + (void) param; + return COM_OK; +} blob - /dev/null blob + f88d9fb7a219751cd4f209f8850025a140d8958d (mode 644) --- /dev/null +++ FICS/iset.h @@ -0,0 +1,16 @@ +#ifndef GUARD_ISET_H +#define GUARD_ISET_H + +#include "command.h" /* param_list */ + +#ifdef __cplusplus +extern "C" { +#endif + +int com_iset(int, param_list); + +#ifdef __cplusplus +} +#endif + +#endif