comparison src/util.h @ 9427:66b3f54527e6

[gaim-migrate @ 10245] " As discussed on #gaim (15:02:02) Paco-Paco: the ugliness of this feature trumps compatability, unless there is some pretty important functionality to be lost (15:04:02) aatharuv: Paco-Paco: Because zephyr is a silly UDP based protocol, and sometimes subscriptions (chats you've registered for) get lost, and you can tell a user to a cli tool 'zctl' which will restore the subs. (15:04:32) aatharuv: Paco-Paco: Of course, I should just add this as a protocol option, so users don't have to do that. (15:04:39) Paco-Paco: yes (15:04:50) Paco-Paco: that would be the appropriate answer (15:06:05) LSchiere: okay, so rather then messing with anoncvs delays, i'm going to leave this in for now, and aatharuv can just change to to a account option in place Okay, here's a patch to reload subscriptions incase the server loses track of them, as a protocol action. Since my anoncvs hasn't even gotten the original zephyr patch yet, you might as well reverse the original patch, and apply this new one." --Arun A Tharuvai committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 29 Jun 2004 20:35:30 +0000
parents dfee44a581a4
children 8901ef16f310
comparison
equal deleted inserted replaced
9426:dfee44a581a4 9427:66b3f54527e6
392 * @return A file pointer to the temporary file, or @c NULL on failure. 392 * @return A file pointer to the temporary file, or @c NULL on failure.
393 */ 393 */
394 FILE *gaim_mkstemp(char **path); 394 FILE *gaim_mkstemp(char **path);
395 395
396 /** 396 /**
397 * Creates a temporary file and returns a file pointer to it.
398 *
399 * This is like mkstemp(), but returns a file pointer. It uses the
400 * semantics of tempnam() for the directory to use and allocates the
401 * space for the file path.
402 *
403 * The caller is responsible for closing the file and removing it when
404 * done, as well as freeing the space pointed to by @a path with
405 * g_free().
406 *
407 * @param path The returned path to the temp file.
408 *
409 * @param pattern Pattern for use with the returned filename.
410 *
411 * @return A file pointer to the temporary file, or @c NULL on failure.
412 */
413
414 FILE *gaim_mkstemp_template(char **path,const char *template);
415
416 /**
417 * Checks if the given program name is valid and executable. 397 * Checks if the given program name is valid and executable.
418 * 398 *
419 * @param program The file name of the application. 399 * @param program The file name of the application.
420 * 400 *
421 * @return True if the program is runable. 401 * @return True if the program is runable.