From 7270c84fe616357da17baca20437ef1113bb87eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Tue, 16 May 2023 15:13:17 +0800 Subject: Replace struct body with const char *[][2] --- login.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'login.h') diff --git a/login.h b/login.h index 6df9b0c..19f83ea 100644 --- a/login.h +++ b/login.h @@ -9,16 +9,16 @@ static inline void login(const char *username, const char *password, void (*handler)(interchange_response *), void (*callback)(void *)) { - request(handler, callback, &(struct body){ 5 + (successpage ? 1 : 0) - + (failpage ? 1 : 0), { - { "mv_username", username }, - { "mv_password", password }, - { "mv_verify", verify }, - { "mv_click", click }, - { "mv_nextpage", nextpage }, - { "mv_successpage", successpage }, - { "mv_failpage", failpage }, - }}, "%s", "process"); + request(handler, callback, (const char *[][2]){ + "mv_username", username, + "mv_password", password, + "mv_verify", verify, + "mv_click", click, + "mv_nextpage", nextpage, + "mv_successpage", successpage, + "mv_failpage", failpage, + NULL + }, "%s", "process"); } #endif -- cgit v1.2.3