Changeset 122
- Timestamp:
- 08/09/08 16:24:01 (16 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/devel/TODO
r86 r122 3 3 If you are interested in contributing to this project, here's a few 4 4 things you could look into: 5 6 - Currently there is no way on the command line to search for exotic 7 paths/types. For instance, if reglookup encounters an unknown VK 8 type, it just prints it out in Hex. However, if you wanted to search 9 specifically for that type, there is no way to do it. Similarly, it 10 isn't possible to specify certain binary or weird characters in 11 paths. Reglookup should take the user path and unquote each path 12 component using the \xQQ syntax prior to searching. 5 13 6 14 - Testing, testing, and more testing. reglookup needs to be tested on … … 33 41 34 42 - It might be nice to have a way to filter results by security 35 descriptor information. 43 descriptor information. Maybe by MTIME as well. 36 44 37 45 - Documentation. The security descriptor output format needs to be -
trunk/include/lru_cache.h
-
Property
svn:keywords
set to
Id
r108 r122 15 15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 16 16 * 17 * $Id :$17 * $Id$ 18 18 */ 19 19 -
Property
svn:keywords
set to
-
trunk/include/range_list.h
-
Property
svn:keywords
set to
Id
r113 r122 15 15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 16 16 * 17 * $Id :$17 * $Id$ 18 18 */ 19 19 -
Property
svn:keywords
set to
-
trunk/lib/lru_cache.c
-
Property
svn:keywords
set to
Id
r112 r122 15 15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 16 16 * 17 * $Id :$17 * $Id$ 18 18 */ 19 19 -
Property
svn:keywords
set to
-
trunk/lib/range_list.c
-
Property
svn:keywords
set to
Id
r116 r122 15 15 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 16 16 * 17 * $Id :$17 * $Id$ 18 18 */ 19 19 … … 125 125 range_list* rl; 126 126 127 rl = (range_list*)malloc(sizeof(range_list *));127 rl = (range_list*)malloc(sizeof(range_list)); 128 128 if(rl == NULL) 129 129 return NULL; -
Property
svn:keywords
set to
Note: See TracChangeset
for help on using the changeset viewer.