about summary refs log tree commit diff stats
path: root/config.mk
Commit message (Collapse)AuthorAgeFilesLines
* fixed a type in README, and patched config.mkarg@10ksloc.org2006-08-021-1/+1
|
* removed the CONFIG variable from config.mk, renamed config.h into ↵arg@10ksloc.org2006-08-021-5/+2
| | | | config.default.h, after first clone/extract one needs to copy config.default.h to config.h, that is easier than always heavy typing make CONFIG=blafasel
* applied Sanders patches (numlock2)arg@10ksloc.org2006-08-021-7/+7
|
* uppercasing all define'd values (uppercase-prefixed should only be enum ↵arg@10ksloc.org2006-08-011-7/+7
| | | | field qualifiers)
* centralized/externalized configuration to config.harg@10ksloc.org2006-08-011-2/+5
|
* applied Sanders patchesarg@10ksloc.org2006-08-011-15/+9
|
* s/0.5/0.6/ - my steps are wider than the realityarg@10ksloc.org2006-07-211-1/+1
|
* preparing 0.6 which will be available in the evening after sanders patch approx.arg@10ksloc.org2006-07-211-6/+6
|
* using double-linked list in order to get correct prev focus handlingarg@10ksloc.org2006-07-201-5/+5
|
* cleaned up codearg@10ksloc.org2006-07-201-1/+1
|
* using O3 instead of Os, binary size still < 40kbarg@10ksloc.org2006-07-201-1/+1
|
* applied Jukka's patch with s/ModKeyMask/MODKEY/garg@10ksloc.org2006-07-191-1/+1
|
* changed CFLAGsarg@mmvi2006-07-181-5/+5
|
* simplified MakefileAnselm R. Garbe2006-07-171-1/+0
|
* patched dwmAnselm R. Garbe2006-07-171-1/+1
|
* simplified man pageAnselm R. Garbe2006-07-161-1/+1
|
* draw bar on exposure ;)Anselm R. Garbe2006-07-141-5/+5
|
* prep 0.1 0.1Anselm R. Garbe2006-07-141-6/+6
|
* implemented dwm reading status text from stdin Anselm R. Garbe2006-07-141-5/+5
|
* continued with man pageAnselm R. Garbe2006-07-141-2/+5
|
* new stuffAnselm R. Garbe2006-07-131-1/+1
|
* added logo+descriptionAnselm R. Garbe2006-07-131-6/+2
|
* new stuff (some warning elimination)Anselm R. Garbe2006-07-131-2/+7
|
* new stuff, fixed several issuesAnselm R. Garbe2006-07-121-1/+1
|
* added grid mode on Mod1Mask gAnselm R. Garbe2006-07-121-1/+1
|
* added new stuffAnselm R. Garbe2006-07-101-3/+1
|
* initial importAnselm R. Garbe2006-07-101-0/+29
lass="cm"> * vim: expandtab:ts=4:sts=4:sw=4 * * Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com> * * This file is part of Profanity. * * Profanity is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Profanity is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Profanity. If not, see <https://www.gnu.org/licenses/>. * * In addition, as a special exception, the copyright holders give permission to * link the code of portions of this program with the OpenSSL library under * certain conditions as described in each individual source file, and * distribute linked combinations including the two. * * You must obey the GNU General Public License in all respects for all of the * code used other than OpenSSL. If you modify file(s) with this exception, you * may extend this exception to your version of the file(s), but you are not * obligated to do so. If you do not wish to do so, delete this exception * statement from your version. If you delete this exception statement from all * source files in the program, then also delete it here. * */ #ifndef XMPP_FORM_H #define XMPP_FORM_H #include <strophe.h> #include "xmpp/xmpp.h" DataForm* form_create(xmpp_stanza_t* const stanza); xmpp_stanza_t* form_create_submission(DataForm* form); char* form_get_form_type_field(DataForm* form); GSList* form_get_non_form_type_fields_sorted(DataForm* form); GSList* form_get_field_values_sorted(FormField* field); #endif