Moved function doc from condition.h to condition.c

This commit is contained in:
Odin Omdal Hørthe 2007-10-20 16:31:24 +02:00
parent 9bccc7b29e
commit 4b406b2a99
2 changed files with 12 additions and 10 deletions

View file

@ -21,6 +21,12 @@
#include "lib/condition.h"
/**
* Initialize a condition variable
* @param self is a pointer to the condition variable to be initialized
* @return self as given
*/
CinelerraCondition
cinelerra_condition_init (CinelerraCondition self)
{
@ -32,6 +38,12 @@ cinelerra_condition_init (CinelerraCondition self)
return self;
}
/**
* Destroy a condition variable
* @param self is a pointer to the condition variable to be destroyed
* @return self as given
*/
CinelerraCondition
cinelerra_condition_destroy (CinelerraCondition self)
{

View file

@ -38,20 +38,10 @@ typedef struct cinelerra_condition_struct cinelerra_condition;
typedef cinelerra_condition* CinelerraCondition;
/**
* Initialize a condition variable
* @param self is a pointer to the condition variable to be initialized
* @return self as given
*/
CinelerraCondition
cinelerra_condition_init (CinelerraCondition self);
/**
* Destroy a condition variable
* @param self is a pointer to the condition variable to be destroyed
* @return self as given
*/
CinelerraCondition
cinelerra_condition_destroy (CinelerraCondition self);