Moved function doc from condition.h to condition.c
This commit is contained in:
parent
9bccc7b29e
commit
4b406b2a99
2 changed files with 12 additions and 10 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue