This commit is contained in:
2019-10-01 11:29:49 -04:00
parent 4c2b1bff1f
commit 6ecba2879c
2 changed files with 38 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#ifndef __mx_members_h__
#define __mx_members_h__
#include "vars.h"
long members_calls(CVars in, CVars &out);
#endif
+27
View File
@@ -0,0 +1,27 @@
// Topup management toosl
#include "clog.h"
#include "cgi.h"
#include "input.h"
#include "jubabox_api.h"
#include "safestring.h"
#include <string>
#include "pgsql.h"
#include "pgsql_wrapper.h"
#include <curl/curl.h>
#include "medTEmails.h"
/* -- */
#include "members.h"
long members_calls(CVars in, CVars &out) {
long ret = PHP_API_BAD_PARAM;
try {
REQ_LONG(in, "action", 0, -1);
return ret;
}