Comment out l_quvi_object_opts_curl
[libquvi.git] / src / lua / quvi / opts.h
blobd4a5c63f6e84e8626fc31b3153c539167d0c5996
1 /* libquvi
2 * Copyright (C) 2013 Toni Gundogdu <legatvs@gmail.com>
4 * This file is part of libquvi <http://quvi.sourceforge.net/>.
6 * This program is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU Affero General Public
8 * License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General
17 * Public License along with this program. If not, see
18 * <http://www.gnu.org/licenses/>.
21 #ifndef l_quvi_opts_h
22 #define l_quvi_opts_h
24 typedef enum
26 QUVI_OBJECT_OPTION_CROAK_IF_ERROR = 0x01,
27 /* fetch */
28 QUVI_OBJECT_OPTION_FETCH_FROM_CHARSET = 0x20,
29 /* http */
30 QUVI_OBJECT_OPTION_HTTP_COOKIE_MODE = 0x40,
31 #ifdef _UNUSED
32 QUVI_OBJECT_OPTION_HTTP_USER_AGENT,
33 #endif
34 /* crypto */
35 QUVI_OBJECT_OPTION_CRYPTO_CIPHER_FLAGS = 0x60,
36 QUVI_OBJECT_OPTION_CRYPTO_CIPHER_MODE,
37 QUVI_OBJECT_OPTION_CRYPTO_CIPHER_KEY,
38 QUVI_OBJECT_OPTION_CRYPTO_ALGORITHM
39 } QuviObjectOption;
41 struct l_quvi_object_opt_s
43 struct
45 gchar *str;
46 gdouble n;
47 } value;
48 gdouble id;
51 typedef struct l_quvi_object_opt_s *l_quvi_object_opt_t;
53 GSList *l_quvi_object_opts_new(lua_State*, gint);
54 void l_quvi_object_opts_free(GSList*);
56 gboolean l_quvi_object_opts_is_set(GSList*, QuviObjectOption, GSList**);
57 #ifdef _UNUSED
58 void l_quvi_object_opts_curl(GSList*, _quvi_t);
59 #endif
61 gboolean l_quvi_object_opts_croak_if_error(GSList*);
63 #endif /* l_quvi_opts_h */
65 /* vim: set ts=2 sw=2 tw=72 expandtab: */