Revision: 4648 http://geany.svn.sourceforge.net/geany/?rev=4648&view=rev Author: statc Date: 2010-02-07 08:30:12 +0000 (Sun, 07 Feb 2010)
Log Message: ----------- Forbid Doxygen to generate documentation for sm.c as it is not in plugin API.
Modified Paths: -------------- branches/sm/src/sm.c
Modified: branches/sm/src/sm.c =================================================================== --- branches/sm/src/sm.c 2010-02-07 08:29:44 UTC (rev 4647) +++ branches/sm/src/sm.c 2010-02-07 08:30:12 UTC (rev 4648) @@ -20,7 +20,7 @@ * $Id$ */
-/** +/* * @file sm.c * Provides X session management protocol (XSMP) support using libSM library. * @@ -80,10 +80,10 @@ static void sm_die_callback(SmcConn smcon, SmPointer client_data);
-/** LibSM connection object initialized in @c sm_init() and used in @c sm_finalize(). */ +/* LibSM connection object initialized in @c sm_init() and used in @c sm_finalize(). */ static SmcConn smc_conn;
-/** +/* * @c SmPropValue storing a path to Geany's executable. * * The path can be either an absolute path or just a filename ("geany") to be @@ -94,7 +94,7 @@ */ static SmPropValue sm_program_val;
-/** +/* * @c SmPropValue storing a string of libSM client ID command-line option and its value. * * The value is used to construct Geany's restart command in @c sm_set_runtime_props(). @@ -104,12 +104,12 @@
#endif
-/** +/* * @name Exported functions * @{ */
-/** +/* * Initialize XSMP support. * * @param argv0 Value of @c argv[0] used to define Geany's restart command. @@ -146,7 +146,7 @@ }
-/** +/* * Perform cleanup. * * Call this function when XSMP support is no longer needed. In fact it is @@ -166,16 +166,16 @@ }
-/** @} */ +/* @} */
#ifdef HAVE_LIBSM
-/** +/* * @name ICE support * @{ */
-/** +/* * ICE connection watcher used to attach a GIOChannel to each ICE connection * so that this connection can be handled in GTK main loop. * @@ -213,7 +213,7 @@ }
-/** +/* * A watcher attached to a GIOChannel corresponding to an ICE connection. * * @param source A GIOChannel corresponding to an ICE connection. @@ -235,13 +235,13 @@ }
-/** +/* * @} * @name libSM support implementation * @{ */
-/** +/* * Connect to the session manager. * * @param libsm_client_id LibSM client ID saved from the previous session @@ -292,7 +292,7 @@ }
-/** +/* * Store global @c SmPropValue objects. * * @param argv0 Value of @c argv[0]. @@ -340,7 +340,7 @@ }
-/** +/* * Set libSM properties which values are not changed during Geany's lifetime. * * @param smcon LibSM connection object. @@ -378,7 +378,7 @@ }
-/** +/* * Set libSM properties which values can be modified during Geany's lifetime. * * @param smcon LibSM connection object. @@ -489,13 +489,13 @@ }
-/** +/* * @} * @name libSM callbacks * @{ */
-/** +/* * "Save Yourself" callback. * * @param smcon LibSM connection object. @@ -543,7 +543,7 @@ }
-/** +/* * "Interact" callback. * * @param smcon LibSM connection object. @@ -570,7 +570,7 @@ }
-/** +/* * "Save Complete" callback. * * @param smcon LibSM connection object. @@ -603,7 +603,7 @@ }
-/** +/* * "Die" callback. * * @param smcon LibSM connection object. @@ -622,6 +622,6 @@ }
-/** @} */ +/* @} */
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.