Mercurial > pidgin
comparison src/util.h @ 9670:ed3bbf36de75
[gaim-migrate @ 10522]
(10:17:53) datallah:
http://www.butfer.com/gaim-patches/dnd_robustness+multiple_file_fix.patch
should fix 1003589 and also make us support DND of multiple files to
transfer - also makes us not try to transfer directories
committer: Tailor Script <tailor@pidgin.im>
| author | Luke Schierer <lschiere@pidgin.im> |
|---|---|
| date | Thu, 05 Aug 2004 14:17:03 +0000 |
| parents | 8901ef16f310 |
| children | b23e70bd1215 |
comparison
equal
deleted
inserted
replaced
| 9669:287d900e2c03 | 9670:ed3bbf36de75 |
|---|---|
| 648 * | 648 * |
| 649 * @return True if the email address is syntactically correct. | 649 * @return True if the email address is syntactically correct. |
| 650 */ | 650 */ |
| 651 gboolean gaim_email_is_valid(const char *address); | 651 gboolean gaim_email_is_valid(const char *address); |
| 652 | 652 |
| 653 /** | |
| 654 * This function extracts a list of URIs from the a "text/uri-list" string | |
| 655 * It was "borrowed" from gnome_uri_list_extract_uris | |
| 656 * | |
| 657 * @param uri_list an uri-list in the standard format. | |
| 658 * | |
| 659 * @return a GList containing strings allocated with g_malloc that have been | |
| 660 * splitted from uri-list. | |
| 661 */ | |
| 662 GList* gaim_uri_list_extract_uris (const gchar* uri_list); | |
| 663 | |
| 664 /** | |
| 665 * This function extracts a list of filenames from the a "text/uri-list" string | |
| 666 * It was "borrowed" from gnome_uri_list_extract_filenames | |
| 667 * | |
| 668 * @param uri_list an uri-list in the standard format. | |
| 669 * | |
| 670 * @return a GList containing strings allocated with g_malloc that contain the | |
| 671 * filenames in the uri-list. Note that unlike gaim_uri_list_extract_uris() | |
| 672 * function, this will discard any non-file uri from the result value. | |
| 673 */ | |
| 674 GList* gaim_uri_list_extract_filenames (const gchar* uri_list); | |
| 675 | |
| 653 /*@}*/ | 676 /*@}*/ |
| 654 | 677 |
| 655 /************************************************************************** | 678 /************************************************************************** |
| 656 * UTF8 String Functions | 679 * UTF8 String Functions |
| 657 **************************************************************************/ | 680 **************************************************************************/ |
