summaryrefslogtreecommitdiff
path: root/login.h
blob: c11b63485ff80eda546fb025de86fcbaf9f16f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef ICCLIENT_LOGIN_H
#define ICCLIENT_LOGIN_H

#include "request.h"

inline void login(const char *username, const char *password, const char *verify, const char *click,
		const char *successpage, const char *nextpage, const char *failpage, icclient_handler handler, void *user)
{
	request(handler, user, &(struct icclient_request_data){ 7, {
			{ "mv_username", username },
			{ "mv_password", password },
			{ "mv_verify", verify },
			{ "mv_click", click },
			{ "mv_successpage", successpage },
			{ "mv_nextpage", nextpage },
			{ "mv_failpage", failpage }
			}}, "%s", "process");
}

#endif