Browse Source

added doxygen file header

tags/v0.9.3
Dan Lynch 18 years ago
parent
commit
12ca5aa442
3 changed files with 18 additions and 0 deletions
  1. 6
    0
      src/hci/mucurses/alert.c
  2. 6
    0
      src/hci/mucurses/cursor.c
  3. 6
    0
      src/hci/mucurses/cursor.h

+ 6
- 0
src/hci/mucurses/alert.c View File

1
 #include <curses.h>
1
 #include <curses.h>
2
 #include <vsprintf.h>
2
 #include <vsprintf.h>
3
 
3
 
4
+/** @file
5
+ *
6
+ * MuCurses alert functions
7
+ *
8
+ */
9
+
4
 /**
10
 /**
5
  * Audible signal
11
  * Audible signal
6
  *
12
  *

+ 6
- 0
src/hci/mucurses/cursor.c View File

1
 #include <curses.h>
1
 #include <curses.h>
2
 #include "cursor.h"
2
 #include "cursor.h"
3
 
3
 
4
+/** @file
5
+ *
6
+ * MuCurses cursor preserving functions
7
+ *
8
+ */
9
+
4
 /**
10
 /**
5
  * Restore cursor position from encoded backup variable
11
  * Restore cursor position from encoded backup variable
6
  *
12
  *

+ 6
- 0
src/hci/mucurses/cursor.h View File

1
 #ifndef CURSOR_H
1
 #ifndef CURSOR_H
2
 #define CURSOR_H
2
 #define CURSOR_H
3
 
3
 
4
+/** @file
5
+ *
6
+ * MuCurses cursor implementation specific header file
7
+ *
8
+ */
9
+
4
 struct cursor_pos {
10
 struct cursor_pos {
5
 	unsigned int y, x;
11
 	unsigned int y, x;
6
 };
12
 };

Loading…
Cancel
Save