Document enum of separator.h

This commit is contained in:
Dave Davenport 2016-11-01 21:19:13 +01:00
parent f50d4f4592
commit 3b698038d7
1 changed files with 3 additions and 1 deletions

View File

@ -20,13 +20,15 @@ typedef struct _separator separator;
/** /**
* Direction of the separator. * Direction of the separator.
*/ */
typedef enum typedef enum
{ {
S_HORIZONTAL = 0, S_HORIZONTAL = 0,
S_VERTICAL = 1 S_VERTICAL = 1
} separator_type; } separator_type;
/**
* The style of the separator line.
*/
typedef enum typedef enum
{ {
S_LINE_NONE, S_LINE_NONE,