- Timestamp:
- 03/03/10 14:24:58 (15 years ago)
- Location:
- trunk/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/lru_cache.c
r168 r169 1 /** 2 * @file 3 * 1 /* 4 2 * Copyright (C) 2008-2009 Timothy D. Morgan 5 3 * … … 20 18 */ 21 19 20 /** 21 * @file 22 */ 23 22 24 #include "lru_cache.h" 23 25 -
trunk/lib/range_list.c
r168 r169 1 /** 2 * @file 3 * 4 * Copyright (C) 2008-2009 Timothy D. Morgan 1 /* 2 * Copyright (C) 2008-2010 Timothy D. Morgan 5 3 * 6 4 * This program is free software; you can redistribute it and/or modify … … 20 18 */ 21 19 20 /** 21 * @file 22 */ 23 22 24 #include "range_list.h" 23 25 -
trunk/lib/regfi.c
r168 r169 1 1 /* 2 * Branched from Samba project Subversion repository, version #7470: 3 * http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/trunk/source/registry/regfio.c?rev=7470&view=auto 4 * 5 * Windows NT (and later) registry parsing library 6 * 7 * Copyright (C) 2005-2009 Timothy D. Morgan 2 * Copyright (C) 2005-2010 Timothy D. Morgan 8 3 * Copyright (C) 2005 Gerald (Jerry) Carter 9 4 * … … 24 19 */ 25 20 26 /** @file */ 21 /** 22 * @file 23 * 24 * Windows NT (and later) read-only registry library 25 * 26 * See @ref regfi.h for more information. 27 * 28 * Branched from Samba project Subversion repository, version #7470: 29 * http://viewcvs.samba.org/cgi-bin/viewcvs.cgi/trunk/source/registry/regfio.c?rev=7470&view=auto 30 * 31 * Since then, it has been heavily rewritten, simplified, and improved. 32 */ 27 33 28 34 #include "regfi.h" … … 2544 2550 ret_val->offset = offset; 2545 2551 ret_val->cell_size = cell_length; 2546 ret_val->data = NULL;2547 2552 ret_val->valuename = NULL; 2548 2553 ret_val->valuename_raw = NULL; -
trunk/lib/void_stack.c
r168 r169 1 /** 2 * @file 3 * 4 * This is a really simple implementation of a stack which stores chunks 5 * of memory of any type. 6 * 7 * Copyright (C) 2005,2007,2009 Timothy D. Morgan 1 /* 2 * Copyright (C) 2005,2007,2009-2010 Timothy D. Morgan 8 3 * 9 4 * This program is free software; you can redistribute it and/or modify … … 22 17 * $Id$ 23 18 */ 19 20 /** 21 * @file 22 */ 23 24 24 25 25 #include "void_stack.h" -
trunk/lib/winsec.c
r168 r169 1 /** 2 * @file 3 * This file contains refactored Samba code used to interpret Windows 4 * Security Descriptors. See: 5 * http://websvn.samba.org/cgi-bin/viewcvs.cgi/trunk/source/ 1 /* 6 2 * 7 * Copyright (C) 2005-2006,2009 Timothy D. Morgan3 * Copyright (C) 2005-2006,2009-2010 Timothy D. Morgan 8 4 * Copyright (C) 1992-2005 Samba development team 9 5 * (see individual files under Subversion for details.) … … 25 21 */ 26 22 23 /** @file */ 24 27 25 #include "winsec.h" 28 26
Note: See TracChangeset
for help on using the changeset viewer.