parent
b016aef2ba
commit
ad1e482a7b
|
@ -1,6 +1,4 @@
|
|||
const char *EXEC_NAME = "dumplog";
|
||||
const char *EXEC_VERSION = "1.0";
|
||||
/*
|
||||
/**
|
||||
* DumpLog - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2000-2002 Anton Altaparmakov
|
||||
|
@ -9,8 +7,6 @@ const char *EXEC_VERSION = "1.0";
|
|||
* on the command line and display the results on stdout. Errors will be output
|
||||
* to stderr.
|
||||
*
|
||||
* Anton Altaparmakov <aia21@cantab.net>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
|
@ -39,6 +35,12 @@ const char *EXEC_VERSION = "1.0";
|
|||
#include "mst.h"
|
||||
#include "logfile.h"
|
||||
|
||||
const char *EXEC_NAME = "dumplog";
|
||||
const char *EXEC_VERSION = "1.0";
|
||||
|
||||
/**
|
||||
* main
|
||||
*/
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
s64 l, br;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* ntfscluster - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2002 Richard Russon <ntfs@flatcap.org>
|
||||
* Copyright (c) 2002 Richard Russon
|
||||
*
|
||||
* This utility will XXX
|
||||
*
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
const char *EXEC_NAME = "NtfsDump_LogFile";
|
||||
const char *EXEC_VERSION = "1.0";
|
||||
/*
|
||||
/**
|
||||
* NtfsDump_LogFile - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2000-2002 Anton Altaparmakov
|
||||
|
@ -9,8 +7,6 @@ const char *EXEC_VERSION = "1.0";
|
|||
* NTFS partition and display the results on stdout. Errors will be output to
|
||||
* stderr.
|
||||
*
|
||||
* Anton Altaparmakov <aia21@cantab.net>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
|
@ -56,6 +52,12 @@ const char *EXEC_VERSION = "1.0";
|
|||
#include "logfile.h"
|
||||
#include "mst.h"
|
||||
|
||||
const char *EXEC_NAME = "NtfsDump_LogFile";
|
||||
const char *EXEC_VERSION = "1.0";
|
||||
|
||||
/**
|
||||
* main
|
||||
*/
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
MFT_RECORD *m = NULL;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/*
|
||||
/**
|
||||
* NtfsFix - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2000-2003 Anton Altaparmakov.
|
||||
|
@ -58,6 +58,9 @@
|
|||
#include "disk_io.h"
|
||||
#include "logfile.h"
|
||||
|
||||
/**
|
||||
* main
|
||||
*/
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
s64 l, br;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* ntfsundelete - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2002 Richard Russon <ntfs@flatcap.org>
|
||||
* Copyright (c) 2002 Richard Russon
|
||||
*
|
||||
* This utility will recover deleted files from an NTFS volume.
|
||||
*
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* ntfswipe - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2002 Richard Russon <ntfs@flatcap.org>
|
||||
* Copyright (c) 2002 Richard Russon
|
||||
*
|
||||
* This utility will overwrite usused space on an NTFS volume.
|
||||
*
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
#include "types.h"
|
||||
#include "layout.h"
|
||||
|
||||
/*
|
||||
/**
|
||||
* init_system_file_sd
|
||||
*
|
||||
* NTFS 1.2 - System files security decriptors
|
||||
* ===========================================
|
||||
*
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/**
|
||||
* upcase - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2001 Richard Russon <ntfs@flatcap.org>
|
||||
* Copyright (c) 2001-2002 Anton Altaparmakov <aia21@cantab.net>
|
||||
* Copyright (c) 2001 Richard Russon
|
||||
* Copyright (c) 2001-2002 Anton Altaparmakov
|
||||
*
|
||||
* Modified for mkntfs inclusion 9 June 2001 by Anton Altaparmakov.
|
||||
*
|
||||
|
@ -26,6 +26,9 @@
|
|||
|
||||
#include "types.h"
|
||||
|
||||
/**
|
||||
* init_upcase_table
|
||||
*/
|
||||
void init_upcase_table(uchar_t *uc, u32 uc_len)
|
||||
{
|
||||
static int uc_run_table[][3] = { /* Start, End, Add */
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/**
|
||||
* utils.c - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2002 Richard Russon <ntfs@flatcap.org>
|
||||
* Copyright (c) 2002 Richard Russon
|
||||
*
|
||||
* This utility will recover deleted files from an NTFS volume.
|
||||
* A set of shared functions for ntfs utilities
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/*
|
||||
* utils.c - Part of the Linux-NTFS project.
|
||||
* utils.h - Part of the Linux-NTFS project.
|
||||
*
|
||||
* Copyright (c) 2002 Richard Russon <ntfs@flatcap.org>
|
||||
* Copyright (c) 2002 Richard Russon
|
||||
*
|
||||
* This utility will recover deleted files from an NTFS volume.
|
||||
* A set of shared functions for ntfs utilities
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
Loading…
Reference in New Issue