# HG changeset patch # User William Ehlhardt # Date 1184311816 0 # Node ID 597d3167c1cc226f46992fe331e106a7c97a1a07 # Parent 720c61141f4b8a029facfc61ad1bb3f22cf2fa0c - More skeleton - Doxygen-related corrections diff -r 720c61141f4b -r 597d3167c1cc pidgin/gtkcertmgr.h --- a/pidgin/gtkcertmgr.h Fri Jul 13 06:26:40 2007 +0000 +++ b/pidgin/gtkcertmgr.h Fri Jul 13 07:30:16 2007 +0000 @@ -1,4 +1,4 @@ -/* +/** * @file gtkcertmgr.h GTK+ Certificate Manager API * @ingroup pidgin */ @@ -25,10 +25,30 @@ * */ -#ifndef _GTKCERTMGR_H_ -#define _GTKCERTMGR_H_ +#ifndef _PIDGINCERTMGR_H_ +#define _PIDGINCERTMGR_H_ + +/************************************************************************** + * @name Structures * + **************************************************************************/ +typedef struct _PidginCertificateManager PidginCertificateManager; -/** Show the certificate manager window */ +/** GTK+ Certificate Manager */ +struct _PidginCertificateManager { + GtkWidget *window; + + /* I am very empty :( */ +}; + +/**************************************************************************/ +/** @name Certificate Manager API */ +/**************************************************************************/ +/*@{*/ +/** + * Show the certificate manager window + */ void pidgin_certmgr_show(void); -#endif /* _GTKCERTMGR_H_ */ +/*@}*/ + +#endif /* _PIDGINCERTMGR_H_ */