comparison src/util.h @ 8596:56360561af5e

[gaim-migrate @ 9347] " This patch creates a new command line argument ('-c' or '--config') that allows the location of tha gaim prefs files to be located somewhere other than in ~/.gaim The patch also removes the -f argument as it is no longer relevant since .gaimrc is all but gone. The one "weirdness" is that for the session managment support, the --config argument will allways appear to be specified and will contain either the custom value (if specified) or the canonical version of ~/.gaim (if no custom -c is specified). If this should be done differently, let me know." --Daniel Atallah committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 06 Apr 2004 14:29:51 +0000
parents 599d6ac9bbfe
children ddd2bf87fe8d
comparison
equal deleted inserted replaced
8595:1d5e31e518fc 8596:56360561af5e
323 * @see gaim_home_dir() 323 * @see gaim_home_dir()
324 */ 324 */
325 char *gaim_user_dir(void); 325 char *gaim_user_dir(void);
326 326
327 /** 327 /**
328 * Define a custom gaim settings directory, overriding the default (user's home directory/.gaim)
329 * @param dir The custom settings directory
330 */
331 void set_gaim_user_dir(const char *dir);
332
333 /**
328 * Builds a complete path from the root, making any directories along 334 * Builds a complete path from the root, making any directories along
329 * the path which do not already exist. 335 * the path which do not already exist.
330 * 336 *
331 * @param path The path you wish to create. Note that it must start 337 * @param path The path you wish to create. Note that it must start
332 * from the root or this function will fail. 338 * from the root or this function will fail.