chiark / gitweb /
Merge tag 'branchpoint-5.1' into release
[disorder] / lib / client.h
index 9bc6fec48a8b1826297b909a158fa233dc8db5e6..2513a89e382d756f4e8b1e1bf8c174d19ee521bd 100644 (file)
@@ -18,6 +18,9 @@
 /** @file lib/client.h
  * @brief Simple C client
  *
+ * See @ref lib/client-stubs.h for the (generated) per-command entry
+ * points.
+ *
  * See @ref lib/eclient.h for an asynchronous-capable client
  * implementation.
  */
@@ -47,19 +50,9 @@ int disorder_connect_generic(struct config *conf,
                              const char *password,
                              const char *cookie);
 int disorder_close(disorder_client *c);
-int disorder_playing(disorder_client *c, struct queue_entry **qp);
 char *disorder_user(disorder_client *c);
-int disorder_prefs(disorder_client *c, const char *track,
-                  struct kvp **kp);
 int disorder_log(disorder_client *c, struct sink *s);
 const char *disorder_last(disorder_client *c);
-int disorder_schedule_get(disorder_client *c, const char *id,
-                         struct kvp **actiondatap);
-int disorder_schedule_add(disorder_client *c,
-                         time_t when,
-                         const char *priority,
-                         const char *action,
-                         ...);
 
 #include "client-stubs.h"