Mercurial > pidgin
changeset 19016:597d3167c1cc
- More skeleton
- Doxygen-related corrections
author | William Ehlhardt <williamehlhardt@gmail.com> |
---|---|
date | Fri, 13 Jul 2007 07:30:16 +0000 |
parents | 720c61141f4b |
children | e6558bae2bc6 |
files | pidgin/gtkcertmgr.h |
diffstat | 1 files changed, 25 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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_ */