| 34 |
34 |
| 35 #ifdef _WIN32 |
35 #ifdef _WIN32 |
| 36 # include "win32/gtkwin32dep.h" |
36 # include "win32/gtkwin32dep.h" |
| 37 #endif |
37 #endif |
| 38 |
38 |
| |
39 /** |
| |
40 * PIDGIN_PREFS_ROOT: |
| |
41 * |
| |
42 * A constants for the root of the preferences tree. |
| |
43 * |
| |
44 * Since: 2.0 |
| |
45 */ |
| 39 /* change this only when we have a sane upgrade path for old prefs */ |
46 /* change this only when we have a sane upgrade path for old prefs */ |
| 40 #define PIDGIN_PREFS_ROOT "/pidgin" |
47 #define PIDGIN_PREFS_ROOT "/pidgin" |
| 41 |
48 |
| 42 /* Translators may want to transliterate the name. |
49 /* Translators may want to transliterate the name. |
| 43 It is not to be translated. */ |
50 It is not to be translated. */ |
| 59 * @argc: The argc from main() (or 0 if argv is %NULL). |
66 * @argc: The argc from main() (or 0 if argv is %NULL). |
| 60 * @argv: The argv from main(), or %NULL. |
67 * @argv: The argv from main(), or %NULL. |
| 61 * |
68 * |
| 62 * Start pidgin with the given command line arguments. |
69 * Start pidgin with the given command line arguments. |
| 63 * |
70 * |
| |
71 * Returns: The exit code for the program. |
| |
72 * |
| 64 * Since: 3.0 |
73 * Since: 3.0 |
| 65 */ |
74 */ |
| 66 PIDGIN_AVAILABLE_IN_3_0 |
75 PIDGIN_AVAILABLE_IN_3_0 |
| 67 int pidgin_start(int argc, char *argv[]); |
76 int pidgin_start(int argc, char *argv[]); |
| 68 |
77 |