mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
15 lines
355 B
Plaintext
15 lines
355 B
Plaintext
/**
|
|
{{SComment}}
|
|
* @return the object of struct MHD_{{hdr_marker}}OptionAndValue with the requested
|
|
* values
|
|
*/
|
|
# define {{SName}}({{MArguments}}) \
|
|
MHD_NOWARN_COMPOUND_LITERALS_ \
|
|
(const struct MHD_{{hdr_marker}}OptionAndValue) \
|
|
{ \
|
|
.opt = ({{EName}}), \
|
|
{{CLBody}} \
|
|
} \
|
|
MHD_RESTORE_WARN_COMPOUND_LITERALS_
|
|
|