Cleanup: doxy comments

This commit is contained in:
Campbell Barton 2018-07-15 20:29:11 +02:00
parent edbb2d2279
commit ab9bd557ad
2 changed files with 9 additions and 1 deletions

View File

@ -96,6 +96,11 @@ void WM_operatortype_iter(GHashIterator *ghi)
BLI_ghashIterator_init(ghi, global_ops_hash);
}
/** \} */
/** \name Operator Type Append
* \{ */
/* all ops in 1 list (for time being... needs evaluation later) */
void WM_operatortype_append(void (*opfunc)(wmOperatorType *))
{

View File

@ -28,8 +28,11 @@
/** \file blender/windowmanager/intern/wm_playanim.c
* \ingroup wm
*
* Animation player for image sequences & video's with sound support.
* Launched in a separate process from Blender's #RENDER_OT_play_rendered_anim
*
* \note This file uses ghost directly and none of the WM definitions.
* this could be made into its own module, alongside creator/
* this could be made into its own module, alongside creator.
*/
#include <sys/types.h>