comparison src/privacy.h @ 5944:158196b2db19

[gaim-migrate @ 6385] Added #ifdef __cplusplus lines so that things will link right with C++. Also added some doxygen comment blocks that didn't previously exist. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Mon, 23 Jun 2003 06:40:13 +0000
parents 059d95c67cda
children 8f94cce8faa5
comparison
equal deleted inserted replaced
5943:a4f2aba0848d 5944:158196b2db19
16 * You should have received a copy of the GNU General Public License 16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software 17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 * 19 *
20 */ 20 */
21 #ifndef _GAIM_PRIVACY_H_
22 #define _GAIM_PRIVACY_H_
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
21 27
22 gboolean gaim_privacy_permit_add(GaimAccount *account, const char *name); 28 gboolean gaim_privacy_permit_add(GaimAccount *account, const char *name);
23 gboolean gaim_privacy_deny_add(GaimAccount *account, const char *name); 29 gboolean gaim_privacy_deny_add(GaimAccount *account, const char *name);
24 gboolean gaim_privacy_deny_remove(GaimAccount *account, const char *name); 30 gboolean gaim_privacy_deny_remove(GaimAccount *account, const char *name);
25 gboolean gaim_privacy_permit_remove(GaimAccount *account, const char *name); 31 gboolean gaim_privacy_permit_remove(GaimAccount *account, const char *name);
32
33 #ifdef __cplusplus
34 }
35 #endif
36
37 #endif /* _GAIM_PRIVACY_H_ */