mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:13:00 +00:00
Add .gitattributes and .gitignore files and normalize line endings in the repository (#10)
This commit is contained in:
parent
c609406c2f
commit
9ebf43567d
309 changed files with 66975 additions and 66873 deletions
|
@ -1,205 +1,205 @@
|
|||
/*
|
||||
* ReactOS Win32 Applications
|
||||
* Copyright (C) 2007 ReactOS Team
|
||||
*
|
||||
* 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
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/*
|
||||
* COPYRIGHT : See COPYING in the top level directory
|
||||
* PROJECT : Event Logging Utility
|
||||
* FILE : logevent.c
|
||||
* PROGRAMMER: Marc Piulachs (marc.piulachs at codexchange [dot] net)
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
#include <tchar.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
TCHAR* m_MachineName = NULL;
|
||||
TCHAR* m_Text = "No User Event Text";
|
||||
TCHAR* m_Source = "User Event";
|
||||
WORD m_Severity = EVENTLOG_INFORMATION_TYPE;
|
||||
WORD m_Category = 0;
|
||||
DWORD m_EventID = 1;
|
||||
|
||||
void
|
||||
Usage(VOID)
|
||||
{
|
||||
fputs("Usage: logevent.exe [-m \\MachineName] [options] \"Event Text\"", stderr);
|
||||
fputs("\n\n", stderr);
|
||||
fputs("Options:\n", stderr);
|
||||
fputs(" -s Severity one of:\n", stderr);
|
||||
fputs(" \t(S)uccess\n", stderr);
|
||||
fputs(" \t(I)nformation\n", stderr);
|
||||
fputs(" \t(W)arning\n", stderr);
|
||||
fputs(" \t(E)rror\n", stderr);
|
||||
fputs(" \t(F)ailure\n", stderr);
|
||||
fputs(" -r Source\n", stderr);
|
||||
fputs(" -c Category number\n", stderr);
|
||||
fputs(" -e Event ID\n", stderr);
|
||||
fputs(" /? Help\n", stderr);
|
||||
}
|
||||
|
||||
void
|
||||
WriteEvent (VOID)
|
||||
{
|
||||
HANDLE hAppLog;
|
||||
BOOL bSuccess;
|
||||
LPCTSTR arrLogEntry[] = { m_Text }; //writing just one entry
|
||||
|
||||
/* Get a handle to the Application event log */
|
||||
hAppLog = RegisterEventSource(
|
||||
(LPCSTR)m_MachineName, /* machine */
|
||||
(LPCSTR)m_Source); /* source name */
|
||||
|
||||
/* Now report the event, which will add this event to the event log */
|
||||
bSuccess = ReportEvent(
|
||||
hAppLog, /* event-log handle */
|
||||
m_Severity, /* event type */
|
||||
m_Category, /* category */
|
||||
m_EventID, /* event ID */
|
||||
NULL, /* no user SID */
|
||||
1, /* number of substitution strings */
|
||||
0, /* no binary data */
|
||||
arrLogEntry, /* string array */
|
||||
NULL); /* address of data */
|
||||
|
||||
DeregisterEventSource(hAppLog);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/* Parse command line parameters */
|
||||
static BOOL ParseCmdline(int argc, TCHAR **argv)
|
||||
{
|
||||
INT i;
|
||||
BOOL ShowUsage;
|
||||
BOOL FoundEventText;
|
||||
BOOL InvalidOption;
|
||||
|
||||
if (argc < 2) {
|
||||
ShowUsage = TRUE;
|
||||
} else {
|
||||
ShowUsage = FALSE;
|
||||
}
|
||||
|
||||
FoundEventText = FALSE;
|
||||
InvalidOption = FALSE;
|
||||
|
||||
for (i = 1; i < argc; i++) {
|
||||
if (argv[i][0] == '-' || argv[i][0] == '/') {
|
||||
switch (argv[i][1]) {
|
||||
case 's':
|
||||
case 'S':
|
||||
switch (argv[i + 1][0])
|
||||
{
|
||||
case 's':
|
||||
case 'S':
|
||||
m_Severity = EVENTLOG_SUCCESS;
|
||||
i++;
|
||||
break;
|
||||
case 'i':
|
||||
case 'I':
|
||||
m_Severity = EVENTLOG_INFORMATION_TYPE;
|
||||
i++;
|
||||
break;
|
||||
case 'w':
|
||||
case 'W':
|
||||
m_Severity = EVENTLOG_WARNING_TYPE;
|
||||
i++;
|
||||
break;
|
||||
case 'e':
|
||||
case 'E':
|
||||
m_Severity = EVENTLOG_ERROR_TYPE;
|
||||
i++;
|
||||
break;
|
||||
case 'f':
|
||||
case 'F':
|
||||
m_Severity = EVENTLOG_ERROR_TYPE;
|
||||
i++;
|
||||
break;
|
||||
default:
|
||||
printf("Bad option %s.\n", argv[i]);
|
||||
Usage();
|
||||
return FALSE;
|
||||
}
|
||||
break;
|
||||
case 'm':
|
||||
case 'M':
|
||||
m_MachineName = argv[i + 1];
|
||||
i++;
|
||||
break;
|
||||
case 'r':
|
||||
case 'R':
|
||||
m_Source = argv[i + 1];
|
||||
i++;
|
||||
break;
|
||||
case 'c':
|
||||
case 'C':
|
||||
m_Category = atoi(argv[i + 1]);
|
||||
i++;
|
||||
break;
|
||||
case 'e':
|
||||
case 'E':
|
||||
m_EventID = atoi(argv[i + 1]);
|
||||
i++;
|
||||
break;
|
||||
case '?':
|
||||
ShowUsage = TRUE;
|
||||
break;
|
||||
default:
|
||||
printf("Bad option %s.\n", argv[i]);
|
||||
Usage();
|
||||
return FALSE;
|
||||
}
|
||||
if (InvalidOption) {
|
||||
printf("Bad option format %s.\n", argv[i]);
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
if (FoundEventText) {
|
||||
printf("Bad parameter %s.\n", argv[i]);
|
||||
return FALSE;
|
||||
} else {
|
||||
m_Text = argv[i];
|
||||
FoundEventText = TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ((!ShowUsage) && (!FoundEventText)) {
|
||||
printf("The event text must be specified.\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (ShowUsage) {
|
||||
Usage();
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (ParseCmdline(argc, argv))
|
||||
WriteEvent ();
|
||||
|
||||
return 0;
|
||||
}
|
||||
/*
|
||||
* ReactOS Win32 Applications
|
||||
* Copyright (C) 2007 ReactOS Team
|
||||
*
|
||||
* 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
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/*
|
||||
* COPYRIGHT : See COPYING in the top level directory
|
||||
* PROJECT : Event Logging Utility
|
||||
* FILE : logevent.c
|
||||
* PROGRAMMER: Marc Piulachs (marc.piulachs at codexchange [dot] net)
|
||||
*/
|
||||
|
||||
#include <windows.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
#include <tchar.h>
|
||||
#include <stdarg.h>
|
||||
|
||||
TCHAR* m_MachineName = NULL;
|
||||
TCHAR* m_Text = "No User Event Text";
|
||||
TCHAR* m_Source = "User Event";
|
||||
WORD m_Severity = EVENTLOG_INFORMATION_TYPE;
|
||||
WORD m_Category = 0;
|
||||
DWORD m_EventID = 1;
|
||||
|
||||
void
|
||||
Usage(VOID)
|
||||
{
|
||||
fputs("Usage: logevent.exe [-m \\MachineName] [options] \"Event Text\"", stderr);
|
||||
fputs("\n\n", stderr);
|
||||
fputs("Options:\n", stderr);
|
||||
fputs(" -s Severity one of:\n", stderr);
|
||||
fputs(" \t(S)uccess\n", stderr);
|
||||
fputs(" \t(I)nformation\n", stderr);
|
||||
fputs(" \t(W)arning\n", stderr);
|
||||
fputs(" \t(E)rror\n", stderr);
|
||||
fputs(" \t(F)ailure\n", stderr);
|
||||
fputs(" -r Source\n", stderr);
|
||||
fputs(" -c Category number\n", stderr);
|
||||
fputs(" -e Event ID\n", stderr);
|
||||
fputs(" /? Help\n", stderr);
|
||||
}
|
||||
|
||||
void
|
||||
WriteEvent (VOID)
|
||||
{
|
||||
HANDLE hAppLog;
|
||||
BOOL bSuccess;
|
||||
LPCTSTR arrLogEntry[] = { m_Text }; //writing just one entry
|
||||
|
||||
/* Get a handle to the Application event log */
|
||||
hAppLog = RegisterEventSource(
|
||||
(LPCSTR)m_MachineName, /* machine */
|
||||
(LPCSTR)m_Source); /* source name */
|
||||
|
||||
/* Now report the event, which will add this event to the event log */
|
||||
bSuccess = ReportEvent(
|
||||
hAppLog, /* event-log handle */
|
||||
m_Severity, /* event type */
|
||||
m_Category, /* category */
|
||||
m_EventID, /* event ID */
|
||||
NULL, /* no user SID */
|
||||
1, /* number of substitution strings */
|
||||
0, /* no binary data */
|
||||
arrLogEntry, /* string array */
|
||||
NULL); /* address of data */
|
||||
|
||||
DeregisterEventSource(hAppLog);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
/* Parse command line parameters */
|
||||
static BOOL ParseCmdline(int argc, TCHAR **argv)
|
||||
{
|
||||
INT i;
|
||||
BOOL ShowUsage;
|
||||
BOOL FoundEventText;
|
||||
BOOL InvalidOption;
|
||||
|
||||
if (argc < 2) {
|
||||
ShowUsage = TRUE;
|
||||
} else {
|
||||
ShowUsage = FALSE;
|
||||
}
|
||||
|
||||
FoundEventText = FALSE;
|
||||
InvalidOption = FALSE;
|
||||
|
||||
for (i = 1; i < argc; i++) {
|
||||
if (argv[i][0] == '-' || argv[i][0] == '/') {
|
||||
switch (argv[i][1]) {
|
||||
case 's':
|
||||
case 'S':
|
||||
switch (argv[i + 1][0])
|
||||
{
|
||||
case 's':
|
||||
case 'S':
|
||||
m_Severity = EVENTLOG_SUCCESS;
|
||||
i++;
|
||||
break;
|
||||
case 'i':
|
||||
case 'I':
|
||||
m_Severity = EVENTLOG_INFORMATION_TYPE;
|
||||
i++;
|
||||
break;
|
||||
case 'w':
|
||||
case 'W':
|
||||
m_Severity = EVENTLOG_WARNING_TYPE;
|
||||
i++;
|
||||
break;
|
||||
case 'e':
|
||||
case 'E':
|
||||
m_Severity = EVENTLOG_ERROR_TYPE;
|
||||
i++;
|
||||
break;
|
||||
case 'f':
|
||||
case 'F':
|
||||
m_Severity = EVENTLOG_ERROR_TYPE;
|
||||
i++;
|
||||
break;
|
||||
default:
|
||||
printf("Bad option %s.\n", argv[i]);
|
||||
Usage();
|
||||
return FALSE;
|
||||
}
|
||||
break;
|
||||
case 'm':
|
||||
case 'M':
|
||||
m_MachineName = argv[i + 1];
|
||||
i++;
|
||||
break;
|
||||
case 'r':
|
||||
case 'R':
|
||||
m_Source = argv[i + 1];
|
||||
i++;
|
||||
break;
|
||||
case 'c':
|
||||
case 'C':
|
||||
m_Category = atoi(argv[i + 1]);
|
||||
i++;
|
||||
break;
|
||||
case 'e':
|
||||
case 'E':
|
||||
m_EventID = atoi(argv[i + 1]);
|
||||
i++;
|
||||
break;
|
||||
case '?':
|
||||
ShowUsage = TRUE;
|
||||
break;
|
||||
default:
|
||||
printf("Bad option %s.\n", argv[i]);
|
||||
Usage();
|
||||
return FALSE;
|
||||
}
|
||||
if (InvalidOption) {
|
||||
printf("Bad option format %s.\n", argv[i]);
|
||||
return FALSE;
|
||||
}
|
||||
} else {
|
||||
if (FoundEventText) {
|
||||
printf("Bad parameter %s.\n", argv[i]);
|
||||
return FALSE;
|
||||
} else {
|
||||
m_Text = argv[i];
|
||||
FoundEventText = TRUE;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if ((!ShowUsage) && (!FoundEventText)) {
|
||||
printf("The event text must be specified.\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (ShowUsage) {
|
||||
Usage();
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
if (ParseCmdline(argc, argv))
|
||||
WriteEvent ();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -1,104 +1,104 @@
|
|||
# Microsoft Developer Studio Project File - Name="mkdosfs" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=mkdosfs - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "mkdosfs.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "mkdosfs.mak" CFG="mkdosfs - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "mkdosfs - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "mkdosfs - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "mkdosfs - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x407 /d "NDEBUG"
|
||||
# ADD RSC /l 0x407 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "mkdosfs - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
||||
# ADD RSC /l 0x407 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "mkdosfs - Win32 Release"
|
||||
# Name "mkdosfs - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\getopt.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\mkdosfs.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
# Microsoft Developer Studio Project File - Name="mkdosfs" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=mkdosfs - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "mkdosfs.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "mkdosfs.mak" CFG="mkdosfs - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "mkdosfs - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "mkdosfs - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "mkdosfs - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x407 /d "NDEBUG"
|
||||
# ADD RSC /l 0x407 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "mkdosfs - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x407 /d "_DEBUG"
|
||||
# ADD RSC /l 0x407 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "mkdosfs - Win32 Release"
|
||||
# Name "mkdosfs - Win32 Debug"
|
||||
# Begin Group "Source Files"
|
||||
|
||||
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\getopt.c
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\mkdosfs.c
|
||||
# End Source File
|
||||
# End Group
|
||||
# Begin Group "Header Files"
|
||||
|
||||
# PROP Default_Filter "h;hpp;hxx;hm;inl"
|
||||
# End Group
|
||||
# Begin Group "Resource Files"
|
||||
|
||||
# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
||||
# End Group
|
||||
# End Target
|
||||
# End Project
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "mkdosfs"=".\mkdosfs.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "mkdosfs"=".\mkdosfs.dsp" - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
|
|
|
@ -1,49 +1,49 @@
|
|||
<html>
|
||||
<body>
|
||||
<pre>
|
||||
<h1>Build Log</h1>
|
||||
<h3>
|
||||
--------------------Configuration: mkdosfs - Win32 Release--------------------
|
||||
</h3>
|
||||
<h3>Command Lines</h3>
|
||||
Creating temporary file "C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP173.tmp" with contents
|
||||
[
|
||||
/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Release/mkdosfs.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c
|
||||
"C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c"
|
||||
]
|
||||
Creating command line "cl.exe @"C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP173.tmp""
|
||||
Creating temporary file "C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP174.tmp" with contents
|
||||
[
|
||||
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"Release/mkdosfs.pdb" /machine:I386 /out:"Release/mkdosfs.exe"
|
||||
".\Release\getopt.obj"
|
||||
".\Release\mkdosfs.obj"
|
||||
]
|
||||
Creating command line "link.exe @"C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP174.tmp""
|
||||
<h3>Output Window</h3>
|
||||
Compiling...
|
||||
mkdosfs.c
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(272) : warning C4244: '=' : conversion from '__int64 ' to 'long ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(273) : warning C4244: '=' : conversion from '__int64 ' to 'long ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(487) : warning C4305: 'initializing' : truncation from 'const int ' to 'char '
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(487) : warning C4305: 'initializing' : truncation from 'const int ' to 'char '
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(704) : warning C4018: '<' : signed/unsigned mismatch
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(706) : warning C4018: '>' : signed/unsigned mismatch
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(717) : warning C4018: '<' : signed/unsigned mismatch
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(813) : warning C4244: 'return' : conversion from '__int64 ' to 'int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(888) : warning C4244: '=' : conversion from 'unsigned long ' to 'unsigned short ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(889) : warning C4244: '=' : conversion from 'unsigned long ' to 'unsigned short ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1197) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1223) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1242) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1270) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1387) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1400) : warning C4018: '<=' : signed/unsigned mismatch
|
||||
Linking...
|
||||
|
||||
|
||||
|
||||
<h3>Results</h3>
|
||||
mkdosfs.exe - 0 error(s), 16 warning(s)
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
<html>
|
||||
<body>
|
||||
<pre>
|
||||
<h1>Build Log</h1>
|
||||
<h3>
|
||||
--------------------Configuration: mkdosfs - Win32 Release--------------------
|
||||
</h3>
|
||||
<h3>Command Lines</h3>
|
||||
Creating temporary file "C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP173.tmp" with contents
|
||||
[
|
||||
/nologo /ML /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /Fp"Release/mkdosfs.pch" /YX /Fo"Release/" /Fd"Release/" /FD /c
|
||||
"C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c"
|
||||
]
|
||||
Creating command line "cl.exe @"C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP173.tmp""
|
||||
Creating temporary file "C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP174.tmp" with contents
|
||||
[
|
||||
kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /incremental:no /pdb:"Release/mkdosfs.pdb" /machine:I386 /out:"Release/mkdosfs.exe"
|
||||
".\Release\getopt.obj"
|
||||
".\Release\mkdosfs.obj"
|
||||
]
|
||||
Creating command line "link.exe @"C:\DOKUME~1\JENS-U~1\LOKALE~1\Temp\RSP174.tmp""
|
||||
<h3>Output Window</h3>
|
||||
Compiling...
|
||||
mkdosfs.c
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(272) : warning C4244: '=' : conversion from '__int64 ' to 'long ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(273) : warning C4244: '=' : conversion from '__int64 ' to 'long ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(487) : warning C4305: 'initializing' : truncation from 'const int ' to 'char '
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(487) : warning C4305: 'initializing' : truncation from 'const int ' to 'char '
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(704) : warning C4018: '<' : signed/unsigned mismatch
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(706) : warning C4018: '>' : signed/unsigned mismatch
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(717) : warning C4018: '<' : signed/unsigned mismatch
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(813) : warning C4244: 'return' : conversion from '__int64 ' to 'int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(888) : warning C4244: '=' : conversion from 'unsigned long ' to 'unsigned short ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(889) : warning C4244: '=' : conversion from 'unsigned long ' to 'unsigned short ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1197) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1223) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1242) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1270) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1387) : warning C4244: '=' : conversion from '__int64 ' to 'unsigned int ', possible loss of data
|
||||
C:\cygwin\home\jum\dosfstools-2.8\mkdosfs\mkdosfs.c(1400) : warning C4018: '<=' : signed/unsigned mismatch
|
||||
Linking...
|
||||
|
||||
|
||||
|
||||
<h3>Results</h3>
|
||||
mkdosfs.exe - 0 error(s), 16 warning(s)
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
<?php
|
||||
$file = fopen ("hw.txt", "a");
|
||||
if (!$file) {
|
||||
echo "<p>Unable to open file for writing.\n";
|
||||
exit;
|
||||
}
|
||||
fputs ($file, $_POST['data']. "\n");
|
||||
fclose ($file);
|
||||
echo "_ok_";
|
||||
<?php
|
||||
$file = fopen ("hw.txt", "a");
|
||||
if (!$file) {
|
||||
echo "<p>Unable to open file for writing.\n";
|
||||
exit;
|
||||
}
|
||||
fputs ($file, $_POST['data']. "\n");
|
||||
fclose ($file);
|
||||
echo "_ok_";
|
||||
?>
|
|
@ -1,8 +1,8 @@
|
|||
[URL]
|
||||
udpate = http://iso.reactos.org/_tools/rosddt.ini
|
||||
report = http://iso.reactos.org/_tools/hw.php
|
||||
|
||||
[HW]
|
||||
PCI\VEN_8086&DEV_7000&SUBSYS_00000000&REV_00 = ok
|
||||
ACPI Fixed Feature Button = notwork
|
||||
[URL]
|
||||
udpate = http://iso.reactos.org/_tools/rosddt.ini
|
||||
report = http://iso.reactos.org/_tools/hw.php
|
||||
|
||||
[HW]
|
||||
PCI\VEN_8086&DEV_7000&SUBSYS_00000000&REV_00 = ok
|
||||
ACPI Fixed Feature Button = notwork
|
||||
Intel(R) 82371AB/EB PCI Bus Master IDE Controller = crash
|
|
@ -1,72 +1,72 @@
|
|||
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
BEGIN
|
||||
|
||||
IDS_USAGE "SYSTEMINFO [/S système [/U utilisateur [/P [motdepasse]]]] [/FO format] [/NH]\n\n\
|
||||
Description :\n\
|
||||
Cet outil en ligne de commande permet à un administrateur d'effectuer une requête sur les informations\n\
|
||||
basiques de la configuration du système.\n\n\
|
||||
Parameter List:\n\
|
||||
/S système Spécifie le système distant auquel se connecter.\n\n\
|
||||
/U [domain\\]user Spécifie le contexte utilisateur dans lequel\n\
|
||||
la commande doit être exécutée.\n\n\
|
||||
/P [motdepasse] Spécifie le mot de passe pour le contexte utilisateur\n\
|
||||
fourni. Le demande si ommis.\n\n\
|
||||
/FO format Spécifie le format dans lequel la sortie\n\
|
||||
doit être affichée.\n\
|
||||
Valeurs valides: ""TABLE"", ""LIST"", ""CSV"".\n\n\
|
||||
/NH Spécifie que ""L'entête de colonne"" ne doit\n\
|
||||
pas être affiché dans la sortie.\n\
|
||||
Valide uniquement pour les format ""TABLE"" et ""CSV"".\n\n\
|
||||
/? Affiche cette aide.\n\n\
|
||||
Exemples:\n\
|
||||
SYSTEMINFO\n\
|
||||
SYSTEMINFO /?\n\
|
||||
SYSTEMINFO /S système\n\
|
||||
SYSTEMINFO /S système /U utilisateur\n\
|
||||
SYSTEMINFO /S système /U domaine\\utilisateur /P motdepasse /FO TABLE\n\
|
||||
SYSTEMINFO /S système /FO LIST\n\
|
||||
SYSTEMINFO /S système /FO CSV /NH\n"
|
||||
|
||||
IDS_HOST_NAME, "Nom d'hôte"
|
||||
IDS_OS_NAME, "Nom du système d'exploitation"
|
||||
IDS_OS_VERSION, "Version du système d'exploitation"
|
||||
IDS_BUILD, "Compilation"
|
||||
IDS_OS_BUILD_TYPE, "Type de compilation du système d'exploitation"
|
||||
IDS_REG_OWNER, "Propriétaire enregistré"
|
||||
IDS_REG_ORG, "Organisation enregistrée"
|
||||
IDS_PRODUCT_ID, "ID du produit"
|
||||
IDS_INST_DATE, "Date d'installation"
|
||||
IDS_UP_TIME, "System Up Time"
|
||||
IDS_UP_TIME_FORMAT, "%u Days, %u Hours, %u Minutes, %u Seconds"
|
||||
IDS_SYS_MANUFACTURER, "System Manufacturer"
|
||||
IDS_SYS_MODEL, "System Model"
|
||||
IDS_SYS_TYPE, "Type du système"
|
||||
IDS_PROCESSORS, "Processeur(s)"
|
||||
IDS_PROCESSORS_FORMAT, "%u Processeur(s) installé(s)."
|
||||
IDS_BIOS_DATE, "Date du BIOS"
|
||||
IDS_BIOS_VERSION, "Version du BIOS"
|
||||
IDS_ROS_DIR, "Répertoire ReactOS"
|
||||
IDS_SYS_DIR, "Répertoire système"
|
||||
IDS_BOOT_DEV, "Périphérique de démarrage"
|
||||
IDS_SYS_LOCALE, "Paramètre régional du système"
|
||||
IDS_INPUT_LOCALE, "Paramètre régional de saisie"
|
||||
IDS_TIME_ZONE, "Fuseau horaire"
|
||||
IDS_TOTAL_PHYS_MEM, "Mémoire physique totale"
|
||||
IDS_AVAIL_PHISICAL_MEM, "Mémoire physique disponible"
|
||||
IDS_VIRT_MEM_MAX, "Mémoire virtuelle: Taille max"
|
||||
IDS_VIRT_MEM_AVAIL, "Mémoire virtuelle: Disponible"
|
||||
IDS_VIRT_MEM_INUSE, "Mémoire virtuelle: Utilisée"
|
||||
IDS_PAGEFILE_LOC, "Emplacement(s) des fichiers d'échange"
|
||||
IDS_DOMAIN, "Domaine"
|
||||
IDS_NETWORK_CARDS, "Carte(s) réseau"
|
||||
IDS_NETWORK_CARDS_FORMAT, "%u installée(s)."
|
||||
IDS_CONNECTION_NAME, "Connection Name"
|
||||
IDS_STATUS, "Status"
|
||||
IDS_MEDIA_DISCONNECTED, "Media disconnected"
|
||||
IDS_DHCP_ENABLED, "DHCP Enabled"
|
||||
IDS_NO, "No"
|
||||
IDS_IP_ADDRESSES, "IP address(es)"
|
||||
|
||||
END
|
||||
LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL
|
||||
|
||||
STRINGTABLE DISCARDABLE
|
||||
BEGIN
|
||||
|
||||
IDS_USAGE "SYSTEMINFO [/S système [/U utilisateur [/P [motdepasse]]]] [/FO format] [/NH]\n\n\
|
||||
Description :\n\
|
||||
Cet outil en ligne de commande permet à un administrateur d'effectuer une requête sur les informations\n\
|
||||
basiques de la configuration du système.\n\n\
|
||||
Parameter List:\n\
|
||||
/S système Spécifie le système distant auquel se connecter.\n\n\
|
||||
/U [domain\\]user Spécifie le contexte utilisateur dans lequel\n\
|
||||
la commande doit être exécutée.\n\n\
|
||||
/P [motdepasse] Spécifie le mot de passe pour le contexte utilisateur\n\
|
||||
fourni. Le demande si ommis.\n\n\
|
||||
/FO format Spécifie le format dans lequel la sortie\n\
|
||||
doit être affichée.\n\
|
||||
Valeurs valides: ""TABLE"", ""LIST"", ""CSV"".\n\n\
|
||||
/NH Spécifie que ""L'entête de colonne"" ne doit\n\
|
||||
pas être affiché dans la sortie.\n\
|
||||
Valide uniquement pour les format ""TABLE"" et ""CSV"".\n\n\
|
||||
/? Affiche cette aide.\n\n\
|
||||
Exemples:\n\
|
||||
SYSTEMINFO\n\
|
||||
SYSTEMINFO /?\n\
|
||||
SYSTEMINFO /S système\n\
|
||||
SYSTEMINFO /S système /U utilisateur\n\
|
||||
SYSTEMINFO /S système /U domaine\\utilisateur /P motdepasse /FO TABLE\n\
|
||||
SYSTEMINFO /S système /FO LIST\n\
|
||||
SYSTEMINFO /S système /FO CSV /NH\n"
|
||||
|
||||
IDS_HOST_NAME, "Nom d'hôte"
|
||||
IDS_OS_NAME, "Nom du système d'exploitation"
|
||||
IDS_OS_VERSION, "Version du système d'exploitation"
|
||||
IDS_BUILD, "Compilation"
|
||||
IDS_OS_BUILD_TYPE, "Type de compilation du système d'exploitation"
|
||||
IDS_REG_OWNER, "Propriétaire enregistré"
|
||||
IDS_REG_ORG, "Organisation enregistrée"
|
||||
IDS_PRODUCT_ID, "ID du produit"
|
||||
IDS_INST_DATE, "Date d'installation"
|
||||
IDS_UP_TIME, "System Up Time"
|
||||
IDS_UP_TIME_FORMAT, "%u Days, %u Hours, %u Minutes, %u Seconds"
|
||||
IDS_SYS_MANUFACTURER, "System Manufacturer"
|
||||
IDS_SYS_MODEL, "System Model"
|
||||
IDS_SYS_TYPE, "Type du système"
|
||||
IDS_PROCESSORS, "Processeur(s)"
|
||||
IDS_PROCESSORS_FORMAT, "%u Processeur(s) installé(s)."
|
||||
IDS_BIOS_DATE, "Date du BIOS"
|
||||
IDS_BIOS_VERSION, "Version du BIOS"
|
||||
IDS_ROS_DIR, "Répertoire ReactOS"
|
||||
IDS_SYS_DIR, "Répertoire système"
|
||||
IDS_BOOT_DEV, "Périphérique de démarrage"
|
||||
IDS_SYS_LOCALE, "Paramètre régional du système"
|
||||
IDS_INPUT_LOCALE, "Paramètre régional de saisie"
|
||||
IDS_TIME_ZONE, "Fuseau horaire"
|
||||
IDS_TOTAL_PHYS_MEM, "Mémoire physique totale"
|
||||
IDS_AVAIL_PHISICAL_MEM, "Mémoire physique disponible"
|
||||
IDS_VIRT_MEM_MAX, "Mémoire virtuelle: Taille max"
|
||||
IDS_VIRT_MEM_AVAIL, "Mémoire virtuelle: Disponible"
|
||||
IDS_VIRT_MEM_INUSE, "Mémoire virtuelle: Utilisée"
|
||||
IDS_PAGEFILE_LOC, "Emplacement(s) des fichiers d'échange"
|
||||
IDS_DOMAIN, "Domaine"
|
||||
IDS_NETWORK_CARDS, "Carte(s) réseau"
|
||||
IDS_NETWORK_CARDS_FORMAT, "%u installée(s)."
|
||||
IDS_CONNECTION_NAME, "Connection Name"
|
||||
IDS_STATUS, "Status"
|
||||
IDS_MEDIA_DISCONNECTED, "Media disconnected"
|
||||
IDS_DHCP_ENABLED, "DHCP Enabled"
|
||||
IDS_NO, "No"
|
||||
IDS_IP_ADDRESSES, "IP address(es)"
|
||||
|
||||
END
|
||||
|
|
|
@ -1,169 +1,169 @@
|
|||
# Microsoft Developer Studio Project File - Name="sdkparse" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=sdkparse - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "sdkparse.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "sdkparse.mak" CFG="sdkparse - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "sdkparse - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "sdkparse - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "sdkparse - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "sdkparse - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "sdkparse - Win32 Release"
|
||||
# Name "sdkparse - Win32 Debug"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\assert.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\binary2cstr.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumDirs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumDirsImpl.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumFiles.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumFilesImpl.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\File.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\File.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FixLFN.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Header.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\iskeyword.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\iskeyword.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\safestr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\sdkparse.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\skip_ws.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\skip_ws.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\strip_comments.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\strip_comments.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Symbol.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\tokenize.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Type.h
|
||||
# End Source File
|
||||
# End Target
|
||||
# End Project
|
||||
# Microsoft Developer Studio Project File - Name="sdkparse" - Package Owner=<4>
|
||||
# Microsoft Developer Studio Generated Build File, Format Version 6.00
|
||||
# ** DO NOT EDIT **
|
||||
|
||||
# TARGTYPE "Win32 (x86) Console Application" 0x0103
|
||||
|
||||
CFG=sdkparse - Win32 Debug
|
||||
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
|
||||
!MESSAGE use the Export Makefile command and run
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "sdkparse.mak".
|
||||
!MESSAGE
|
||||
!MESSAGE You can specify a configuration when running NMAKE
|
||||
!MESSAGE by defining the macro CFG on the command line. For example:
|
||||
!MESSAGE
|
||||
!MESSAGE NMAKE /f "sdkparse.mak" CFG="sdkparse - Win32 Debug"
|
||||
!MESSAGE
|
||||
!MESSAGE Possible choices for configuration are:
|
||||
!MESSAGE
|
||||
!MESSAGE "sdkparse - Win32 Release" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE "sdkparse - Win32 Debug" (based on "Win32 (x86) Console Application")
|
||||
!MESSAGE
|
||||
|
||||
# Begin Project
|
||||
# PROP AllowPerConfigDependencies 0
|
||||
# PROP Scc_ProjName ""
|
||||
# PROP Scc_LocalPath ""
|
||||
CPP=cl.exe
|
||||
RSC=rc.exe
|
||||
|
||||
!IF "$(CFG)" == "sdkparse - Win32 Release"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 0
|
||||
# PROP BASE Output_Dir "Release"
|
||||
# PROP BASE Intermediate_Dir "Release"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 0
|
||||
# PROP Output_Dir "Release"
|
||||
# PROP Intermediate_Dir "Release"
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
|
||||
# ADD BASE RSC /l 0x409 /d "NDEBUG"
|
||||
# ADD RSC /l 0x409 /d "NDEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
|
||||
|
||||
!ELSEIF "$(CFG)" == "sdkparse - Win32 Debug"
|
||||
|
||||
# PROP BASE Use_MFC 0
|
||||
# PROP BASE Use_Debug_Libraries 1
|
||||
# PROP BASE Output_Dir "Debug"
|
||||
# PROP BASE Intermediate_Dir "Debug"
|
||||
# PROP BASE Target_Dir ""
|
||||
# PROP Use_MFC 0
|
||||
# PROP Use_Debug_Libraries 1
|
||||
# PROP Output_Dir "Debug"
|
||||
# PROP Intermediate_Dir "Debug"
|
||||
# PROP Ignore_Export_Lib 0
|
||||
# PROP Target_Dir ""
|
||||
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
|
||||
# ADD BASE RSC /l 0x409 /d "_DEBUG"
|
||||
# ADD RSC /l 0x409 /d "_DEBUG"
|
||||
BSC32=bscmake.exe
|
||||
# ADD BASE BSC32 /nologo
|
||||
# ADD BSC32 /nologo
|
||||
LINK32=link.exe
|
||||
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
|
||||
|
||||
!ENDIF
|
||||
|
||||
# Begin Target
|
||||
|
||||
# Name "sdkparse - Win32 Release"
|
||||
# Name "sdkparse - Win32 Debug"
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\assert.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\binary2cstr.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumDirs.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumDirsImpl.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumFiles.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\EnumFilesImpl.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\File.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\File.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\FixLFN.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Header.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\iskeyword.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\iskeyword.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\safestr.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\sdkparse.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\skip_ws.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\skip_ws.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\strip_comments.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\strip_comments.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Symbol.h
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\tokenize.cpp
|
||||
# End Source File
|
||||
# Begin Source File
|
||||
|
||||
SOURCE=.\Type.h
|
||||
# End Source File
|
||||
# End Target
|
||||
# End Project
|
||||
|
|
|
@ -1,29 +1,29 @@
|
|||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "sdkparse"=.\sdkparse.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Microsoft Developer Studio Workspace File, Format Version 6.00
|
||||
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
|
||||
|
||||
###############################################################################
|
||||
|
||||
Project: "sdkparse"=.\sdkparse.dsp - Package Owner=<4>
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<4>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
Global:
|
||||
|
||||
Package=<5>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
Package=<3>
|
||||
{{{
|
||||
}}}
|
||||
|
||||
###############################################################################
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue