comparison src/core.h @ 6612:0f78db521e70

[gaim-migrate @ 7136] Added a function to return the version of the gaim core. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sun, 24 Aug 2003 07:40:13 +0000
parents 2d3c3a0cb7b1
children feb3d21a7794
comparison
equal deleted inserted replaced
6611:6e3bec3c843e 6612:0f78db521e70
3 * @defgroup core Gaim Core 3 * @defgroup core Gaim Core
4 * 4 *
5 * gaim 5 * gaim
6 * 6 *
7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> 7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
8 * 8 *
9 * This program is free software; you can redistribute it and/or modify 9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by 10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or 11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version. 12 * (at your option) any later version.
13 * 13 *
53 /** 53 /**
54 * Quits the core of gaim, which, depending on the UI, may quit the 54 * Quits the core of gaim, which, depending on the UI, may quit the
55 * application using the gaim core. 55 * application using the gaim core.
56 */ 56 */
57 void gaim_core_quit(void); 57 void gaim_core_quit(void);
58
59 /**
60 * Returns the version of the core library.
61 *
62 * @return The version of the core library.
63 */
64 const char *gaim_core_get_version(void);
58 65
59 /** 66 /**
60 * Iterates once through the gaim mainloop. 67 * Iterates once through the gaim mainloop.
61 * 68 *
62 * This is in actuality a wrapper around glib's mainloop iteration 69 * This is in actuality a wrapper around glib's mainloop iteration