Changes by: flatcap
Update of /cvsroot/linux-ntfs/ntfsprogs/libntfs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10440/libntfs
Modified Files:
dir.c runlist.c win32_io.c
Log Message:
add/update function comment blocks
(ok, they need words, but it's a start)
Index: dir.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/dir.c,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -p -r1.36 -r1.37
--- dir.c 30 Oct 2005 22:53:39 -0000 1.36
+++ dir.c 31 Oct 2005 01:15:12 -0000 1.37
@@ -592,6 +592,7 @@ static const ntfschar dotdot[3] = { cons
const_cpu_to_le16('\0') };
/*
+ * union index_union -
* More helpers for ntfs_readdir().
*/
typedef union {
@@ -599,6 +600,10 @@ typedef union {
INDEX_ALLOCATION *ia;
} index_union __attribute__((__transparent_union__));
+/**
+ * enum INDEX_TYPE -
+ * More helpers for ntfs_readdir().
+ */
typedef enum {
INDEX_TYPE_ROOT, /* index root */
INDEX_TYPE_ALLOCATION, /* index allocation */
Index: runlist.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/runlist.c,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -p -r1.64 -r1.65
--- runlist.c 30 Oct 2005 16:12:23 -0000 1.64
+++ runlist.c 31 Oct 2005 01:15:12 -0000 1.65
@@ -2100,7 +2100,7 @@ out:
/**
* test_rl_main -
* @argc:
- * @argv:[]
+ * @argv:
*
* Description...
*
Index: win32_io.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/libntfs/win32_io.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -p -r1.42 -r1.43
--- win32_io.c 28 Oct 2005 12:55:41 -0000 1.42
+++ win32_io.c 31 Oct 2005 01:15:12 -0000 1.43
@@ -78,6 +78,9 @@ static LPFN_SETFILEPOINTEREX fnSetFilePo
#define FNPOSTFIX "A"
#endif
+/**
+ * struct win32_fd -
+ */
typedef struct {
HANDLE handle;
s64 pos; /* Logical current position on the volume. */
|