diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000000..66801774d62 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,82 @@ +# Set the default behavior, in case people don't have core.autocrlf set. +* text=auto + +# Files with these extensions are accepted source files inside the ReactOS +# tree. They should have native line endings of the OS. +*.acf text +*.asm text +*.c text +*.cc text +*.cmake text +*.cpp text +*.cxx text +*.h text +*.hpp text +*.hxx text +*.idl text +*.inc text +*.inl text +*.klc text +*.l text +*.lds text +*.md text +*.rc text +*.s text +*.S text +*.sfd text +*.spec text +*.svg text +*.txt text +*.TXT text +*.y text + +# Files with these extensions end up in the built ReactOS system, so they +# need to have CRLF line endings. +*.bat text eol=crlf +*.cmd text eol=crlf +*.exp text eol=crlf +*.hhc text eol=crlf +*.hhp text eol=crlf +*.ini text eol=crlf +*.INI text eol=crlf +*.inf text eol=crlf +*.inf.tpl text eol=crlf +*.js text eol=crlf +*.manifest text eol=crlf +*.mc text eol=crlf +*.mof text eol=crlf +*.rgs text eol=crlf +*.sif text eol=crlf +*.vbs text eol=crlf +*.vcxproj text eol=crlf + +# Files with these extensions are accepted binary files inside the ReactOS +# tree. Git must not tamper with them at all! +*.avi binary +*.bin binary +*.bmf binary +*.bmp binary +*.BMP binary +*.chm binary +*.cur binary +*.dll binary +*.emf binary +*.gif binary +*.ico binary +*.jpg binary +*.mp3 binary +*.nls binary +*.otf binary +*.pdn binary +*.pfb binary +*.pfm binary +*.png binary +*.psd binary +*.ttc binary +*.ttf binary +*.wav binary +*.xcf binary + +# All other extensions not explicitly mentioned here are left for Git to +# handle automatically. +# You must not rely on them having a particular line ending style! diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000000..3be9623e90c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +output-* diff --git a/base/services/nfsd/.gitattributes b/base/services/nfsd/.gitattributes new file mode 100644 index 00000000000..c32f74cf79f --- /dev/null +++ b/base/services/nfsd/.gitattributes @@ -0,0 +1,3 @@ +# These files are distributed with ReactOS. +ms-nfs41-idmap.conf text eol=crlf +netconfig text eol=crlf diff --git a/boot/bootdata/.gitattributes b/boot/bootdata/.gitattributes new file mode 100644 index 00000000000..6b7a8fc6dc9 --- /dev/null +++ b/boot/bootdata/.gitattributes @@ -0,0 +1,2 @@ +# This one will be distributed in the ISO. +readme.txt text eol=crlf diff --git a/boot/bootdata/bootcdregtest/.gitattributes b/boot/bootdata/bootcdregtest/.gitattributes new file mode 100644 index 00000000000..e6703be71f7 --- /dev/null +++ b/boot/bootdata/bootcdregtest/.gitattributes @@ -0,0 +1,2 @@ +# This file is not handled by the default .gitattributes +testboot.bat.sample text eol=crlf diff --git a/hal/halx86/legacy/bus/.gitattributes b/hal/halx86/legacy/bus/.gitattributes new file mode 100644 index 00000000000..d58638ba9b7 --- /dev/null +++ b/hal/halx86/legacy/bus/.gitattributes @@ -0,0 +1,2 @@ +pci_classes.ids text eol=crlf +pci_vendors.ids text eol=crlf diff --git a/media/drivers/etc/.gitattributes b/media/drivers/etc/.gitattributes new file mode 100644 index 00000000000..a7f045379b6 --- /dev/null +++ b/media/drivers/etc/.gitattributes @@ -0,0 +1,6 @@ +# These files are distributed with ReactOS. +hosts text eol=crlf +KDBinit text eol=crlf +networks text eol=crlf +protocol text eol=crlf +services text eol=crlf diff --git a/media/rapps/.gitattributes b/media/rapps/.gitattributes new file mode 100644 index 00000000000..2d12995658a --- /dev/null +++ b/media/rapps/.gitattributes @@ -0,0 +1,2 @@ +# RAPPS .txt files are distributed as part of ReactOS. +*.txt text eol=crlf diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt index cafa4b33969..e09868d0337 100644 --- a/modules/CMakeLists.txt +++ b/modules/CMakeLists.txt @@ -1,13 +1,13 @@ -if(ENABLE_ROSTESTS) +if(ENABLE_ROSTESTS) add_subdirectory(rostests) endif() -if(ENABLE_ROSAPPS) +if(ENABLE_ROSAPPS) add_subdirectory(rosapps) endif() -if(ENABLE_WALLPAPERS) +if(ENABLE_WALLPAPERS) add_subdirectory(wallpapers) endif() diff --git a/modules/rosapps/applications/cmdutils/uptime/uptime.c b/modules/rosapps/applications/cmdutils/uptime/uptime.c index 2ad49b13c35..bedecb19bfc 100644 --- a/modules/rosapps/applications/cmdutils/uptime/uptime.c +++ b/modules/rosapps/applications/cmdutils/uptime/uptime.c @@ -1,34 +1,34 @@ -#define WIN32_LEAN_AND_MEAN -#include -#include -#include - -int main(int argc, char* argv[]) -{ - SYSTEMTIME SystemTime; - LARGE_INTEGER liCount, liFreq; - - GetLocalTime(&SystemTime); - - if (QueryPerformanceCounter(&liCount) && - QueryPerformanceFrequency(&liFreq)) - { - LONGLONG TotalSecs = liCount.QuadPart / liFreq.QuadPart; - LONGLONG Days = (TotalSecs / 86400); - LONGLONG Hours = ((TotalSecs % 86400) / 3600); - LONGLONG Mins = ((TotalSecs % 86400) % 3600) / 60; - LONGLONG Secs = ((TotalSecs % 86400) % 3600) % 60; - -#ifdef LINUX_OUTPUT - UNREFERENCED_PARAMETER(Secs); - _tprintf(_T(" %.2u:%.2u "), SystemTime.wHour, SystemTime.wMinute); - _tprintf(_T("up %I64u days, %I64u:%I64u\n"), Days, Hours, Mins); /*%.2I64u secs*/ -#else - _tprintf(_T("System Up Time:\t\t%I64u days, %I64u Hours, %I64u Minutes, %.2I64u Seconds\n"), - Days, Hours, Mins, Secs); -#endif - return 0; - } - - return -1; -} +#define WIN32_LEAN_AND_MEAN +#include +#include +#include + +int main(int argc, char* argv[]) +{ + SYSTEMTIME SystemTime; + LARGE_INTEGER liCount, liFreq; + + GetLocalTime(&SystemTime); + + if (QueryPerformanceCounter(&liCount) && + QueryPerformanceFrequency(&liFreq)) + { + LONGLONG TotalSecs = liCount.QuadPart / liFreq.QuadPart; + LONGLONG Days = (TotalSecs / 86400); + LONGLONG Hours = ((TotalSecs % 86400) / 3600); + LONGLONG Mins = ((TotalSecs % 86400) % 3600) / 60; + LONGLONG Secs = ((TotalSecs % 86400) % 3600) % 60; + +#ifdef LINUX_OUTPUT + UNREFERENCED_PARAMETER(Secs); + _tprintf(_T(" %.2u:%.2u "), SystemTime.wHour, SystemTime.wMinute); + _tprintf(_T("up %I64u days, %I64u:%I64u\n"), Days, Hours, Mins); /*%.2I64u secs*/ +#else + _tprintf(_T("System Up Time:\t\t%I64u days, %I64u Hours, %I64u Minutes, %.2I64u Seconds\n"), + Days, Hours, Mins, Secs); +#endif + return 0; + } + + return -1; +} diff --git a/modules/rosapps/applications/devutils/gdihv/gdi.h b/modules/rosapps/applications/devutils/gdihv/gdi.h index d54b39852ad..60eed9d18fc 100644 --- a/modules/rosapps/applications/devutils/gdihv/gdi.h +++ b/modules/rosapps/applications/devutils/gdihv/gdi.h @@ -1,66 +1,66 @@ -typedef struct _GDI_TABLE_ENTRY -{ - PVOID KernelData; /* Points to the kernel mode structure */ - HANDLE ProcessId; /* process id that created the object, 0 for stock objects */ - LONG Type; /* the first 16 bit is the object type including the stock obj flag, the last 16 bits is just the object type */ - PVOID UserData; /* Points to the user mode structure, usually NULL though */ -} GDI_TABLE_ENTRY, *PGDI_TABLE_ENTRY; - -typedef PGDI_TABLE_ENTRY (CALLBACK * GDIQUERYPROC) (void); - -/* GDI handle table can hold 0x4000 handles */ -#define GDI_HANDLE_COUNT 0x10000 -#define GDI_GLOBAL_PROCESS (0x0) - -/* Handle Masks and shifts */ -#define GDI_HANDLE_INDEX_MASK (GDI_HANDLE_COUNT - 1) -#define GDI_HANDLE_TYPE_MASK 0x007f0000 -#define GDI_HANDLE_BASETYPE_MASK 0x001f0000 -#define GDI_HANDLE_STOCK_MASK 0x00800000 -#define GDI_HANDLE_REUSE_MASK 0xff000000 -#define GDI_HANDLE_REUSECNT_SHIFT 24 -#define GDI_HANDLE_UPPER_MASK 0x0000ffff - -/* Handle macros */ -#define GDI_HANDLE_CREATE(i, t) \ - ((HANDLE)(((i) & GDI_HANDLE_INDEX_MASK) | ((t) << 16))) - -#define GDI_HANDLE_GET_INDEX(h) \ - (((ULONG_PTR)(h)) & GDI_HANDLE_INDEX_MASK) - -#define GDI_HANDLE_GET_TYPE(h) \ - (((ULONG_PTR)(h)) & GDI_HANDLE_TYPE_MASK) - -#define GDI_HANDLE_IS_TYPE(h, t) \ - ((t) == (((ULONG_PTR)(h)) & GDI_HANDLE_TYPE_MASK)) - -#define GDI_HANDLE_IS_STOCKOBJ(h) \ - (0 != (((ULONG_PTR)(h)) & GDI_HANDLE_STOCK_MASK)) - -#define GDI_HANDLE_SET_STOCKOBJ(h) \ - ((h) = (HANDLE)(((ULONG_PTR)(h)) | GDI_HANDLE_STOCK_MASK)) - -#define GDI_HANDLE_GET_UPPER(h) \ - (((ULONG_PTR)(h)) & GDI_HANDLE_UPPER_MASK) - -#define GDI_OBJECT_TYPE_DC 0x00010000 -#define GDI_OBJECT_TYPE_REGION 0x00040000 -#define GDI_OBJECT_TYPE_BITMAP 0x00050000 -#define GDI_OBJECT_TYPE_PALETTE 0x00080000 -#define GDI_OBJECT_TYPE_FONT 0x000a0000 -#define GDI_OBJECT_TYPE_PFE 0x000c0000 -#define GDI_OBJECT_TYPE_BRUSH 0x00100000 -#define GDI_OBJECT_TYPE_EMF 0x00210000 -#define GDI_OBJECT_TYPE_PEN 0x00300000 -#define GDI_OBJECT_TYPE_EXTPEN 0x00500000 -#define GDI_OBJECT_TYPE_COLORSPACE 0x00090000 -#define GDI_OBJECT_TYPE_METADC 0x00660000 -#define GDI_OBJECT_TYPE_METAFILE 0x00260000 -#define GDI_OBJECT_TYPE_ENHMETAFILE 0x00460000 -/* Following object types made up for ROS */ -#define GDI_OBJECT_TYPE_ENHMETADC 0x00740000 -#define GDI_OBJECT_TYPE_MEMDC 0x00750000 -#define GDI_OBJECT_TYPE_DCE 0x00770000 -#define GDI_OBJECT_TYPE_DONTCARE 0x007f0000 -/** Not really an object type. Forces GDI_FreeObj to be silent. */ -#define GDI_OBJECT_TYPE_SILENT 0x80000000 +typedef struct _GDI_TABLE_ENTRY +{ + PVOID KernelData; /* Points to the kernel mode structure */ + HANDLE ProcessId; /* process id that created the object, 0 for stock objects */ + LONG Type; /* the first 16 bit is the object type including the stock obj flag, the last 16 bits is just the object type */ + PVOID UserData; /* Points to the user mode structure, usually NULL though */ +} GDI_TABLE_ENTRY, *PGDI_TABLE_ENTRY; + +typedef PGDI_TABLE_ENTRY (CALLBACK * GDIQUERYPROC) (void); + +/* GDI handle table can hold 0x4000 handles */ +#define GDI_HANDLE_COUNT 0x10000 +#define GDI_GLOBAL_PROCESS (0x0) + +/* Handle Masks and shifts */ +#define GDI_HANDLE_INDEX_MASK (GDI_HANDLE_COUNT - 1) +#define GDI_HANDLE_TYPE_MASK 0x007f0000 +#define GDI_HANDLE_BASETYPE_MASK 0x001f0000 +#define GDI_HANDLE_STOCK_MASK 0x00800000 +#define GDI_HANDLE_REUSE_MASK 0xff000000 +#define GDI_HANDLE_REUSECNT_SHIFT 24 +#define GDI_HANDLE_UPPER_MASK 0x0000ffff + +/* Handle macros */ +#define GDI_HANDLE_CREATE(i, t) \ + ((HANDLE)(((i) & GDI_HANDLE_INDEX_MASK) | ((t) << 16))) + +#define GDI_HANDLE_GET_INDEX(h) \ + (((ULONG_PTR)(h)) & GDI_HANDLE_INDEX_MASK) + +#define GDI_HANDLE_GET_TYPE(h) \ + (((ULONG_PTR)(h)) & GDI_HANDLE_TYPE_MASK) + +#define GDI_HANDLE_IS_TYPE(h, t) \ + ((t) == (((ULONG_PTR)(h)) & GDI_HANDLE_TYPE_MASK)) + +#define GDI_HANDLE_IS_STOCKOBJ(h) \ + (0 != (((ULONG_PTR)(h)) & GDI_HANDLE_STOCK_MASK)) + +#define GDI_HANDLE_SET_STOCKOBJ(h) \ + ((h) = (HANDLE)(((ULONG_PTR)(h)) | GDI_HANDLE_STOCK_MASK)) + +#define GDI_HANDLE_GET_UPPER(h) \ + (((ULONG_PTR)(h)) & GDI_HANDLE_UPPER_MASK) + +#define GDI_OBJECT_TYPE_DC 0x00010000 +#define GDI_OBJECT_TYPE_REGION 0x00040000 +#define GDI_OBJECT_TYPE_BITMAP 0x00050000 +#define GDI_OBJECT_TYPE_PALETTE 0x00080000 +#define GDI_OBJECT_TYPE_FONT 0x000a0000 +#define GDI_OBJECT_TYPE_PFE 0x000c0000 +#define GDI_OBJECT_TYPE_BRUSH 0x00100000 +#define GDI_OBJECT_TYPE_EMF 0x00210000 +#define GDI_OBJECT_TYPE_PEN 0x00300000 +#define GDI_OBJECT_TYPE_EXTPEN 0x00500000 +#define GDI_OBJECT_TYPE_COLORSPACE 0x00090000 +#define GDI_OBJECT_TYPE_METADC 0x00660000 +#define GDI_OBJECT_TYPE_METAFILE 0x00260000 +#define GDI_OBJECT_TYPE_ENHMETAFILE 0x00460000 +/* Following object types made up for ROS */ +#define GDI_OBJECT_TYPE_ENHMETADC 0x00740000 +#define GDI_OBJECT_TYPE_MEMDC 0x00750000 +#define GDI_OBJECT_TYPE_DCE 0x00770000 +#define GDI_OBJECT_TYPE_DONTCARE 0x007f0000 +/** Not really an object type. Forces GDI_FreeObj to be silent. */ +#define GDI_OBJECT_TYPE_SILENT 0x80000000 diff --git a/modules/rosapps/applications/devutils/gdihv/gdihv.c b/modules/rosapps/applications/devutils/gdihv/gdihv.c index 2a2b8153b6c..935f851ae0e 100644 --- a/modules/rosapps/applications/devutils/gdihv/gdihv.c +++ b/modules/rosapps/applications/devutils/gdihv/gdihv.c @@ -1,53 +1,53 @@ -/* - * Gdi handle viewer - * - * gdihv.c - * - * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> - * - * 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. - */ - -#include "gdihv.h" - -HINSTANCE g_hInstance; -PGDI_TABLE_ENTRY GdiHandleTable = 0; - -static -PGDI_TABLE_ENTRY -MyGdiQueryTable() -{ - PTEB pTeb = NtCurrentTeb(); - PPEB pPeb = pTeb->ProcessEnvironmentBlock; - return pPeb->GdiSharedHandleTable; -} - -int WINAPI _tWinMain (HINSTANCE hThisInstance, - HINSTANCE hPrevInstance, - LPTSTR lpszArgument, - int nStyle) - -{ - g_hInstance = hThisInstance; - - InitCommonControls(); - - GdiHandleTable = MyGdiQueryTable(); - - DialogBoxParam(g_hInstance, MAKEINTRESOURCE(IDD_MAINWND), HWND_DESKTOP, MainWindow_WndProc, 0); - - /* The program return value is 0 */ - return 0; -} +/* + * Gdi handle viewer + * + * gdihv.c + * + * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> + * + * 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. + */ + +#include "gdihv.h" + +HINSTANCE g_hInstance; +PGDI_TABLE_ENTRY GdiHandleTable = 0; + +static +PGDI_TABLE_ENTRY +MyGdiQueryTable() +{ + PTEB pTeb = NtCurrentTeb(); + PPEB pPeb = pTeb->ProcessEnvironmentBlock; + return pPeb->GdiSharedHandleTable; +} + +int WINAPI _tWinMain (HINSTANCE hThisInstance, + HINSTANCE hPrevInstance, + LPTSTR lpszArgument, + int nStyle) + +{ + g_hInstance = hThisInstance; + + InitCommonControls(); + + GdiHandleTable = MyGdiQueryTable(); + + DialogBoxParam(g_hInstance, MAKEINTRESOURCE(IDD_MAINWND), HWND_DESKTOP, MainWindow_WndProc, 0); + + /* The program return value is 0 */ + return 0; +} diff --git a/modules/rosapps/applications/devutils/gdihv/gdihv.h b/modules/rosapps/applications/devutils/gdihv/gdihv.h index 3a8415817d7..411dfe768ba 100644 --- a/modules/rosapps/applications/devutils/gdihv/gdihv.h +++ b/modules/rosapps/applications/devutils/gdihv/gdihv.h @@ -1,21 +1,21 @@ -#ifndef _GDIHV_H -#define _GDIHV_H - -#include -#define WIN32_NO_STATUS -#include -#include -#include -#include - -#include "gdi.h" -#include "mainwnd.h" -#include "proclist.h" -#include "handlelist.h" - -#include "resource.h" - -extern PGDI_TABLE_ENTRY GdiHandleTable; -extern HINSTANCE g_hInstance; - -#endif //_GDIHV_H +#ifndef _GDIHV_H +#define _GDIHV_H + +#include +#define WIN32_NO_STATUS +#include +#include +#include +#include + +#include "gdi.h" +#include "mainwnd.h" +#include "proclist.h" +#include "handlelist.h" + +#include "resource.h" + +extern PGDI_TABLE_ENTRY GdiHandleTable; +extern HINSTANCE g_hInstance; + +#endif //_GDIHV_H diff --git a/modules/rosapps/applications/devutils/gdihv/handlelist.c b/modules/rosapps/applications/devutils/gdihv/handlelist.c index a1a3a8f03ac..63bf2419628 100644 --- a/modules/rosapps/applications/devutils/gdihv/handlelist.c +++ b/modules/rosapps/applications/devutils/gdihv/handlelist.c @@ -1,194 +1,194 @@ -/* - * Gdi handle viewer - * - * handlelist.c - * - * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> - * - * 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. - */ - -#include "gdihv.h" - -VOID -HandleList_Create(HWND hListCtrl) -{ - LVCOLUMN column; - - column.mask = LVCF_TEXT|LVCF_FMT|LVCF_WIDTH; - column.fmt = LVCFMT_LEFT; - - column.pszText = L"Number"; - column.cx = 50; - (void)ListView_InsertColumn(hListCtrl, 0, &column); - - column.pszText = L"Index"; - column.cx = 45; - (void)ListView_InsertColumn(hListCtrl, 1, &column); - - column.pszText = L"Handle"; - column.cx = 90; - (void)ListView_InsertColumn(hListCtrl, 2, &column); - - column.pszText = L"Type"; - column.cx = 80; - (void)ListView_InsertColumn(hListCtrl, 3, &column); - - column.pszText = L"Process"; - column.cx = 80; - (void)ListView_InsertColumn(hListCtrl, 4, &column); - - column.pszText = L"KernelData"; - column.cx = 80; - (void)ListView_InsertColumn(hListCtrl, 5, &column); - - column.pszText = L"UserData"; - column.cx = 80; - (void)ListView_InsertColumn(hListCtrl, 6, &column); - - column.pszText = L"Type"; - column.cx = 80; - (void)ListView_InsertColumn(hListCtrl, 7, &column); - - HandleList_Update(hListCtrl, 0); -} - -VOID -HandleList_Update(HWND hHandleListCtrl, HANDLE ProcessId) -{ - INT i, index; - HANDLE handle; - PGDI_TABLE_ENTRY pEntry; - LVITEM item; - TCHAR strText[80]; - TCHAR* str2; - - (void)ListView_DeleteAllItems(hHandleListCtrl); - item.mask = LVIF_TEXT|LVIF_PARAM; - item.pszText = strText; - item.cchTextMax = 80; - for (i = 0; i<= GDI_HANDLE_COUNT; i++) - { - pEntry = &GdiHandleTable[i]; - if ( ((ProcessId != (HANDLE)1) && ((pEntry->Type & GDI_HANDLE_BASETYPE_MASK) != 0)) || - ((ProcessId == (HANDLE)1) && ((pEntry->Type & GDI_HANDLE_BASETYPE_MASK) == 0)) || - (ProcessId == (HANDLE)2) ) - { - if (ProcessId == (HANDLE)1 || ProcessId == (HANDLE)2 || - ((LONG)ProcessId & 0xfffc) == ((ULONG)pEntry->ProcessId & 0xfffc)) - { - handle = GDI_HANDLE_CREATE(i, pEntry->Type); - index = ListView_GetItemCount(hHandleListCtrl); - item.iItem = index; - item.iSubItem = 0; - item.lParam = (LPARAM)handle; - - wsprintf(strText, L"%d", index); - (void)ListView_InsertItem(hHandleListCtrl, &item); - - wsprintf(strText, L"%d", i); - ListView_SetItemText(hHandleListCtrl, index, 1, strText); - - wsprintf(strText, L"%#08x", handle); - ListView_SetItemText(hHandleListCtrl, index, 2, strText); - - str2 = GetTypeName(handle); - ListView_SetItemText(hHandleListCtrl, index, 3, str2); - - wsprintf(strText, L"%#08x", (UINT)pEntry->ProcessId); - ListView_SetItemText(hHandleListCtrl, index, 4, strText); - - wsprintf(strText, L"%#08x", (UINT)pEntry->KernelData); - ListView_SetItemText(hHandleListCtrl, index, 5, strText); - - wsprintf(strText, L"%#08x", (UINT)pEntry->UserData); - ListView_SetItemText(hHandleListCtrl, index, 6, strText); - - wsprintf(strText, L"%#08x", (UINT)pEntry->Type); - ListView_SetItemText(hHandleListCtrl, index, 7, strText); - } - } - } -} - -TCHAR* -GetTypeName(HANDLE handle) -{ - TCHAR* strText; - UINT Type = GDI_HANDLE_GET_TYPE(handle); - - switch (Type) - { - case GDI_OBJECT_TYPE_DC: - strText = L"DC"; - break; - case GDI_OBJECT_TYPE_REGION: - strText = L"Region"; - break; - case GDI_OBJECT_TYPE_BITMAP: - strText = L"Bitmap"; - break; - case GDI_OBJECT_TYPE_PALETTE: - strText = L"Palette"; - break; - case GDI_OBJECT_TYPE_FONT: - strText = L"Font"; - break; - case GDI_OBJECT_TYPE_BRUSH: - strText = L"Brush"; - break; - case GDI_OBJECT_TYPE_EMF: - strText = L"EMF"; - break; - case GDI_OBJECT_TYPE_PEN: - strText = L"Pen"; - break; - case GDI_OBJECT_TYPE_EXTPEN: - strText = L"ExtPen"; - break; - case GDI_OBJECT_TYPE_COLORSPACE: - strText = L"ColSpace"; - break; - case GDI_OBJECT_TYPE_METADC: - strText = L"MetaDC"; - break; - case GDI_OBJECT_TYPE_METAFILE: - strText = L"Metafile"; - break; - case GDI_OBJECT_TYPE_ENHMETAFILE: - strText = L"EMF"; - break; - case GDI_OBJECT_TYPE_ENHMETADC: - strText = L"EMDC"; - break; - case GDI_OBJECT_TYPE_MEMDC: - strText = L"MemDC"; - break; - case GDI_OBJECT_TYPE_DCE: - strText = L"DCE"; - break; - case GDI_OBJECT_TYPE_PFE: - strText = L"PFE"; - break; - case GDI_OBJECT_TYPE_DONTCARE: - strText = L"anything"; - break; - case GDI_OBJECT_TYPE_SILENT: - default: - strText = L"unknown"; - break; - } - return strText; -} +/* + * Gdi handle viewer + * + * handlelist.c + * + * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> + * + * 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. + */ + +#include "gdihv.h" + +VOID +HandleList_Create(HWND hListCtrl) +{ + LVCOLUMN column; + + column.mask = LVCF_TEXT|LVCF_FMT|LVCF_WIDTH; + column.fmt = LVCFMT_LEFT; + + column.pszText = L"Number"; + column.cx = 50; + (void)ListView_InsertColumn(hListCtrl, 0, &column); + + column.pszText = L"Index"; + column.cx = 45; + (void)ListView_InsertColumn(hListCtrl, 1, &column); + + column.pszText = L"Handle"; + column.cx = 90; + (void)ListView_InsertColumn(hListCtrl, 2, &column); + + column.pszText = L"Type"; + column.cx = 80; + (void)ListView_InsertColumn(hListCtrl, 3, &column); + + column.pszText = L"Process"; + column.cx = 80; + (void)ListView_InsertColumn(hListCtrl, 4, &column); + + column.pszText = L"KernelData"; + column.cx = 80; + (void)ListView_InsertColumn(hListCtrl, 5, &column); + + column.pszText = L"UserData"; + column.cx = 80; + (void)ListView_InsertColumn(hListCtrl, 6, &column); + + column.pszText = L"Type"; + column.cx = 80; + (void)ListView_InsertColumn(hListCtrl, 7, &column); + + HandleList_Update(hListCtrl, 0); +} + +VOID +HandleList_Update(HWND hHandleListCtrl, HANDLE ProcessId) +{ + INT i, index; + HANDLE handle; + PGDI_TABLE_ENTRY pEntry; + LVITEM item; + TCHAR strText[80]; + TCHAR* str2; + + (void)ListView_DeleteAllItems(hHandleListCtrl); + item.mask = LVIF_TEXT|LVIF_PARAM; + item.pszText = strText; + item.cchTextMax = 80; + for (i = 0; i<= GDI_HANDLE_COUNT; i++) + { + pEntry = &GdiHandleTable[i]; + if ( ((ProcessId != (HANDLE)1) && ((pEntry->Type & GDI_HANDLE_BASETYPE_MASK) != 0)) || + ((ProcessId == (HANDLE)1) && ((pEntry->Type & GDI_HANDLE_BASETYPE_MASK) == 0)) || + (ProcessId == (HANDLE)2) ) + { + if (ProcessId == (HANDLE)1 || ProcessId == (HANDLE)2 || + ((LONG)ProcessId & 0xfffc) == ((ULONG)pEntry->ProcessId & 0xfffc)) + { + handle = GDI_HANDLE_CREATE(i, pEntry->Type); + index = ListView_GetItemCount(hHandleListCtrl); + item.iItem = index; + item.iSubItem = 0; + item.lParam = (LPARAM)handle; + + wsprintf(strText, L"%d", index); + (void)ListView_InsertItem(hHandleListCtrl, &item); + + wsprintf(strText, L"%d", i); + ListView_SetItemText(hHandleListCtrl, index, 1, strText); + + wsprintf(strText, L"%#08x", handle); + ListView_SetItemText(hHandleListCtrl, index, 2, strText); + + str2 = GetTypeName(handle); + ListView_SetItemText(hHandleListCtrl, index, 3, str2); + + wsprintf(strText, L"%#08x", (UINT)pEntry->ProcessId); + ListView_SetItemText(hHandleListCtrl, index, 4, strText); + + wsprintf(strText, L"%#08x", (UINT)pEntry->KernelData); + ListView_SetItemText(hHandleListCtrl, index, 5, strText); + + wsprintf(strText, L"%#08x", (UINT)pEntry->UserData); + ListView_SetItemText(hHandleListCtrl, index, 6, strText); + + wsprintf(strText, L"%#08x", (UINT)pEntry->Type); + ListView_SetItemText(hHandleListCtrl, index, 7, strText); + } + } + } +} + +TCHAR* +GetTypeName(HANDLE handle) +{ + TCHAR* strText; + UINT Type = GDI_HANDLE_GET_TYPE(handle); + + switch (Type) + { + case GDI_OBJECT_TYPE_DC: + strText = L"DC"; + break; + case GDI_OBJECT_TYPE_REGION: + strText = L"Region"; + break; + case GDI_OBJECT_TYPE_BITMAP: + strText = L"Bitmap"; + break; + case GDI_OBJECT_TYPE_PALETTE: + strText = L"Palette"; + break; + case GDI_OBJECT_TYPE_FONT: + strText = L"Font"; + break; + case GDI_OBJECT_TYPE_BRUSH: + strText = L"Brush"; + break; + case GDI_OBJECT_TYPE_EMF: + strText = L"EMF"; + break; + case GDI_OBJECT_TYPE_PEN: + strText = L"Pen"; + break; + case GDI_OBJECT_TYPE_EXTPEN: + strText = L"ExtPen"; + break; + case GDI_OBJECT_TYPE_COLORSPACE: + strText = L"ColSpace"; + break; + case GDI_OBJECT_TYPE_METADC: + strText = L"MetaDC"; + break; + case GDI_OBJECT_TYPE_METAFILE: + strText = L"Metafile"; + break; + case GDI_OBJECT_TYPE_ENHMETAFILE: + strText = L"EMF"; + break; + case GDI_OBJECT_TYPE_ENHMETADC: + strText = L"EMDC"; + break; + case GDI_OBJECT_TYPE_MEMDC: + strText = L"MemDC"; + break; + case GDI_OBJECT_TYPE_DCE: + strText = L"DCE"; + break; + case GDI_OBJECT_TYPE_PFE: + strText = L"PFE"; + break; + case GDI_OBJECT_TYPE_DONTCARE: + strText = L"anything"; + break; + case GDI_OBJECT_TYPE_SILENT: + default: + strText = L"unknown"; + break; + } + return strText; +} diff --git a/modules/rosapps/applications/devutils/gdihv/handlelist.h b/modules/rosapps/applications/devutils/gdihv/handlelist.h index 9b40878fe25..648f0d63909 100644 --- a/modules/rosapps/applications/devutils/gdihv/handlelist.h +++ b/modules/rosapps/applications/devutils/gdihv/handlelist.h @@ -1,4 +1,4 @@ - -VOID HandleList_Create(HWND hListCtrl); -VOID HandleList_Update(HWND hHandleListCtrl, HANDLE ProcessID); -TCHAR* GetTypeName(HANDLE handle); + +VOID HandleList_Create(HWND hListCtrl); +VOID HandleList_Update(HWND hHandleListCtrl, HANDLE ProcessID); +TCHAR* GetTypeName(HANDLE handle); diff --git a/modules/rosapps/applications/devutils/gdihv/mainwnd.c b/modules/rosapps/applications/devutils/gdihv/mainwnd.c index ba0f4a990ca..70ddb059f0b 100644 --- a/modules/rosapps/applications/devutils/gdihv/mainwnd.c +++ b/modules/rosapps/applications/devutils/gdihv/mainwnd.c @@ -1,147 +1,147 @@ -/* - * Gdi handle viewer - * - * mainwnd.c - * - * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> - * - * 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. - */ - -#include "gdihv.h" - -INT g_Separator; - - -static LRESULT -MainWindow_OnSize(HWND hMainWnd) -{ - HWND hProcessListctrl, hHandleListCtrl, hProcessRefresh, hHandleRefresh; - RECT rect; - - hProcessListctrl = GetDlgItem(hMainWnd, IDC_PROCESSLIST); - hHandleListCtrl = GetDlgItem(hMainWnd, IDC_HANDLELIST); - hProcessRefresh = GetDlgItem(hMainWnd, IDC_REFRESHPROCESS); - hHandleRefresh = GetDlgItem(hMainWnd, IDC_REFRESHHANDLE); - - GetClientRect(hMainWnd, &rect); - -//g_Separator = (rect.right / 2); - MoveWindow(hProcessListctrl, 5, 5, g_Separator - 5, rect.bottom - 40, TRUE); - MoveWindow(hHandleListCtrl, g_Separator + 5, 5, rect.right - g_Separator - 5, rect.bottom - 40, TRUE); - MoveWindow(hProcessRefresh, g_Separator - 90, rect.bottom - 30, 90, 25, TRUE); - MoveWindow(hHandleRefresh, rect.right - 90, rect.bottom - 30, 90, 25, TRUE); - - return 0; -} - - -static LRESULT -MainWnd_OnNotify(HWND hWnd, WPARAM wParam, LPARAM lParam) -{ - LPNMHDR pnmh = (LPNMHDR)lParam; - - switch(pnmh->code) - { - case LVN_ITEMCHANGED: - { - LPNMLISTVIEW pnmlv = (LPNMLISTVIEW)pnmh; - if ((wParam == IDC_PROCESSLIST) - && (pnmlv->uNewState & LVIS_SELECTED) - && !(pnmlv->uOldState & LVIS_SELECTED)) - { - LV_ITEM item; - memset(&item, 0, sizeof(LV_ITEM)); - item.mask = LVIF_PARAM; - item.iItem = pnmlv->iItem; - (void)ListView_GetItem(GetDlgItem(hWnd, IDC_PROCESSLIST), &item); - HandleList_Update(GetDlgItem(hWnd, IDC_HANDLELIST), (HANDLE)item.lParam); - return TRUE; - } - break; - } - } - - return 0; -} - -INT_PTR CALLBACK -MainWindow_WndProc(HWND hMainWnd, UINT message, WPARAM wParam, LPARAM lParam) -{ - switch (message) - { - case WM_INITDIALOG: - { - RECT rect; - - SendMessage(hMainWnd, WM_SETICON, ICON_BIG, (LPARAM)LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_MAIN))); - (void)ListView_SetExtendedListViewStyle(GetDlgItem(hMainWnd, IDC_PROCESSLIST), LVS_EX_FULLROWSELECT); - (void)ListView_SetExtendedListViewStyle(GetDlgItem(hMainWnd, IDC_HANDLELIST), LVS_EX_FULLROWSELECT); - GetClientRect(hMainWnd, &rect); - g_Separator = (rect.right / 2); - HandleList_Create(GetDlgItem(hMainWnd, IDC_HANDLELIST)); - ProcessList_Create(GetDlgItem(hMainWnd, IDC_PROCESSLIST)); - MainWindow_OnSize(hMainWnd); - - break; - } - case WM_SIZE: - return MainWindow_OnSize(hMainWnd); - - case WM_COMMAND: - { - switch (LOWORD(wParam)) - { - case IDOK: - case IDCANCEL: - { - EndDialog(hMainWnd, IDOK); - break; - } - case IDC_REFRESHHANDLE: - { - LV_ITEM item; - HWND hProcessListCtrl = GetDlgItem(hMainWnd, IDC_PROCESSLIST); - memset(&item, 0, sizeof(LV_ITEM)); - item.mask = LVIF_PARAM; - item.iItem = ListView_GetSelectionMark(hProcessListCtrl); - (void)ListView_GetItem(hProcessListCtrl, &item); - HandleList_Update(GetDlgItem(hMainWnd, IDC_HANDLELIST), (HANDLE)item.lParam); - break; - } - case IDC_REFRESHPROCESS: - { - ProcessList_Update(GetDlgItem(hMainWnd, IDC_PROCESSLIST)); - break; - } - default: - { - return FALSE; - } - } - break; - } - - case WM_NOTIFY: - return MainWnd_OnNotify(hMainWnd, wParam, lParam); - - default: - { - return FALSE; - } - } - return TRUE; -} - +/* + * Gdi handle viewer + * + * mainwnd.c + * + * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> + * + * 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. + */ + +#include "gdihv.h" + +INT g_Separator; + + +static LRESULT +MainWindow_OnSize(HWND hMainWnd) +{ + HWND hProcessListctrl, hHandleListCtrl, hProcessRefresh, hHandleRefresh; + RECT rect; + + hProcessListctrl = GetDlgItem(hMainWnd, IDC_PROCESSLIST); + hHandleListCtrl = GetDlgItem(hMainWnd, IDC_HANDLELIST); + hProcessRefresh = GetDlgItem(hMainWnd, IDC_REFRESHPROCESS); + hHandleRefresh = GetDlgItem(hMainWnd, IDC_REFRESHHANDLE); + + GetClientRect(hMainWnd, &rect); + +//g_Separator = (rect.right / 2); + MoveWindow(hProcessListctrl, 5, 5, g_Separator - 5, rect.bottom - 40, TRUE); + MoveWindow(hHandleListCtrl, g_Separator + 5, 5, rect.right - g_Separator - 5, rect.bottom - 40, TRUE); + MoveWindow(hProcessRefresh, g_Separator - 90, rect.bottom - 30, 90, 25, TRUE); + MoveWindow(hHandleRefresh, rect.right - 90, rect.bottom - 30, 90, 25, TRUE); + + return 0; +} + + +static LRESULT +MainWnd_OnNotify(HWND hWnd, WPARAM wParam, LPARAM lParam) +{ + LPNMHDR pnmh = (LPNMHDR)lParam; + + switch(pnmh->code) + { + case LVN_ITEMCHANGED: + { + LPNMLISTVIEW pnmlv = (LPNMLISTVIEW)pnmh; + if ((wParam == IDC_PROCESSLIST) + && (pnmlv->uNewState & LVIS_SELECTED) + && !(pnmlv->uOldState & LVIS_SELECTED)) + { + LV_ITEM item; + memset(&item, 0, sizeof(LV_ITEM)); + item.mask = LVIF_PARAM; + item.iItem = pnmlv->iItem; + (void)ListView_GetItem(GetDlgItem(hWnd, IDC_PROCESSLIST), &item); + HandleList_Update(GetDlgItem(hWnd, IDC_HANDLELIST), (HANDLE)item.lParam); + return TRUE; + } + break; + } + } + + return 0; +} + +INT_PTR CALLBACK +MainWindow_WndProc(HWND hMainWnd, UINT message, WPARAM wParam, LPARAM lParam) +{ + switch (message) + { + case WM_INITDIALOG: + { + RECT rect; + + SendMessage(hMainWnd, WM_SETICON, ICON_BIG, (LPARAM)LoadIcon(g_hInstance, MAKEINTRESOURCE(IDI_MAIN))); + (void)ListView_SetExtendedListViewStyle(GetDlgItem(hMainWnd, IDC_PROCESSLIST), LVS_EX_FULLROWSELECT); + (void)ListView_SetExtendedListViewStyle(GetDlgItem(hMainWnd, IDC_HANDLELIST), LVS_EX_FULLROWSELECT); + GetClientRect(hMainWnd, &rect); + g_Separator = (rect.right / 2); + HandleList_Create(GetDlgItem(hMainWnd, IDC_HANDLELIST)); + ProcessList_Create(GetDlgItem(hMainWnd, IDC_PROCESSLIST)); + MainWindow_OnSize(hMainWnd); + + break; + } + case WM_SIZE: + return MainWindow_OnSize(hMainWnd); + + case WM_COMMAND: + { + switch (LOWORD(wParam)) + { + case IDOK: + case IDCANCEL: + { + EndDialog(hMainWnd, IDOK); + break; + } + case IDC_REFRESHHANDLE: + { + LV_ITEM item; + HWND hProcessListCtrl = GetDlgItem(hMainWnd, IDC_PROCESSLIST); + memset(&item, 0, sizeof(LV_ITEM)); + item.mask = LVIF_PARAM; + item.iItem = ListView_GetSelectionMark(hProcessListCtrl); + (void)ListView_GetItem(hProcessListCtrl, &item); + HandleList_Update(GetDlgItem(hMainWnd, IDC_HANDLELIST), (HANDLE)item.lParam); + break; + } + case IDC_REFRESHPROCESS: + { + ProcessList_Update(GetDlgItem(hMainWnd, IDC_PROCESSLIST)); + break; + } + default: + { + return FALSE; + } + } + break; + } + + case WM_NOTIFY: + return MainWnd_OnNotify(hMainWnd, wParam, lParam); + + default: + { + return FALSE; + } + } + return TRUE; +} + diff --git a/modules/rosapps/applications/devutils/gdihv/mainwnd.h b/modules/rosapps/applications/devutils/gdihv/mainwnd.h index ccd541fa4fd..a41d4a2dcb8 100644 --- a/modules/rosapps/applications/devutils/gdihv/mainwnd.h +++ b/modules/rosapps/applications/devutils/gdihv/mainwnd.h @@ -1,2 +1,2 @@ - -INT_PTR CALLBACK MainWindow_WndProc(HWND, UINT, WPARAM, LPARAM); + +INT_PTR CALLBACK MainWindow_WndProc(HWND, UINT, WPARAM, LPARAM); diff --git a/modules/rosapps/applications/devutils/gdihv/proclist.c b/modules/rosapps/applications/devutils/gdihv/proclist.c index 9cc31c42747..e655f729169 100644 --- a/modules/rosapps/applications/devutils/gdihv/proclist.c +++ b/modules/rosapps/applications/devutils/gdihv/proclist.c @@ -1,113 +1,113 @@ -/* - * Gdi handle viewer - * - * proclist.c - * - * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> - * - * 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. - */ - -#include "gdihv.h" - -VOID -ProcessList_Create(HWND hListCtrl) -{ - LVCOLUMN column; - - column.mask = LVCF_TEXT|LVCF_FMT|LVCF_WIDTH; - column.fmt = LVCFMT_LEFT; - - column.pszText = L"Process"; - column.cx = 90; - (void)ListView_InsertColumn(hListCtrl, 0, &column); - - column.pszText = L"ProcessID"; - column.cx = 90; - (void)ListView_InsertColumn(hListCtrl, 1, &column); - ProcessList_Update(hListCtrl); -} - -VOID -ProcessList_Update(HWND hListCtrl) -{ - LV_ITEM item; - DWORD ProcessIds[1024], BytesReturned; - UINT cProcesses; - HANDLE hProcess; - WCHAR strText[MAX_PATH] = L""; - INT i; - - (void)ListView_DeleteAllItems(hListCtrl); - memset(&item, 0, sizeof(LV_ITEM)); - item.mask = LVIF_TEXT|LVIF_PARAM; - item.pszText = strText; - - /* Insert "kernel" */ - item.iItem = 0; - item.lParam = 0; - item.pszText = L""; - (void)ListView_InsertItem(hListCtrl, &item); - item.pszText = strText; - wsprintf(strText, L"%#08x", 0); - ListView_SetItemText(hListCtrl, 0, 1, strText); - - /* Insert "deleted" */ - item.iItem = 1; - item.lParam = 1; - item.pszText = L""; - (void)ListView_InsertItem(hListCtrl, &item); - item.pszText = strText; - wsprintf(strText, L"%#08x", 1); - ListView_SetItemText(hListCtrl, 1, 1, strText); - - /* Insert "all" */ - item.iItem = 2; - item.lParam = 2; - item.pszText = L""; - (void)ListView_InsertItem(hListCtrl, &item); - item.pszText = strText; - wsprintf(strText, L"%#08x", 2); - ListView_SetItemText(hListCtrl, 1, 1, strText); - - if (!EnumProcesses(ProcessIds, sizeof(ProcessIds), &BytesReturned )) - { - return; - } - cProcesses = BytesReturned / sizeof(DWORD); - if (cProcesses <= 1) - { - return; - } - for (i = 1; i < cProcesses; i++) - { - wsprintf(strText, L""); - item.lParam = ProcessIds[i]; - item.iItem = ListView_GetItemCount(hListCtrl); - - hProcess = 0; - /* FIXME: HACK: ROS crashes when using OpenProcess with PROCESS_VM_READ */ - hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, ProcessIds[i]); - if (hProcess) - { - GetModuleBaseName(hProcess, NULL, (LPWSTR)strText, MAX_PATH ); - CloseHandle(hProcess); - } - (void)ListView_InsertItem(hListCtrl, &item); - - wsprintf(strText, L"%#08x", ProcessIds[i]); - ListView_SetItemText(hListCtrl, item.iItem, 1, strText); - } -} +/* + * Gdi handle viewer + * + * proclist.c + * + * Copyright (C) 2007 Timo Kreuzer kreuzer reactos org> + * + * 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. + */ + +#include "gdihv.h" + +VOID +ProcessList_Create(HWND hListCtrl) +{ + LVCOLUMN column; + + column.mask = LVCF_TEXT|LVCF_FMT|LVCF_WIDTH; + column.fmt = LVCFMT_LEFT; + + column.pszText = L"Process"; + column.cx = 90; + (void)ListView_InsertColumn(hListCtrl, 0, &column); + + column.pszText = L"ProcessID"; + column.cx = 90; + (void)ListView_InsertColumn(hListCtrl, 1, &column); + ProcessList_Update(hListCtrl); +} + +VOID +ProcessList_Update(HWND hListCtrl) +{ + LV_ITEM item; + DWORD ProcessIds[1024], BytesReturned; + UINT cProcesses; + HANDLE hProcess; + WCHAR strText[MAX_PATH] = L""; + INT i; + + (void)ListView_DeleteAllItems(hListCtrl); + memset(&item, 0, sizeof(LV_ITEM)); + item.mask = LVIF_TEXT|LVIF_PARAM; + item.pszText = strText; + + /* Insert "kernel" */ + item.iItem = 0; + item.lParam = 0; + item.pszText = L""; + (void)ListView_InsertItem(hListCtrl, &item); + item.pszText = strText; + wsprintf(strText, L"%#08x", 0); + ListView_SetItemText(hListCtrl, 0, 1, strText); + + /* Insert "deleted" */ + item.iItem = 1; + item.lParam = 1; + item.pszText = L""; + (void)ListView_InsertItem(hListCtrl, &item); + item.pszText = strText; + wsprintf(strText, L"%#08x", 1); + ListView_SetItemText(hListCtrl, 1, 1, strText); + + /* Insert "all" */ + item.iItem = 2; + item.lParam = 2; + item.pszText = L""; + (void)ListView_InsertItem(hListCtrl, &item); + item.pszText = strText; + wsprintf(strText, L"%#08x", 2); + ListView_SetItemText(hListCtrl, 1, 1, strText); + + if (!EnumProcesses(ProcessIds, sizeof(ProcessIds), &BytesReturned )) + { + return; + } + cProcesses = BytesReturned / sizeof(DWORD); + if (cProcesses <= 1) + { + return; + } + for (i = 1; i < cProcesses; i++) + { + wsprintf(strText, L""); + item.lParam = ProcessIds[i]; + item.iItem = ListView_GetItemCount(hListCtrl); + + hProcess = 0; + /* FIXME: HACK: ROS crashes when using OpenProcess with PROCESS_VM_READ */ + hProcess = OpenProcess(PROCESS_QUERY_INFORMATION | PROCESS_VM_READ, FALSE, ProcessIds[i]); + if (hProcess) + { + GetModuleBaseName(hProcess, NULL, (LPWSTR)strText, MAX_PATH ); + CloseHandle(hProcess); + } + (void)ListView_InsertItem(hListCtrl, &item); + + wsprintf(strText, L"%#08x", ProcessIds[i]); + ListView_SetItemText(hListCtrl, item.iItem, 1, strText); + } +} diff --git a/modules/rosapps/applications/devutils/gdihv/proclist.h b/modules/rosapps/applications/devutils/gdihv/proclist.h index c14dbda694d..b8702f50847 100644 --- a/modules/rosapps/applications/devutils/gdihv/proclist.h +++ b/modules/rosapps/applications/devutils/gdihv/proclist.h @@ -1,3 +1,3 @@ - -VOID ProcessList_Create(HWND hListCtrl); -VOID ProcessList_Update(HWND hListCtrl); + +VOID ProcessList_Create(HWND hListCtrl); +VOID ProcessList_Update(HWND hListCtrl); diff --git a/modules/rosapps/applications/devutils/gdihv/resource.h b/modules/rosapps/applications/devutils/gdihv/resource.h index 3baa3b20f76..772d9d7f129 100644 --- a/modules/rosapps/applications/devutils/gdihv/resource.h +++ b/modules/rosapps/applications/devutils/gdihv/resource.h @@ -1,8 +1,8 @@ - -#define IDD_MAINWND 1000 -#define IDC_PROCESSLIST 1001 -#define IDC_HANDLELIST 1002 -#define IDC_REFRESHHANDLE 1010 -#define IDC_REFRESHPROCESS 1011 -#define IDI_MAIN 2000 -#define IDI_ARROW 2001 + +#define IDD_MAINWND 1000 +#define IDC_PROCESSLIST 1001 +#define IDC_HANDLELIST 1002 +#define IDC_REFRESHHANDLE 1010 +#define IDC_REFRESHPROCESS 1011 +#define IDI_MAIN 2000 +#define IDI_ARROW 2001 diff --git a/modules/rosapps/applications/explorer-old/explorer.dsp b/modules/rosapps/applications/explorer-old/explorer.dsp index 16fbb1e7cec..97468133068 100644 --- a/modules/rosapps/applications/explorer-old/explorer.dsp +++ b/modules/rosapps/applications/explorer-old/explorer.dsp @@ -1,940 +1,940 @@ -# Microsoft Developer Studio Project File - Name="explorer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=explorer - Win32 WineDll -!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 "explorer.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 "explorer.mak" CFG="explorer - Win32 WineDll" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "explorer - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32 Debug Release" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32 Unicode Release" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32 Unicode Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32 WineRelease" (based on "Win32 (x86) Console Application") -!MESSAGE "explorer - Win32 WineDll" (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)" == "explorer - 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 Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O1 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /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 /nologo /subsystem:console /machine:I386 -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - 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 /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /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 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - Win32 Debug Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "DRelease" -# PROP BASE Intermediate_Dir "DRelease" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "DRelease" -# PROP Intermediate_Dir "DRelease" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_ROS_" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /Zi /O2 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - Win32 Unicode Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "URelease" -# PROP BASE Intermediate_Dir "URelease" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "URelease" -# PROP Intermediate_Dir "URelease" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /c -# ADD BASE RSC /l 0x407 /d "NDEBUG" -# ADD RSC /l 0x407 /d "NDEBUG" /d "UNICODE" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - Win32 Unicode Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "UDebug" -# PROP BASE Intermediate_Dir "UDebug" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "UDebug" -# PROP Intermediate_Dir "UDebug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /FR /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /FD /GZ /c -# ADD BASE RSC /l 0x407 /d "_DEBUG" -# ADD RSC /l 0x407 /d "_DEBUG" /d "UNICODE" -BSC32=bscmake.exe -# ADD BASE BSC32 /nologo -# ADD BSC32 /nologo -LINK32=link.exe -# ADD BASE LINK32 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - Win32" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Win32" -# PROP BASE Intermediate_Dir "Win32" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Win32" -# PROP Intermediate_Dir "Win32" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FR /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib ole32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# SUBTRACT BASE LINK32 /pdb:none -# ADD LINK32 gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /out:"Win32/wexplorer.exe" /pdbtype:sept /delayload:oleaut32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - Win32 WineRelease" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "explorer___Win32_WineRelease" -# PROP BASE Intermediate_Dir "explorer___Win32_WineRelease" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "WineRelease" -# PROP Intermediate_Dir "WineRelease" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FR /YX /FD /GZ /c -# ADD CPP /nologo /MT /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /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 user32.lib gdi32.lib advapi32.lib ole32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept -# SUBTRACT BASE LINK32 /pdb:none -# ADD LINK32 gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /incremental:no /machine:I386 /out:"WineRelease/wexplorer.exe" /pdbtype:sept /delayload:oleaut32.dll /delayload:wsock32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "explorer - Win32 WineDll" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "explorer___Win32_WineDll" -# PROP BASE Intermediate_Dir "explorer___Win32_WineDll" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "WineDll" -# PROP Intermediate_Dir "WineDll" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /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 user32.lib gdi32.lib advapi32.lib ole32.lib /nologo /subsystem:windows /machine:I386 /pdbtype:sept -# SUBTRACT BASE LINK32 /pdb:none /debug -# ADD LINK32 gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /out:"WineDll/wexplorer.exe" /pdbtype:sept /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "explorer - Win32 Release" -# Name "explorer - Win32 Debug" -# Name "explorer - Win32 Debug Release" -# Name "explorer - Win32 Unicode Release" -# Name "explorer - Win32 Unicode Debug" -# Name "explorer - Win32" -# Name "explorer - Win32 WineRelease" -# Name "explorer - Win32 WineDll" -# Begin Group "utility" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\utility\dragdropimpl.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\dragdropimpl.h -# End Source File -# Begin Source File - -SOURCE=.\utility\shellbrowserimpl.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\shellbrowserimpl.h -# End Source File -# Begin Source File - -SOURCE=.\utility\shellclasses.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\shellclasses.h -# End Source File -# Begin Source File - -SOURCE=.\utility\treedroptarget.h -# End Source File -# Begin Source File - -SOURCE=.\utility\utility.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\utility.h -# End Source File -# Begin Source File - -SOURCE=.\utility\window.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\window.h -# End Source File -# Begin Source File - -SOURCE=.\utility\xmlstorage.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\xmlstorage.h -# End Source File -# Begin Source File - -SOURCE=".\utility\xs-native.cpp" -# End Source File -# End Group -# Begin Group "resources" - -# PROP Default_Filter "bmp,ico" -# Begin Source File - -SOURCE=.\res\action.ico -# End Source File -# Begin Source File - -SOURCE=.\res\administration.ico -# End Source File -# Begin Source File - -SOURCE=.\res\appicon.ico -# End Source File -# Begin Source File - -SOURCE=.\res\apps.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrow.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrow_dwn.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrow_up.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrowsel.ico -# End Source File -# Begin Source File - -SOURCE=.\res\computer.ico -# End Source File -# Begin Source File - -SOURCE=.\res\config.ico -# End Source File -# Begin Source File - -SOURCE=".\res\control-panel.ico" -# End Source File -# Begin Source File - -SOURCE=".\res\desktop-settings.ico" -# End Source File -# Begin Source File - -SOURCE=.\res\documents.ico -# End Source File -# Begin Source File - -SOURCE=.\res\dot.ico -# End Source File -# Begin Source File - -SOURCE=.\res\dot_red.ico -# End Source File -# Begin Source File - -SOURCE=.\res\dot_trans.ico -# End Source File -# Begin Source File - -SOURCE=.\res\drivebar.bmp -# End Source File -# Begin Source File - -SOURCE=".\explorer-bg.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-bn.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-cn-msvc.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-cn.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-cz.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-de.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-en.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-es.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-fr.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-gr.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-hu.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-id.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-it.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-jp.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-ko.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-nl.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-no.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-pl.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-pt.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-ro.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-ru.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-sk.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-sv.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=".\explorer-uk.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=.\explorer.exe.manifest -# End Source File -# Begin Source File - -SOURCE=.\res\explorer.ico -# End Source File -# Begin Source File - -SOURCE=.\explorer.rc -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=.\explorer_intres.rc -# End Source File -# Begin Source File - -SOURCE=.\res\favorites.ico -# End Source File -# Begin Source File - -SOURCE=.\res\floating.ico -# End Source File -# Begin Source File - -SOURCE=.\res\folder.ico -# End Source File -# Begin Source File - -SOURCE=.\res\icoali10.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig0.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig1.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig2.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig3.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig4.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig5.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig6.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig7.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig8.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig9.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\images.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\info.ico -# End Source File -# Begin Source File - -SOURCE=.\res\logoff.ico -# End Source File -# Begin Source File - -SOURCE=.\res\logov.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\logov16.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\logov256.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\mdi.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\minimize.ico -# End Source File -# Begin Source File - -SOURCE=".\res\network-conns.ico" -# End Source File -# Begin Source File - -SOURCE=.\res\network.ico -# End Source File -# Begin Source File - -SOURCE=.\res\notify_l.ico -# End Source File -# Begin Source File - -SOURCE=.\res\notify_r.ico -# End Source File -# Begin Source File - -SOURCE=.\res\printer.ico -# End Source File -# Begin Source File - -SOURCE=.\res\reactos.ico -# End Source File -# Begin Source File - -SOURCE=".\res\recent-documents.ico" -# End Source File -# Begin Source File - -SOURCE=.\resource.h -# End Source File -# Begin Source File - -SOURCE=.\res\restart.ico -# End Source File -# Begin Source File - -SOURCE=".\res\ros-big.ico" -# End Source File -# Begin Source File - -SOURCE=.\res\sdi.bmp -# End Source File -# Begin Source File - -SOURCE=".\res\search-doc.ico" -# End Source File -# Begin Source File - -SOURCE=.\res\search.ico -# End Source File -# Begin Source File - -SOURCE=.\res\shutdown.ico -# End Source File -# Begin Source File - -SOURCE=.\res\speaker.ico -# End Source File -# Begin Source File - -SOURCE=.\res\startmenu.ico -# End Source File -# Begin Source File - -SOURCE=.\res\toolbar.bmp -# End Source File -# End Group -# Begin Group "taskbar" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\taskbar\desktopbar.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\desktopbar.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\favorites.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\favorites.h -# End Source File -# Begin Source File - -SOURCE=.\notifyhook\notifyhook.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\quicklaunch.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\quicklaunch.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\startmenu.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\startmenu.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\taskbar.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\taskbar.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\traynotify.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\traynotify.h -# End Source File -# End Group -# Begin Group "desktop" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\desktop\desktop.cpp -# End Source File -# Begin Source File - -SOURCE=.\desktop\desktop.h -# End Source File -# End Group -# Begin Group "doc" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\doc\changes.txt -# End Source File -# Begin Source File - -SOURCE=.\doc\readme.txt -# End Source File -# Begin Source File - -SOURCE=.\doc\TODO.txt -# End Source File -# End Group -# Begin Group "shell" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\shell\entries.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\entries.h -# End Source File -# Begin Source File - -SOURCE=.\shell\fatfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\fatfs.h -# End Source File -# Begin Source File - -SOURCE=.\shell\filechild.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\filechild.h -# End Source File -# Begin Source File - -SOURCE=.\shell\mainframe.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\mainframe.h -# End Source File -# Begin Source File - -SOURCE=.\shell\ntobjfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\ntobjfs.h -# End Source File -# Begin Source File - -SOURCE=.\shell\pane.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\pane.h -# End Source File -# Begin Source File - -SOURCE=.\shell\regfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\regfs.h -# End Source File -# Begin Source File - -SOURCE=.\shell\shellbrowser.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\shellbrowser.h -# End Source File -# Begin Source File - -SOURCE=.\shell\shellfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\shellfs.h -# End Source File -# Begin Source File - -SOURCE=.\shell\unixfs.cpp -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=.\shell\unixfs.h -# End Source File -# Begin Source File - -SOURCE=.\shell\webchild.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\webchild.h -# End Source File -# Begin Source File - -SOURCE=.\shell\winfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\winfs.h -# End Source File -# End Group -# Begin Group "dialogs" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\dialogs\searchprogram.cpp -# End Source File -# Begin Source File - -SOURCE=.\dialogs\searchprogram.h -# End Source File -# Begin Source File - -SOURCE=.\dialogs\settings.cpp -# End Source File -# Begin Source File - -SOURCE=.\dialogs\settings.h -# End Source File -# End Group -# Begin Group "main" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\explorer.cpp -# End Source File -# Begin Source File - -SOURCE=.\explorer.h -# End Source File -# Begin Source File - -SOURCE=.\externals.h -# End Source File -# Begin Source File - -SOURCE=.\globals.h -# End Source File -# Begin Source File - -SOURCE=".\i386-stub-win32.c" -# SUBTRACT CPP /YX /Yc /Yu -# End Source File -# Begin Source File - -SOURCE=.\precomp.cpp -# ADD CPP /Yc"precomp.h" -# End Source File -# Begin Source File - -SOURCE=.\precomp.h -# End Source File -# End Group -# Begin Group "services" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\services\shellservices.cpp -# End Source File -# Begin Source File - -SOURCE=.\services\shellservices.h -# End Source File -# Begin Source File - -SOURCE=.\services\startup.c -# SUBTRACT CPP /YX /Yc /Yu -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="explorer" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=explorer - Win32 WineDll +!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 "explorer.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 "explorer.mak" CFG="explorer - Win32 WineDll" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "explorer - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32 Debug Release" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32 Unicode Release" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32 Unicode Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32 WineRelease" (based on "Win32 (x86) Console Application") +!MESSAGE "explorer - Win32 WineDll" (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)" == "explorer - 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 Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /O1 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /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 /nologo /subsystem:console /machine:I386 +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - 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 /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /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 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - Win32 Debug Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "DRelease" +# PROP BASE Intermediate_Dir "DRelease" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "DRelease" +# PROP Intermediate_Dir "DRelease" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_ROS_" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /Zi /O2 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - Win32 Unicode Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "URelease" +# PROP BASE Intermediate_Dir "URelease" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "URelease" +# PROP Intermediate_Dir "URelease" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /c +# ADD BASE RSC /l 0x407 /d "NDEBUG" +# ADD RSC /l 0x407 /d "NDEBUG" /d "UNICODE" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - Win32 Unicode Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "UDebug" +# PROP BASE Intermediate_Dir "UDebug" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "UDebug" +# PROP Intermediate_Dir "UDebug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /FD /GZ /c +# ADD BASE RSC /l 0x407 /d "_DEBUG" +# ADD RSC /l 0x407 /d "_DEBUG" /d "UNICODE" +BSC32=bscmake.exe +# ADD BASE BSC32 /nologo +# ADD BSC32 /nologo +LINK32=link.exe +# ADD BASE LINK32 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - Win32" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Win32" +# PROP BASE Intermediate_Dir "Win32" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Win32" +# PROP Intermediate_Dir "Win32" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib ole32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# SUBTRACT BASE LINK32 /pdb:none +# ADD LINK32 gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /out:"Win32/wexplorer.exe" /pdbtype:sept /delayload:oleaut32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - Win32 WineRelease" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "explorer___Win32_WineRelease" +# PROP BASE Intermediate_Dir "explorer___Win32_WineRelease" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "WineRelease" +# PROP Intermediate_Dir "WineRelease" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FR /YX /FD /GZ /c +# ADD CPP /nologo /MT /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /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 user32.lib gdi32.lib advapi32.lib ole32.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept +# SUBTRACT BASE LINK32 /pdb:none +# ADD LINK32 gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /incremental:no /machine:I386 /out:"WineRelease/wexplorer.exe" /pdbtype:sept /delayload:oleaut32.dll /delayload:wsock32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "explorer - Win32 WineDll" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "explorer___Win32_WineDll" +# PROP BASE Intermediate_Dir "explorer___Win32_WineDll" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "WineDll" +# PROP Intermediate_Dir "WineDll" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MT /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D "_ROS_" /D _WIN32_IE=0x0501 /D _WIN32_WINNT=0x0501 /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /Yu"precomp.h" /FD /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 user32.lib gdi32.lib advapi32.lib ole32.lib /nologo /subsystem:windows /machine:I386 /pdbtype:sept +# SUBTRACT BASE LINK32 /pdb:none /debug +# ADD LINK32 gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /out:"WineDll/wexplorer.exe" /pdbtype:sept /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "explorer - Win32 Release" +# Name "explorer - Win32 Debug" +# Name "explorer - Win32 Debug Release" +# Name "explorer - Win32 Unicode Release" +# Name "explorer - Win32 Unicode Debug" +# Name "explorer - Win32" +# Name "explorer - Win32 WineRelease" +# Name "explorer - Win32 WineDll" +# Begin Group "utility" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\utility\dragdropimpl.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\dragdropimpl.h +# End Source File +# Begin Source File + +SOURCE=.\utility\shellbrowserimpl.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\shellbrowserimpl.h +# End Source File +# Begin Source File + +SOURCE=.\utility\shellclasses.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\shellclasses.h +# End Source File +# Begin Source File + +SOURCE=.\utility\treedroptarget.h +# End Source File +# Begin Source File + +SOURCE=.\utility\utility.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\utility.h +# End Source File +# Begin Source File + +SOURCE=.\utility\window.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\window.h +# End Source File +# Begin Source File + +SOURCE=.\utility\xmlstorage.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\xmlstorage.h +# End Source File +# Begin Source File + +SOURCE=".\utility\xs-native.cpp" +# End Source File +# End Group +# Begin Group "resources" + +# PROP Default_Filter "bmp,ico" +# Begin Source File + +SOURCE=.\res\action.ico +# End Source File +# Begin Source File + +SOURCE=.\res\administration.ico +# End Source File +# Begin Source File + +SOURCE=.\res\appicon.ico +# End Source File +# Begin Source File + +SOURCE=.\res\apps.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrow.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrow_dwn.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrow_up.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrowsel.ico +# End Source File +# Begin Source File + +SOURCE=.\res\computer.ico +# End Source File +# Begin Source File + +SOURCE=.\res\config.ico +# End Source File +# Begin Source File + +SOURCE=".\res\control-panel.ico" +# End Source File +# Begin Source File + +SOURCE=".\res\desktop-settings.ico" +# End Source File +# Begin Source File + +SOURCE=.\res\documents.ico +# End Source File +# Begin Source File + +SOURCE=.\res\dot.ico +# End Source File +# Begin Source File + +SOURCE=.\res\dot_red.ico +# End Source File +# Begin Source File + +SOURCE=.\res\dot_trans.ico +# End Source File +# Begin Source File + +SOURCE=.\res\drivebar.bmp +# End Source File +# Begin Source File + +SOURCE=".\explorer-bg.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-bn.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-cn-msvc.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-cn.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-cz.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-de.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-en.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-es.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-fr.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-gr.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-hu.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-id.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-it.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-jp.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-ko.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-nl.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-no.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-pl.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-pt.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-ro.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-ru.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-sk.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-sv.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=".\explorer-uk.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=.\explorer.exe.manifest +# End Source File +# Begin Source File + +SOURCE=.\res\explorer.ico +# End Source File +# Begin Source File + +SOURCE=.\explorer.rc +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=.\explorer_intres.rc +# End Source File +# Begin Source File + +SOURCE=.\res\favorites.ico +# End Source File +# Begin Source File + +SOURCE=.\res\floating.ico +# End Source File +# Begin Source File + +SOURCE=.\res\folder.ico +# End Source File +# Begin Source File + +SOURCE=.\res\icoali10.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig0.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig1.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig2.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig3.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig4.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig5.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig6.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig7.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig8.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig9.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\images.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\info.ico +# End Source File +# Begin Source File + +SOURCE=.\res\logoff.ico +# End Source File +# Begin Source File + +SOURCE=.\res\logov.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\logov16.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\logov256.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\mdi.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\minimize.ico +# End Source File +# Begin Source File + +SOURCE=".\res\network-conns.ico" +# End Source File +# Begin Source File + +SOURCE=.\res\network.ico +# End Source File +# Begin Source File + +SOURCE=.\res\notify_l.ico +# End Source File +# Begin Source File + +SOURCE=.\res\notify_r.ico +# End Source File +# Begin Source File + +SOURCE=.\res\printer.ico +# End Source File +# Begin Source File + +SOURCE=.\res\reactos.ico +# End Source File +# Begin Source File + +SOURCE=".\res\recent-documents.ico" +# End Source File +# Begin Source File + +SOURCE=.\resource.h +# End Source File +# Begin Source File + +SOURCE=.\res\restart.ico +# End Source File +# Begin Source File + +SOURCE=".\res\ros-big.ico" +# End Source File +# Begin Source File + +SOURCE=.\res\sdi.bmp +# End Source File +# Begin Source File + +SOURCE=".\res\search-doc.ico" +# End Source File +# Begin Source File + +SOURCE=.\res\search.ico +# End Source File +# Begin Source File + +SOURCE=.\res\shutdown.ico +# End Source File +# Begin Source File + +SOURCE=.\res\speaker.ico +# End Source File +# Begin Source File + +SOURCE=.\res\startmenu.ico +# End Source File +# Begin Source File + +SOURCE=.\res\toolbar.bmp +# End Source File +# End Group +# Begin Group "taskbar" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\taskbar\desktopbar.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\desktopbar.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\favorites.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\favorites.h +# End Source File +# Begin Source File + +SOURCE=.\notifyhook\notifyhook.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\quicklaunch.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\quicklaunch.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\startmenu.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\startmenu.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\taskbar.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\taskbar.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\traynotify.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\traynotify.h +# End Source File +# End Group +# Begin Group "desktop" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\desktop\desktop.cpp +# End Source File +# Begin Source File + +SOURCE=.\desktop\desktop.h +# End Source File +# End Group +# Begin Group "doc" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\doc\changes.txt +# End Source File +# Begin Source File + +SOURCE=.\doc\readme.txt +# End Source File +# Begin Source File + +SOURCE=.\doc\TODO.txt +# End Source File +# End Group +# Begin Group "shell" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\shell\entries.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\entries.h +# End Source File +# Begin Source File + +SOURCE=.\shell\fatfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\fatfs.h +# End Source File +# Begin Source File + +SOURCE=.\shell\filechild.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\filechild.h +# End Source File +# Begin Source File + +SOURCE=.\shell\mainframe.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\mainframe.h +# End Source File +# Begin Source File + +SOURCE=.\shell\ntobjfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\ntobjfs.h +# End Source File +# Begin Source File + +SOURCE=.\shell\pane.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\pane.h +# End Source File +# Begin Source File + +SOURCE=.\shell\regfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\regfs.h +# End Source File +# Begin Source File + +SOURCE=.\shell\shellbrowser.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\shellbrowser.h +# End Source File +# Begin Source File + +SOURCE=.\shell\shellfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\shellfs.h +# End Source File +# Begin Source File + +SOURCE=.\shell\unixfs.cpp +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=.\shell\unixfs.h +# End Source File +# Begin Source File + +SOURCE=.\shell\webchild.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\webchild.h +# End Source File +# Begin Source File + +SOURCE=.\shell\winfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\winfs.h +# End Source File +# End Group +# Begin Group "dialogs" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\dialogs\searchprogram.cpp +# End Source File +# Begin Source File + +SOURCE=.\dialogs\searchprogram.h +# End Source File +# Begin Source File + +SOURCE=.\dialogs\settings.cpp +# End Source File +# Begin Source File + +SOURCE=.\dialogs\settings.h +# End Source File +# End Group +# Begin Group "main" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\explorer.cpp +# End Source File +# Begin Source File + +SOURCE=.\explorer.h +# End Source File +# Begin Source File + +SOURCE=.\externals.h +# End Source File +# Begin Source File + +SOURCE=.\globals.h +# End Source File +# Begin Source File + +SOURCE=".\i386-stub-win32.c" +# SUBTRACT CPP /YX /Yc /Yu +# End Source File +# Begin Source File + +SOURCE=.\precomp.cpp +# ADD CPP /Yc"precomp.h" +# End Source File +# Begin Source File + +SOURCE=.\precomp.h +# End Source File +# End Group +# Begin Group "services" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\services\shellservices.cpp +# End Source File +# Begin Source File + +SOURCE=.\services\shellservices.h +# End Source File +# Begin Source File + +SOURCE=.\services\startup.c +# SUBTRACT CPP /YX /Yc /Yu +# End Source File +# End Group +# End Target +# End Project diff --git a/modules/rosapps/applications/explorer-old/explorer.dsw b/modules/rosapps/applications/explorer-old/explorer.dsw index d212f1818ff..4eb2c8a2211 100644 --- a/modules/rosapps/applications/explorer-old/explorer.dsw +++ b/modules/rosapps/applications/explorer-old/explorer.dsw @@ -1,56 +1,56 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "explorer"=.\explorer.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name notifyhook - End Project Dependency -}}} - -############################################################################### - -Project: "make_explorer"=.\make_explorer.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "notifyhook"=.\notifyhook\notifyhook.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: "explorer"=.\explorer.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name notifyhook + End Project Dependency +}}} + +############################################################################### + +Project: "make_explorer"=.\make_explorer.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "notifyhook"=.\notifyhook\notifyhook.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/applications/explorer-old/make_explorer.dsp b/modules/rosapps/applications/explorer-old/make_explorer.dsp index d620c8892df..1c6169175b6 100644 --- a/modules/rosapps/applications/explorer-old/make_explorer.dsp +++ b/modules/rosapps/applications/explorer-old/make_explorer.dsp @@ -1,205 +1,205 @@ -# Microsoft Developer Studio Project File - Name="make_explorer" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) External Target" 0x0106 - -CFG=make_explorer - Win32 bjam -!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 "make_explorer.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 "make_explorer.mak" CFG="make_explorer - Win32 bjam" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "make_explorer - Win32 Release" (based on "Win32 (x86) External Target") -!MESSAGE "make_explorer - Win32 Debug" (based on "Win32 (x86) External Target") -!MESSAGE "make_explorer - Win32 Unicode Debug" (based on "Win32 (x86) External Target") -!MESSAGE "make_explorer - Win32 Unicode Release" (based on "Win32 (x86) External Target") -!MESSAGE "make_explorer - Win32 doxy docu" (based on "Win32 (x86) External Target") -!MESSAGE "make_explorer - Win32 bjam" (based on "Win32 (x86) External Target") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" - -!IF "$(CFG)" == "make_explorer - 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 Cmd_Line "NMAKE /f make_explorer.mak" -# PROP BASE Rebuild_Opt "/a" -# PROP BASE Target_File "make_explorer.exe" -# PROP BASE Bsc_Name "make_explorer.bsc" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" mingw32-make.exe -f Makefile-precomp UNICODE=0" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "explorer.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_explorer - 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 Cmd_Line "NMAKE /f make_explorer.mak" -# PROP BASE Rebuild_Opt "/a" -# PROP BASE Target_File "make_explorer.exe" -# PROP BASE Bsc_Name "make_explorer.bsc" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" mingw32-make.exe -f Makefile-precomp UNICODE=0 DEBUG=1" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "explorer.exe" -# PROP Bsc_Name "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=0 DEBUG=1" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "UDebug" -# PROP BASE Intermediate_Dir "UDebug" -# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1" -# PROP BASE Rebuild_Opt "clean all" -# PROP BASE Target_File "explorer.exe" -# PROP BASE Bsc_Name "" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "UDebug" -# PROP Intermediate_Dir "UDebug" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" mingw32-make.exe -f Makefile.MinGW UNICODE=1 DEBUG=1" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "explorer.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "URelease" -# PROP BASE Intermediate_Dir "URelease" -# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1" -# PROP BASE Rebuild_Opt "clean all" -# PROP BASE Target_File "explorer.exe" -# PROP BASE Bsc_Name "" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "URelease" -# PROP Intermediate_Dir "URelease" -# PROP Cmd_Line "msdevfilt -gcc mingw32-make.exe -f Makefile-precomp UNICODE=1" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "explorer.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 doxy docu" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW DEBUG=1" -# PROP BASE Rebuild_Opt "clean all" -# PROP BASE Target_File "explorer.exe" -# PROP BASE Bsc_Name "" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Cmd_Line "msdevfilt -java make docu" -# PROP Rebuild_Opt "full-docu" -# PROP Target_File "explorer.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 bjam" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Debug" -# PROP BASE Intermediate_Dir "Debug" -# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW DEBUG=1" -# PROP BASE Rebuild_Opt "clean all" -# PROP BASE Target_File "explorer.exe" -# PROP BASE Bsc_Name "" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" bjam" -# PROP Rebuild_Opt "clean&bjam release" -# PROP Target_File "explorer.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "make_explorer - Win32 Release" -# Name "make_explorer - Win32 Debug" -# Name "make_explorer - Win32 Unicode Debug" -# Name "make_explorer - Win32 Unicode Release" -# Name "make_explorer - Win32 doxy docu" -# Name "make_explorer - Win32 bjam" - -!IF "$(CFG)" == "make_explorer - Win32 Release" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 Debug" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Debug" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Release" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 doxy docu" - -!ELSEIF "$(CFG)" == "make_explorer - Win32 bjam" - -!ENDIF - -# Begin Source File - -SOURCE=.\explorer.rbuild -# End Source File -# Begin Source File - -SOURCE=.\Jamfile -# End Source File -# Begin Source File - -SOURCE=".\Makefile-MinGW" -# End Source File -# Begin Source File - -SOURCE=".\Makefile-precomp" -# End Source File -# Begin Source File - -SOURCE=".\Makefile-Wine" -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="make_explorer" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) External Target" 0x0106 + +CFG=make_explorer - Win32 bjam +!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 "make_explorer.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 "make_explorer.mak" CFG="make_explorer - Win32 bjam" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "make_explorer - Win32 Release" (based on "Win32 (x86) External Target") +!MESSAGE "make_explorer - Win32 Debug" (based on "Win32 (x86) External Target") +!MESSAGE "make_explorer - Win32 Unicode Debug" (based on "Win32 (x86) External Target") +!MESSAGE "make_explorer - Win32 Unicode Release" (based on "Win32 (x86) External Target") +!MESSAGE "make_explorer - Win32 doxy docu" (based on "Win32 (x86) External Target") +!MESSAGE "make_explorer - Win32 bjam" (based on "Win32 (x86) External Target") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" + +!IF "$(CFG)" == "make_explorer - 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 Cmd_Line "NMAKE /f make_explorer.mak" +# PROP BASE Rebuild_Opt "/a" +# PROP BASE Target_File "make_explorer.exe" +# PROP BASE Bsc_Name "make_explorer.bsc" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" mingw32-make.exe -f Makefile-precomp UNICODE=0" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "explorer.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_explorer - 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 Cmd_Line "NMAKE /f make_explorer.mak" +# PROP BASE Rebuild_Opt "/a" +# PROP BASE Target_File "make_explorer.exe" +# PROP BASE Bsc_Name "make_explorer.bsc" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" mingw32-make.exe -f Makefile-precomp UNICODE=0 DEBUG=1" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "explorer.exe" +# PROP Bsc_Name "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=0 DEBUG=1" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "UDebug" +# PROP BASE Intermediate_Dir "UDebug" +# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1" +# PROP BASE Rebuild_Opt "clean all" +# PROP BASE Target_File "explorer.exe" +# PROP BASE Bsc_Name "" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "UDebug" +# PROP Intermediate_Dir "UDebug" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" mingw32-make.exe -f Makefile.MinGW UNICODE=1 DEBUG=1" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "explorer.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "URelease" +# PROP BASE Intermediate_Dir "URelease" +# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1" +# PROP BASE Rebuild_Opt "clean all" +# PROP BASE Target_File "explorer.exe" +# PROP BASE Bsc_Name "" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "URelease" +# PROP Intermediate_Dir "URelease" +# PROP Cmd_Line "msdevfilt -gcc mingw32-make.exe -f Makefile-precomp UNICODE=1" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "explorer.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 doxy docu" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW DEBUG=1" +# PROP BASE Rebuild_Opt "clean all" +# PROP BASE Target_File "explorer.exe" +# PROP BASE Bsc_Name "" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Cmd_Line "msdevfilt -java make docu" +# PROP Rebuild_Opt "full-docu" +# PROP Target_File "explorer.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 bjam" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Debug" +# PROP BASE Intermediate_Dir "Debug" +# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW DEBUG=1" +# PROP BASE Rebuild_Opt "clean all" +# PROP BASE Target_File "explorer.exe" +# PROP BASE Bsc_Name "" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" bjam" +# PROP Rebuild_Opt "clean&bjam release" +# PROP Target_File "explorer.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ENDIF + +# Begin Target + +# Name "make_explorer - Win32 Release" +# Name "make_explorer - Win32 Debug" +# Name "make_explorer - Win32 Unicode Debug" +# Name "make_explorer - Win32 Unicode Release" +# Name "make_explorer - Win32 doxy docu" +# Name "make_explorer - Win32 bjam" + +!IF "$(CFG)" == "make_explorer - Win32 Release" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 Debug" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Debug" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 Unicode Release" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 doxy docu" + +!ELSEIF "$(CFG)" == "make_explorer - Win32 bjam" + +!ENDIF + +# Begin Source File + +SOURCE=.\explorer.rbuild +# End Source File +# Begin Source File + +SOURCE=.\Jamfile +# End Source File +# Begin Source File + +SOURCE=".\Makefile-MinGW" +# End Source File +# Begin Source File + +SOURCE=".\Makefile-precomp" +# End Source File +# Begin Source File + +SOURCE=".\Makefile-Wine" +# End Source File +# End Target +# End Project diff --git a/modules/rosapps/applications/explorer-old/make_rosshell.dsp b/modules/rosapps/applications/explorer-old/make_rosshell.dsp index f113f96cb72..a9b3cd4fcd0 100644 --- a/modules/rosapps/applications/explorer-old/make_rosshell.dsp +++ b/modules/rosapps/applications/explorer-old/make_rosshell.dsp @@ -1,151 +1,151 @@ -# Microsoft Developer Studio Project File - Name="make_rosshell" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) External Target" 0x0106 - -CFG=make_rosshell - Win32 Release -!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 "make_rosshell.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 "make_rosshell.mak" CFG="make_rosshell - Win32 Release" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "make_rosshell - Win32 Release" (based on "Win32 (x86) External Target") -!MESSAGE "make_rosshell - Win32 Debug" (based on "Win32 (x86) External Target") -!MESSAGE "make_rosshell - Win32 Unicode Debug" (based on "Win32 (x86) External Target") -!MESSAGE "make_rosshell - Win32 Unicode Release" (based on "Win32 (x86) External Target") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" - -!IF "$(CFG)" == "make_rosshell - 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 Cmd_Line "NMAKE /f make_rosshell.mak" -# PROP BASE Rebuild_Opt "/a" -# PROP BASE Target_File "make_rosshell.exe" -# PROP BASE Bsc_Name "make_rosshell.bsc" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "Release" -# PROP Intermediate_Dir "Release" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Make-rosshell-MinGW UNICODE=0" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "rosshell.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_rosshell - 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 Cmd_Line "NMAKE /f make_rosshell.mak" -# PROP BASE Rebuild_Opt "/a" -# PROP BASE Target_File "make_rosshell.exe" -# PROP BASE Bsc_Name "make_rosshell.bsc" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Debug" -# PROP Intermediate_Dir "Debug" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Make-rosshell-MinGW UNICODE=0 DEBUG=1" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "rosshell.exe" -# PROP Bsc_Name "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=0 DEBUG=1" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "UDebug" -# PROP BASE Intermediate_Dir "UDebug" -# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1" -# PROP BASE Rebuild_Opt "clean all" -# PROP BASE Target_File "rosshell.exe" -# PROP BASE Bsc_Name "" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "UDebug" -# PROP Intermediate_Dir "UDebug" -# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "rosshell.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "URelease" -# PROP BASE Intermediate_Dir "URelease" -# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1" -# PROP BASE Rebuild_Opt "clean all" -# PROP BASE Target_File "rosshell.exe" -# PROP BASE Bsc_Name "" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "URelease" -# PROP Intermediate_Dir "URelease" -# PROP Cmd_Line "msdevfilt -gcc make -f Make-rosshell-MinGW UNICODE=1" -# PROP Rebuild_Opt "clean all" -# PROP Target_File "rosshell.exe" -# PROP Bsc_Name "" -# PROP Target_Dir "" - -!ENDIF - -# Begin Target - -# Name "make_rosshell - Win32 Release" -# Name "make_rosshell - Win32 Debug" -# Name "make_rosshell - Win32 Unicode Debug" -# Name "make_rosshell - Win32 Unicode Release" - -!IF "$(CFG)" == "make_rosshell - Win32 Release" - -!ELSEIF "$(CFG)" == "make_rosshell - Win32 Debug" - -!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Debug" - -!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Release" - -!ENDIF - -# Begin Source File - -SOURCE=.\Jamfile -# End Source File -# Begin Source File - -SOURCE=".\Make-rosshell-MinGW" -# End Source File -# Begin Source File - -SOURCE=".\Make-rosshell.mak" -# End Source File -# Begin Source File - -SOURCE=.\Makefile -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="make_rosshell" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) External Target" 0x0106 + +CFG=make_rosshell - Win32 Release +!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 "make_rosshell.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 "make_rosshell.mak" CFG="make_rosshell - Win32 Release" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "make_rosshell - Win32 Release" (based on "Win32 (x86) External Target") +!MESSAGE "make_rosshell - Win32 Debug" (based on "Win32 (x86) External Target") +!MESSAGE "make_rosshell - Win32 Unicode Debug" (based on "Win32 (x86) External Target") +!MESSAGE "make_rosshell - Win32 Unicode Release" (based on "Win32 (x86) External Target") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" + +!IF "$(CFG)" == "make_rosshell - 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 Cmd_Line "NMAKE /f make_rosshell.mak" +# PROP BASE Rebuild_Opt "/a" +# PROP BASE Target_File "make_rosshell.exe" +# PROP BASE Bsc_Name "make_rosshell.bsc" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "Release" +# PROP Intermediate_Dir "Release" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Make-rosshell-MinGW UNICODE=0" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "rosshell.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_rosshell - 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 Cmd_Line "NMAKE /f make_rosshell.mak" +# PROP BASE Rebuild_Opt "/a" +# PROP BASE Target_File "make_rosshell.exe" +# PROP BASE Bsc_Name "make_rosshell.bsc" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Debug" +# PROP Intermediate_Dir "Debug" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Make-rosshell-MinGW UNICODE=0 DEBUG=1" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "rosshell.exe" +# PROP Bsc_Name "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=0 DEBUG=1" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "UDebug" +# PROP BASE Intermediate_Dir "UDebug" +# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1" +# PROP BASE Rebuild_Opt "clean all" +# PROP BASE Target_File "rosshell.exe" +# PROP BASE Bsc_Name "" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "UDebug" +# PROP Intermediate_Dir "UDebug" +# PROP Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1 DEBUG=1" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "rosshell.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "URelease" +# PROP BASE Intermediate_Dir "URelease" +# PROP BASE Cmd_Line "msdevfilt -gcc -pipe "perl d:\tools\gSTLFilt.pl" make -f Makefile.MinGW UNICODE=1" +# PROP BASE Rebuild_Opt "clean all" +# PROP BASE Target_File "rosshell.exe" +# PROP BASE Bsc_Name "" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "URelease" +# PROP Intermediate_Dir "URelease" +# PROP Cmd_Line "msdevfilt -gcc make -f Make-rosshell-MinGW UNICODE=1" +# PROP Rebuild_Opt "clean all" +# PROP Target_File "rosshell.exe" +# PROP Bsc_Name "" +# PROP Target_Dir "" + +!ENDIF + +# Begin Target + +# Name "make_rosshell - Win32 Release" +# Name "make_rosshell - Win32 Debug" +# Name "make_rosshell - Win32 Unicode Debug" +# Name "make_rosshell - Win32 Unicode Release" + +!IF "$(CFG)" == "make_rosshell - Win32 Release" + +!ELSEIF "$(CFG)" == "make_rosshell - Win32 Debug" + +!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Debug" + +!ELSEIF "$(CFG)" == "make_rosshell - Win32 Unicode Release" + +!ENDIF + +# Begin Source File + +SOURCE=.\Jamfile +# End Source File +# Begin Source File + +SOURCE=".\Make-rosshell-MinGW" +# End Source File +# Begin Source File + +SOURCE=".\Make-rosshell.mak" +# End Source File +# Begin Source File + +SOURCE=.\Makefile +# End Source File +# End Target +# End Project diff --git a/modules/rosapps/applications/explorer-old/notifyhook/notifyhook.dsp b/modules/rosapps/applications/explorer-old/notifyhook/notifyhook.dsp index 5987f96d342..6f76723348f 100644 --- a/modules/rosapps/applications/explorer-old/notifyhook/notifyhook.dsp +++ b/modules/rosapps/applications/explorer-old/notifyhook/notifyhook.dsp @@ -1,171 +1,171 @@ -# Microsoft Developer Studio Project File - Name="notifyhook" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 - -CFG=notifyhook - Win32 -!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 "notifyhook.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 "notifyhook.mak" CFG="notifyhook - Win32" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "notifyhook - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "notifyhook - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "notifyhook - Win32" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE "notifyhook - Win32 Debug Release" (based on "Win32 (x86) Dynamic-Link Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "notifyhook - Win32 Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "shellhook___Win32_Release" -# PROP BASE Intermediate_Dir "shellhook___Win32_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "..\Release" -# PROP Intermediate_Dir "Release" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c -# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FD /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# 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 /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /machine:I386 - -!ELSEIF "$(CFG)" == "notifyhook - Win32 Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Win32" -# PROP BASE Intermediate_Dir "Win32" -# 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 /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /GZ /c -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FR /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# 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 /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept - -!ELSEIF "$(CFG)" == "notifyhook - Win32" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "Win32" -# PROP BASE Intermediate_Dir "Win32" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "Win32" -# PROP Intermediate_Dir "Win32" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FR /FD /GZ /c -# SUBTRACT BASE CPP /YX -# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FR /FD /GZ /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# 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 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept -# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept - -!ELSEIF "$(CFG)" == "notifyhook - Win32 Debug Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "DRelease" -# PROP BASE Intermediate_Dir "DRelease" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "DRelease" -# PROP Intermediate_Dir "DRelease" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FD /c -# SUBTRACT BASE CPP /YX -# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FD /c -# SUBTRACT CPP /YX -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# 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 user32.lib /nologo /subsystem:windows /dll /machine:I386 -# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /machine:I386 - -!ENDIF - -# Begin Target - -# Name "notifyhook - Win32 Release" -# Name "notifyhook - Win32 Debug" -# Name "notifyhook - Win32" -# Name "notifyhook - Win32 Debug Release" -# Begin Source File - -SOURCE=.\notifyhook.c -# End Source File -# Begin Source File - -SOURCE=.\notifyhook.h -# End Source File -# Begin Source File - -SOURCE=.\notifyhook.rbuild -# End Source File -# Begin Source File - -SOURCE=..\utility\utility.h -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="notifyhook" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102 + +CFG=notifyhook - Win32 +!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 "notifyhook.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 "notifyhook.mak" CFG="notifyhook - Win32" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "notifyhook - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "notifyhook - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "notifyhook - Win32" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE "notifyhook - Win32 Debug Release" (based on "Win32 (x86) Dynamic-Link Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "notifyhook - Win32 Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "shellhook___Win32_Release" +# PROP BASE Intermediate_Dir "shellhook___Win32_Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "..\Release" +# PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /YX /FD /c +# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FD /c +# SUBTRACT CPP /YX +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# 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 /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /machine:I386 + +!ELSEIF "$(CFG)" == "notifyhook - Win32 Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Win32" +# PROP BASE Intermediate_Dir "Win32" +# 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 /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /YX /FD /GZ /c +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FR /FD /GZ /c +# SUBTRACT CPP /YX +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# 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 /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept + +!ELSEIF "$(CFG)" == "notifyhook - Win32" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "Win32" +# PROP BASE Intermediate_Dir "Win32" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "Win32" +# PROP Intermediate_Dir "Win32" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FR /FD /GZ /c +# SUBTRACT BASE CPP /YX +# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FR /FD /GZ /c +# SUBTRACT CPP /YX +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# 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 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept +# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /debug /machine:I386 /pdbtype:sept + +!ELSEIF "$(CFG)" == "notifyhook - Win32 Debug Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "DRelease" +# PROP BASE Intermediate_Dir "DRelease" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "DRelease" +# PROP Intermediate_Dir "DRelease" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FD /c +# SUBTRACT BASE CPP /YX +# ADD CPP /nologo /MT /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_NOTIFYHOOK_IMPL" /FD /c +# SUBTRACT CPP /YX +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# 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 user32.lib /nologo /subsystem:windows /dll /machine:I386 +# ADD LINK32 user32.lib /nologo /subsystem:windows /dll /machine:I386 + +!ENDIF + +# Begin Target + +# Name "notifyhook - Win32 Release" +# Name "notifyhook - Win32 Debug" +# Name "notifyhook - Win32" +# Name "notifyhook - Win32 Debug Release" +# Begin Source File + +SOURCE=.\notifyhook.c +# End Source File +# Begin Source File + +SOURCE=.\notifyhook.h +# End Source File +# Begin Source File + +SOURCE=.\notifyhook.rbuild +# End Source File +# Begin Source File + +SOURCE=..\utility\utility.h +# End Source File +# End Target +# End Project diff --git a/modules/rosapps/applications/explorer-old/rosshell.dsp b/modules/rosapps/applications/explorer-old/rosshell.dsp index 9130737980b..b97fd603555 100644 --- a/modules/rosapps/applications/explorer-old/rosshell.dsp +++ b/modules/rosapps/applications/explorer-old/rosshell.dsp @@ -1,608 +1,608 @@ -# Microsoft Developer Studio Project File - Name="rosshell" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=rosshell - 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 "rosshell.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 "rosshell.mak" CFG="rosshell - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "rosshell - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "rosshell - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "rosshell - Win32 Debug Release" (based on "Win32 (x86) Console Application") -!MESSAGE "rosshell - Win32 Unicode Release" (based on "Win32 (x86) Console Application") -!MESSAGE "rosshell - Win32 Unicode 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)" == "rosshell - 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 Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O1 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /Yu"precomp.h" /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 /nologo /subsystem:console /machine:I386 -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "rosshell - 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 /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /FR /Yu"precomp.h" /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 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 kernel32.lib shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "rosshell - Win32 Debug Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "DRelease" -# PROP BASE Intermediate_Dir "DRelease" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "DRelease" -# PROP Intermediate_Dir "DRelease" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_ROS_" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /Zi /O2 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "rosshell - Win32 Unicode Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "URelease" -# PROP BASE Intermediate_Dir "URelease" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "URelease" -# PROP Intermediate_Dir "URelease" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /YX /FD /c -# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ELSEIF "$(CFG)" == "rosshell - Win32 Unicode Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "UDebug" -# PROP BASE Intermediate_Dir "UDebug" -# PROP BASE Ignore_Export_Lib 0 -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "UDebug" -# PROP Intermediate_Dir "UDebug" -# PROP Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /FR /YX /FD /GZ /c -# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept -# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "rosshell - Win32 Release" -# Name "rosshell - Win32 Debug" -# Name "rosshell - Win32 Debug Release" -# Name "rosshell - Win32 Unicode Release" -# Name "rosshell - Win32 Unicode Debug" -# Begin Group "utility" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\utility\dragdropimpl.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\dragdropimpl.h -# End Source File -# Begin Source File - -SOURCE=.\utility\shellbrowserimpl.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\shellbrowserimpl.h -# End Source File -# Begin Source File - -SOURCE=.\utility\shellclasses.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\shellclasses.h -# End Source File -# Begin Source File - -SOURCE=.\utility\treedroptarget.h -# End Source File -# Begin Source File - -SOURCE=.\utility\utility.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\utility.h -# End Source File -# Begin Source File - -SOURCE=.\utility\window.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\window.h -# End Source File -# Begin Source File - -SOURCE=.\utility\xmlstorage.cpp -# End Source File -# Begin Source File - -SOURCE=.\utility\xmlstorage.h -# End Source File -# End Group -# Begin Group "resources" - -# PROP Default_Filter "bmp,ico" -# Begin Source File - -SOURCE=.\res\action.ico -# End Source File -# Begin Source File - -SOURCE=.\res\appicon.ico -# End Source File -# Begin Source File - -SOURCE=.\res\apps.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrow.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrow_dwn.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrow_up.ico -# End Source File -# Begin Source File - -SOURCE=.\res\arrowsel.ico -# End Source File -# Begin Source File - -SOURCE=.\res\computer.ico -# End Source File -# Begin Source File - -SOURCE=.\res\config.ico -# End Source File -# Begin Source File - -SOURCE=.\res\documents.ico -# End Source File -# Begin Source File - -SOURCE=.\res\dot.ico -# End Source File -# Begin Source File - -SOURCE=.\res\dot_red.ico -# End Source File -# Begin Source File - -SOURCE=.\res\dot_trans.ico -# End Source File -# Begin Source File - -SOURCE=.\res\drivebar.bmp -# End Source File -# Begin Source File - -SOURCE=".\explorer-jp.rc" -# PROP Exclude_From_Build 1 -# End Source File -# Begin Source File - -SOURCE=.\res\explorer.ico -# End Source File -# Begin Source File - -SOURCE=.\resource.h -# End Source File -# Begin Source File - -SOURCE=.\explorer_intres.rc -# End Source File -# Begin Source File - -SOURCE=.\res\favorites.ico -# End Source File -# Begin Source File - -SOURCE=.\res\floating.ico -# End Source File -# Begin Source File - -SOURCE=.\res\folder.ico -# End Source File -# Begin Source File - -SOURCE=.\res\icoali10.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig0.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig1.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig2.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig3.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig4.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig5.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig6.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig7.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig8.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\icoalig9.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\images.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\info.ico -# End Source File -# Begin Source File - -SOURCE=.\res\logoff.ico -# End Source File -# Begin Source File - -SOURCE=.\res\logov.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\logov16.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\logov256.bmp -# End Source File -# Begin Source File - -SOURCE=.\res\network.ico -# End Source File -# Begin Source File - -SOURCE=.\res\notify_l.ico -# End Source File -# Begin Source File - -SOURCE=.\res\notify_r.ico -# End Source File -# Begin Source File - -SOURCE=.\res\printer.ico -# End Source File -# Begin Source File - -SOURCE=.\res\reactos.ico -# End Source File -# Begin Source File - -SOURCE=".\res\ros-big.ico" -# End Source File -# Begin Source File - -SOURCE=".\res\search-doc.ico" -# End Source File -# Begin Source File - -SOURCE=.\res\search.ico -# End Source File -# Begin Source File - -SOURCE=.\res\speaker.ico -# End Source File -# Begin Source File - -SOURCE=.\res\startmenu.ico -# End Source File -# End Group -# Begin Group "taskbar" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\taskbar\desktopbar.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\desktopbar.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\favorites.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\favorites.h -# End Source File -# Begin Source File - -SOURCE=.\notifyhook\notifyhook.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\quicklaunch.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\quicklaunch.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\startmenu.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\startmenu.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\taskbar.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\taskbar.h -# End Source File -# Begin Source File - -SOURCE=.\taskbar\traynotify.cpp -# End Source File -# Begin Source File - -SOURCE=.\taskbar\traynotify.h -# End Source File -# End Group -# Begin Group "desktop" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\desktop\desktop.cpp -# End Source File -# Begin Source File - -SOURCE=.\desktop\desktop.h -# End Source File -# End Group -# Begin Group "shell" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\shell\entries.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\entries.h -# End Source File -# Begin Source File - -SOURCE=.\shell\filechild.h -# End Source File -# Begin Source File - -SOURCE=.\shell\pane.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\pane.h -# End Source File -# Begin Source File - -SOURCE=.\shell\shellbrowser.h -# End Source File -# Begin Source File - -SOURCE=.\shell\shellfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\shellfs.h -# End Source File -# Begin Source File - -SOURCE=.\shell\winfs.cpp -# End Source File -# Begin Source File - -SOURCE=.\shell\winfs.h -# End Source File -# End Group -# Begin Group "dialogs" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\dialogs\searchprogram.cpp -# End Source File -# Begin Source File - -SOURCE=.\dialogs\searchprogram.h -# End Source File -# Begin Source File - -SOURCE=.\dialogs\settings.cpp -# End Source File -# Begin Source File - -SOURCE=.\dialogs\settings.h -# End Source File -# End Group -# Begin Group "main" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\explorer.cpp -# End Source File -# Begin Source File - -SOURCE=.\explorer.h -# End Source File -# Begin Source File - -SOURCE=.\externals.h -# End Source File -# Begin Source File - -SOURCE=.\globals.h -# End Source File -# Begin Source File - -SOURCE=".\i386-stub-win32.c" -# SUBTRACT CPP /YX /Yc /Yu -# End Source File -# Begin Source File - -SOURCE=.\precomp.cpp -# ADD CPP /Yc"precomp.h" -# End Source File -# Begin Source File - -SOURCE=.\precomp.h -# End Source File -# End Group -# Begin Group "services" - -# PROP Default_Filter "" -# Begin Source File - -SOURCE=.\services\shellservices.cpp -# End Source File -# Begin Source File - -SOURCE=.\services\shellservices.h -# End Source File -# Begin Source File - -SOURCE=.\services\startup.c -# SUBTRACT CPP /YX /Yc /Yu -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="rosshell" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=rosshell - 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 "rosshell.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 "rosshell.mak" CFG="rosshell - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "rosshell - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "rosshell - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "rosshell - Win32 Debug Release" (based on "Win32 (x86) Console Application") +!MESSAGE "rosshell - Win32 Unicode Release" (based on "Win32 (x86) Console Application") +!MESSAGE "rosshell - Win32 Unicode 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)" == "rosshell - 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 Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /O1 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /Yu"precomp.h" /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 /nologo /subsystem:console /machine:I386 +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "rosshell - 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 /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /FR /Yu"precomp.h" /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 /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 kernel32.lib shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "rosshell - Win32 Debug Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "DRelease" +# PROP BASE Intermediate_Dir "DRelease" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "DRelease" +# PROP Intermediate_Dir "DRelease" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_ROS_" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /Zi /O2 /D "NDEBUG" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "rosshell - Win32 Unicode Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "URelease" +# PROP BASE Intermediate_Dir "URelease" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "URelease" +# PROP Intermediate_Dir "URelease" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /YX /FD /c +# ADD CPP /nologo /MD /W3 /GR /GX /O2 /D "NDEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /machine:I386 +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /machine:I386 /libpath:"Release" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ELSEIF "$(CFG)" == "rosshell - Win32 Unicode Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "UDebug" +# PROP BASE Intermediate_Dir "UDebug" +# PROP BASE Ignore_Export_Lib 0 +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "UDebug" +# PROP Intermediate_Dir "UDebug" +# PROP Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "UNICODE" /D "_ROS_" /FR /YX /FD /GZ /c +# ADD CPP /nologo /MDd /W3 /Gm /GR /GX /ZI /Od /D "_DEBUG" /D "UNICODE" /D "WIN32" /D _WIN32_IE=0x0600 /D _WIN32_WINNT=0x0501 /D "ROSSHELL" /FR /Yu"precomp.h" /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 user32.lib gdi32.lib advapi32.lib comctl32.lib shell32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept +# ADD LINK32 shell32.lib comctl32.lib gdi32.lib user32.lib advapi32.lib ole32.lib delayimp.lib /nologo /subsystem:windows /debug /machine:I386 /pdbtype:sept /libpath:"Debug" /delayload:oleaut32.dll /delayload:wsock32.dll +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "rosshell - Win32 Release" +# Name "rosshell - Win32 Debug" +# Name "rosshell - Win32 Debug Release" +# Name "rosshell - Win32 Unicode Release" +# Name "rosshell - Win32 Unicode Debug" +# Begin Group "utility" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\utility\dragdropimpl.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\dragdropimpl.h +# End Source File +# Begin Source File + +SOURCE=.\utility\shellbrowserimpl.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\shellbrowserimpl.h +# End Source File +# Begin Source File + +SOURCE=.\utility\shellclasses.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\shellclasses.h +# End Source File +# Begin Source File + +SOURCE=.\utility\treedroptarget.h +# End Source File +# Begin Source File + +SOURCE=.\utility\utility.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\utility.h +# End Source File +# Begin Source File + +SOURCE=.\utility\window.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\window.h +# End Source File +# Begin Source File + +SOURCE=.\utility\xmlstorage.cpp +# End Source File +# Begin Source File + +SOURCE=.\utility\xmlstorage.h +# End Source File +# End Group +# Begin Group "resources" + +# PROP Default_Filter "bmp,ico" +# Begin Source File + +SOURCE=.\res\action.ico +# End Source File +# Begin Source File + +SOURCE=.\res\appicon.ico +# End Source File +# Begin Source File + +SOURCE=.\res\apps.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrow.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrow_dwn.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrow_up.ico +# End Source File +# Begin Source File + +SOURCE=.\res\arrowsel.ico +# End Source File +# Begin Source File + +SOURCE=.\res\computer.ico +# End Source File +# Begin Source File + +SOURCE=.\res\config.ico +# End Source File +# Begin Source File + +SOURCE=.\res\documents.ico +# End Source File +# Begin Source File + +SOURCE=.\res\dot.ico +# End Source File +# Begin Source File + +SOURCE=.\res\dot_red.ico +# End Source File +# Begin Source File + +SOURCE=.\res\dot_trans.ico +# End Source File +# Begin Source File + +SOURCE=.\res\drivebar.bmp +# End Source File +# Begin Source File + +SOURCE=".\explorer-jp.rc" +# PROP Exclude_From_Build 1 +# End Source File +# Begin Source File + +SOURCE=.\res\explorer.ico +# End Source File +# Begin Source File + +SOURCE=.\resource.h +# End Source File +# Begin Source File + +SOURCE=.\explorer_intres.rc +# End Source File +# Begin Source File + +SOURCE=.\res\favorites.ico +# End Source File +# Begin Source File + +SOURCE=.\res\floating.ico +# End Source File +# Begin Source File + +SOURCE=.\res\folder.ico +# End Source File +# Begin Source File + +SOURCE=.\res\icoali10.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig0.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig1.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig2.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig3.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig4.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig5.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig6.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig7.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig8.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\icoalig9.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\images.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\info.ico +# End Source File +# Begin Source File + +SOURCE=.\res\logoff.ico +# End Source File +# Begin Source File + +SOURCE=.\res\logov.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\logov16.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\logov256.bmp +# End Source File +# Begin Source File + +SOURCE=.\res\network.ico +# End Source File +# Begin Source File + +SOURCE=.\res\notify_l.ico +# End Source File +# Begin Source File + +SOURCE=.\res\notify_r.ico +# End Source File +# Begin Source File + +SOURCE=.\res\printer.ico +# End Source File +# Begin Source File + +SOURCE=.\res\reactos.ico +# End Source File +# Begin Source File + +SOURCE=".\res\ros-big.ico" +# End Source File +# Begin Source File + +SOURCE=".\res\search-doc.ico" +# End Source File +# Begin Source File + +SOURCE=.\res\search.ico +# End Source File +# Begin Source File + +SOURCE=.\res\speaker.ico +# End Source File +# Begin Source File + +SOURCE=.\res\startmenu.ico +# End Source File +# End Group +# Begin Group "taskbar" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\taskbar\desktopbar.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\desktopbar.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\favorites.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\favorites.h +# End Source File +# Begin Source File + +SOURCE=.\notifyhook\notifyhook.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\quicklaunch.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\quicklaunch.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\startmenu.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\startmenu.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\taskbar.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\taskbar.h +# End Source File +# Begin Source File + +SOURCE=.\taskbar\traynotify.cpp +# End Source File +# Begin Source File + +SOURCE=.\taskbar\traynotify.h +# End Source File +# End Group +# Begin Group "desktop" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\desktop\desktop.cpp +# End Source File +# Begin Source File + +SOURCE=.\desktop\desktop.h +# End Source File +# End Group +# Begin Group "shell" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\shell\entries.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\entries.h +# End Source File +# Begin Source File + +SOURCE=.\shell\filechild.h +# End Source File +# Begin Source File + +SOURCE=.\shell\pane.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\pane.h +# End Source File +# Begin Source File + +SOURCE=.\shell\shellbrowser.h +# End Source File +# Begin Source File + +SOURCE=.\shell\shellfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\shellfs.h +# End Source File +# Begin Source File + +SOURCE=.\shell\winfs.cpp +# End Source File +# Begin Source File + +SOURCE=.\shell\winfs.h +# End Source File +# End Group +# Begin Group "dialogs" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\dialogs\searchprogram.cpp +# End Source File +# Begin Source File + +SOURCE=.\dialogs\searchprogram.h +# End Source File +# Begin Source File + +SOURCE=.\dialogs\settings.cpp +# End Source File +# Begin Source File + +SOURCE=.\dialogs\settings.h +# End Source File +# End Group +# Begin Group "main" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\explorer.cpp +# End Source File +# Begin Source File + +SOURCE=.\explorer.h +# End Source File +# Begin Source File + +SOURCE=.\externals.h +# End Source File +# Begin Source File + +SOURCE=.\globals.h +# End Source File +# Begin Source File + +SOURCE=".\i386-stub-win32.c" +# SUBTRACT CPP /YX /Yc /Yu +# End Source File +# Begin Source File + +SOURCE=.\precomp.cpp +# ADD CPP /Yc"precomp.h" +# End Source File +# Begin Source File + +SOURCE=.\precomp.h +# End Source File +# End Group +# Begin Group "services" + +# PROP Default_Filter "" +# Begin Source File + +SOURCE=.\services\shellservices.cpp +# End Source File +# Begin Source File + +SOURCE=.\services\shellservices.h +# End Source File +# Begin Source File + +SOURCE=.\services\startup.c +# SUBTRACT CPP /YX /Yc /Yu +# End Source File +# End Group +# End Target +# End Project diff --git a/modules/rosapps/applications/explorer-old/rosshell.dsw b/modules/rosapps/applications/explorer-old/rosshell.dsw index a4b210436b6..455aa22b65a 100644 --- a/modules/rosapps/applications/explorer-old/rosshell.dsw +++ b/modules/rosapps/applications/explorer-old/rosshell.dsw @@ -1,56 +1,56 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "rosshell"=.\rosshell.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name notifyhook - End Project Dependency -}}} - -############################################################################### - -Project: "make_rosshell"=.\make_rosshell.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "notifyhook"=.\notifyhook\notifyhook.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: "rosshell"=.\rosshell.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name notifyhook + End Project Dependency +}}} + +############################################################################### + +Project: "make_rosshell"=.\make_rosshell.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "notifyhook"=.\notifyhook\notifyhook.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/applications/explorer-old/utility/shellclasses.dsp b/modules/rosapps/applications/explorer-old/utility/shellclasses.dsp index 7c1b30d0f3b..a2bb19b1eb3 100644 --- a/modules/rosapps/applications/explorer-old/utility/shellclasses.dsp +++ b/modules/rosapps/applications/explorer-old/utility/shellclasses.dsp @@ -1,146 +1,146 @@ -# Microsoft Developer Studio Project File - Name="shellclasses" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=shellclasses - Win32 Unicode 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 "shellclasses.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 "shellclasses.mak" CFG="shellclasses - Win32 Unicode Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "shellclasses - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "shellclasses - Win32 Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "shellclasses - Win32 Unicode Debug" (based on "Win32 (x86) Console Application") -!MESSAGE "shellclasses - Win32 Unicode Release" (based on "Win32 (x86) Console Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.cmd -RSC=rc.exe - -!IF "$(CFG)" == "shellclasses - 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 "NDEBUG" /D "WIN32" /D "_CONSOLE" /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.cmd -# 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)" == "shellclasses - 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 "_DEBUG" /D "WIN32" /D "_CONSOLE" /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.cmd -# 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 - -!ELSEIF "$(CFG)" == "shellclasses - Win32 Unicode Debug" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 1 -# PROP BASE Output_Dir "shellclasses___Win32_Unicode_Debug" -# PROP BASE Intermediate_Dir "shellclasses___Win32_Unicode_Debug" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 1 -# PROP Output_Dir "UDebug" -# PROP Intermediate_Dir "UDebug" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /FR /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "UNICODE" /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.cmd -# 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 - -!ELSEIF "$(CFG)" == "shellclasses - Win32 Unicode Release" - -# PROP BASE Use_MFC 0 -# PROP BASE Use_Debug_Libraries 0 -# PROP BASE Output_Dir "shellclasses___Win32_Unicode_Release" -# PROP BASE Intermediate_Dir "shellclasses___Win32_Unicode_Release" -# PROP BASE Target_Dir "" -# PROP Use_MFC 0 -# PROP Use_Debug_Libraries 0 -# PROP Output_Dir "URelease" -# PROP Intermediate_Dir "URelease" -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /YX /FD /c -# ADD CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "UNICODE" /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.cmd -# 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 - -!ENDIF - -# Begin Target - -# Name "shellclasses - Win32 Release" -# Name "shellclasses - Win32 Debug" -# Name "shellclasses - Win32 Unicode Debug" -# Name "shellclasses - Win32 Unicode Release" -# Begin Source File - -SOURCE=.\shellclasses.cpp -# End Source File -# Begin Source File - -SOURCE=.\shellclasses.h -# End Source File -# Begin Source File - -SOURCE=.\shelltests.cpp -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="shellclasses" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=shellclasses - Win32 Unicode 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 "shellclasses.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 "shellclasses.mak" CFG="shellclasses - Win32 Unicode Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "shellclasses - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "shellclasses - Win32 Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "shellclasses - Win32 Unicode Debug" (based on "Win32 (x86) Console Application") +!MESSAGE "shellclasses - Win32 Unicode Release" (based on "Win32 (x86) Console Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.cmd +RSC=rc.exe + +!IF "$(CFG)" == "shellclasses - 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 "NDEBUG" /D "WIN32" /D "_CONSOLE" /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.cmd +# 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)" == "shellclasses - 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 "_DEBUG" /D "WIN32" /D "_CONSOLE" /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.cmd +# 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 + +!ELSEIF "$(CFG)" == "shellclasses - Win32 Unicode Debug" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 1 +# PROP BASE Output_Dir "shellclasses___Win32_Unicode_Debug" +# PROP BASE Intermediate_Dir "shellclasses___Win32_Unicode_Debug" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 1 +# PROP Output_Dir "UDebug" +# PROP Intermediate_Dir "UDebug" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /FR /YX /FD /GZ /c +# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /D "UNICODE" /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.cmd +# 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 + +!ELSEIF "$(CFG)" == "shellclasses - Win32 Unicode Release" + +# PROP BASE Use_MFC 0 +# PROP BASE Use_Debug_Libraries 0 +# PROP BASE Output_Dir "shellclasses___Win32_Unicode_Release" +# PROP BASE Intermediate_Dir "shellclasses___Win32_Unicode_Release" +# PROP BASE Target_Dir "" +# PROP Use_MFC 0 +# PROP Use_Debug_Libraries 0 +# PROP Output_Dir "URelease" +# PROP Intermediate_Dir "URelease" +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /YX /FD /c +# ADD CPP /nologo /W3 /GX /O2 /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /D "UNICODE" /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.cmd +# 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 + +!ENDIF + +# Begin Target + +# Name "shellclasses - Win32 Release" +# Name "shellclasses - Win32 Debug" +# Name "shellclasses - Win32 Unicode Debug" +# Name "shellclasses - Win32 Unicode Release" +# Begin Source File + +SOURCE=.\shellclasses.cpp +# End Source File +# Begin Source File + +SOURCE=.\shellclasses.h +# End Source File +# Begin Source File + +SOURCE=.\shelltests.cpp +# End Source File +# End Target +# End Project diff --git a/modules/rosapps/applications/explorer-old/utility/shellclasses.dsw b/modules/rosapps/applications/explorer-old/utility/shellclasses.dsw index 76302002c26..37c31332e05 100644 --- a/modules/rosapps/applications/explorer-old/utility/shellclasses.dsw +++ b/modules/rosapps/applications/explorer-old/utility/shellclasses.dsw @@ -1,29 +1,29 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "shellclasses"=.\shellclasses.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: "shellclasses"=.\shellclasses.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/applications/explorer-old/wexplorer.dsw b/modules/rosapps/applications/explorer-old/wexplorer.dsw index 6bc7f9a2bf9..074ed6d90e0 100644 --- a/modules/rosapps/applications/explorer-old/wexplorer.dsw +++ b/modules/rosapps/applications/explorer-old/wexplorer.dsw @@ -1,275 +1,275 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "create_links"=..\create_links\create_links.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wshell32 - End Project Dependency -}}} - -############################################################################### - -Project: "explorer"=.\explorer.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wshell32 - End Project Dependency - Begin Project Dependency - Project_Dep_Name comctl32 - End Project Dependency - Begin Project Dependency - Project_Dep_Name wcomctl32 - End Project Dependency - Begin Project Dependency - Project_Dep_Name notifyhook - End Project Dependency -}}} - -############################################################################### - -Project: "make_explorer"=.\make_explorer.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "mpr"="..\..\wine-msvc\dlls\mpr\mpr.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_port - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_unicode - End Project Dependency -}}} - -############################################################################### - -Project: "notifyhook"=.\notifyhook\notifyhook.dsp - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "urlmon"="..\..\wine-msvc\dlls\urlmon\urlmon.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_port - End Project Dependency - Begin Project Dependency - Project_Dep_Name uuid - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_unicode - End Project Dependency - Begin Project Dependency - Project_Dep_Name wcomctl32 - End Project Dependency - Begin Project Dependency - Project_Dep_Name wininet - End Project Dependency -}}} - -############################################################################### - -Project: "uuid"="..\..\wine-msvc\libs\uuid\uuid.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "wcomctl32"="..\..\wine-msvc\dlls\comctl32\wcomctl32.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_unicode - End Project Dependency -}}} - -############################################################################### - -Project: "wine"="..\..\wine-msvc\libs\wine\wine.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine_port - End Project Dependency -}}} - -############################################################################### - -Project: "wine_port"="..\..\wine-msvc\libs\port\wine_port.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "wine_unicode"="..\..\wine-msvc\libs\unicode\wine_unicode.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ -}}} - -############################################################################### - -Project: "wininet"="..\..\wine-msvc\dlls\wininet\wininet.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_port - End Project Dependency - Begin Project Dependency - Project_Dep_Name wshell32 - End Project Dependency -}}} - -############################################################################### - -Project: "wshdocvw"="..\..\wine-msvc\dlls\shdocvw\wshdocvw.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_port - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_unicode - End Project Dependency - Begin Project Dependency - Project_Dep_Name uuid - End Project Dependency - Begin Project Dependency - Project_Dep_Name urlmon - End Project Dependency -}}} - -############################################################################### - -Project: "wshell32"="..\..\wine-msvc\dlls\shell32\wshell32.dsp" - Package Owner=<4> - -Package=<5> -{{{ -}}} - -Package=<4> -{{{ - Begin Project Dependency - Project_Dep_Name wine - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_port - End Project Dependency - Begin Project Dependency - Project_Dep_Name wine_unicode - End Project Dependency - Begin Project Dependency - Project_Dep_Name wcomctl32 - End Project Dependency - Begin Project Dependency - Project_Dep_Name uuid - End Project Dependency -}}} - -############################################################################### - -Global: - -Package=<5> -{{{ -}}} - -Package=<3> -{{{ -}}} - -############################################################################### - +Microsoft Developer Studio Workspace File, Format Version 6.00 +# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! + +############################################################################### + +Project: "create_links"=..\create_links\create_links.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wshell32 + End Project Dependency +}}} + +############################################################################### + +Project: "explorer"=.\explorer.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wshell32 + End Project Dependency + Begin Project Dependency + Project_Dep_Name comctl32 + End Project Dependency + Begin Project Dependency + Project_Dep_Name wcomctl32 + End Project Dependency + Begin Project Dependency + Project_Dep_Name notifyhook + End Project Dependency +}}} + +############################################################################### + +Project: "make_explorer"=.\make_explorer.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "mpr"="..\..\wine-msvc\dlls\mpr\mpr.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_port + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_unicode + End Project Dependency +}}} + +############################################################################### + +Project: "notifyhook"=.\notifyhook\notifyhook.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "urlmon"="..\..\wine-msvc\dlls\urlmon\urlmon.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_port + End Project Dependency + Begin Project Dependency + Project_Dep_Name uuid + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_unicode + End Project Dependency + Begin Project Dependency + Project_Dep_Name wcomctl32 + End Project Dependency + Begin Project Dependency + Project_Dep_Name wininet + End Project Dependency +}}} + +############################################################################### + +Project: "uuid"="..\..\wine-msvc\libs\uuid\uuid.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "wcomctl32"="..\..\wine-msvc\dlls\comctl32\wcomctl32.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_unicode + End Project Dependency +}}} + +############################################################################### + +Project: "wine"="..\..\wine-msvc\libs\wine\wine.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine_port + End Project Dependency +}}} + +############################################################################### + +Project: "wine_port"="..\..\wine-msvc\libs\port\wine_port.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "wine_unicode"="..\..\wine-msvc\libs\unicode\wine_unicode.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Project: "wininet"="..\..\wine-msvc\dlls\wininet\wininet.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_port + End Project Dependency + Begin Project Dependency + Project_Dep_Name wshell32 + End Project Dependency +}}} + +############################################################################### + +Project: "wshdocvw"="..\..\wine-msvc\dlls\shdocvw\wshdocvw.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_port + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_unicode + End Project Dependency + Begin Project Dependency + Project_Dep_Name uuid + End Project Dependency + Begin Project Dependency + Project_Dep_Name urlmon + End Project Dependency +}}} + +############################################################################### + +Project: "wshell32"="..\..\wine-msvc\dlls\shell32\wshell32.dsp" - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ + Begin Project Dependency + Project_Dep_Name wine + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_port + End Project Dependency + Begin Project Dependency + Project_Dep_Name wine_unicode + End Project Dependency + Begin Project Dependency + Project_Dep_Name wcomctl32 + End Project Dependency + Begin Project Dependency + Project_Dep_Name uuid + End Project Dependency +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/applications/fraginator/DefragDialog.cpp b/modules/rosapps/applications/fraginator/DefragDialog.cpp index fd103f2a519..10b5663fa31 100644 --- a/modules/rosapps/applications/fraginator/DefragDialog.cpp +++ b/modules/rosapps/applications/fraginator/DefragDialog.cpp @@ -1,38 +1,38 @@ -#include "DefragDialog.h" -#include "Defragment.h" -#include "resource.h" - - -void UpdateDefragInfo (HWND Dlg) -{ - Defragment *Defrag; - HWND PercentItem; - char PercentText[100]; - - Defrag = (Defragment *) GetWindowLongPtr (Dlg, GWLP_USERDATA); - - sprintf (PercentText, "%6.2f%%", Defrag->GetStatusPercent()); - PercentItem = GetDlgItem (Dlg, IDC_PERCENT); - SendMessage (GetDlgItem (Dlg, IDC_PERCENT), WM_SETTEXT, 0, (LPARAM) PercentText); - SendMessage (GetDlgItem (Dlg, IDC_STATUS_TEXT), WM_SETTEXT, 0, (LPARAM) Defrag->GetStatusString().c_str()); - - return; -} - - -INT_PTR CALLBACK DefragDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam) -{ - switch (Msg) - { - case WM_INITDIALOG: - SetWindowLongPtr (Dlg, GWLP_USERDATA, (LONG_PTR)LParam); - UpdateDefragInfo (Dlg); - return (1); - - case WM_UPDATEINFO: - UpdateDefragInfo (Dlg); - return (1); - } - - return (0); -} +#include "DefragDialog.h" +#include "Defragment.h" +#include "resource.h" + + +void UpdateDefragInfo (HWND Dlg) +{ + Defragment *Defrag; + HWND PercentItem; + char PercentText[100]; + + Defrag = (Defragment *) GetWindowLongPtr (Dlg, GWLP_USERDATA); + + sprintf (PercentText, "%6.2f%%", Defrag->GetStatusPercent()); + PercentItem = GetDlgItem (Dlg, IDC_PERCENT); + SendMessage (GetDlgItem (Dlg, IDC_PERCENT), WM_SETTEXT, 0, (LPARAM) PercentText); + SendMessage (GetDlgItem (Dlg, IDC_STATUS_TEXT), WM_SETTEXT, 0, (LPARAM) Defrag->GetStatusString().c_str()); + + return; +} + + +INT_PTR CALLBACK DefragDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam) +{ + switch (Msg) + { + case WM_INITDIALOG: + SetWindowLongPtr (Dlg, GWLP_USERDATA, (LONG_PTR)LParam); + UpdateDefragInfo (Dlg); + return (1); + + case WM_UPDATEINFO: + UpdateDefragInfo (Dlg); + return (1); + } + + return (0); +} diff --git a/modules/rosapps/applications/fraginator/Defragment.cpp b/modules/rosapps/applications/fraginator/Defragment.cpp index 19984489a76..dffde1319e9 100644 --- a/modules/rosapps/applications/fraginator/Defragment.cpp +++ b/modules/rosapps/applications/fraginator/Defragment.cpp @@ -1,458 +1,458 @@ -#include "Defragment.h" - - -// Ahh yes I ripped this from my old Findupes project :) -// Fits a path name, composed of a path (i.e. "c:\blah\blah\cha\cha") and a filename ("stuff.txt") -// and fits it to a given length. If it has to truncate it will first truncate from the path, -// substituting in periods. So you might end up with something like: -// C:\Program Files\Micro...\Register.exe -int FitName (wchar_t *destination, const wchar_t *path, const wchar_t *filename, uint32 totalWidth) -{ - uint32 pathLen=0; - uint32 fnLen=0; - uint32 halfTotLen=0; - uint32 len4fn=0; /* number of chars remaining for filename after path is applied */ - uint32 len4path=0; /* number of chars for path before filename is applied */ - wchar_t fmtStrPath[20]=L""; - wchar_t fmtStrFile[20]=L""; - wchar_t fmtString[40]=L""; - - /* - assert (destination != NULL); - assert (path != NULL); - assert (filename != NULL); - assert (totalWidth != 0); - */ - - pathLen = wcslen(path); - fnLen = wcslen(filename); - if (!(totalWidth % 2)) - halfTotLen=totalWidth / 2; - else - halfTotLen=(totalWidth-1) / 2; /* -1 because otherwise (halfTotLen*2) == -(totalWidth+1) which wouldn't be good */ - - /* determine how much width the path and filename each get */ - if ( (pathLen >= halfTotLen) && (fnLen < halfTotLen) ) - { - len4fn = fnLen; - len4path = (totalWidth - len4fn); - } - - if ( (pathLen < halfTotLen) && (fnLen < halfTotLen) ) - { - len4fn = fnLen; - len4path = pathLen; - } - - if ( (pathLen >= halfTotLen) && (fnLen >= halfTotLen) ) - { - len4fn = halfTotLen; - len4path = halfTotLen; - } - - if ( (pathLen < halfTotLen) && (fnLen >= halfTotLen) ) - { - len4path = pathLen; - len4fn = (totalWidth - len4path); - } - /* - if halfTotLen was adjusted above to avoid a rounding error, give the - extra wchar_t to the filename - */ - if (halfTotLen < (totalWidth/2)) len4path++; - - if (pathLen > len4path) swprintf (fmtStrPath, L"%%.%ds...\\", len4path-4); - else - swprintf (fmtStrPath, L"%%s"); - - if (fnLen > len4fn) swprintf (fmtStrFile, L"%%.%ds...", len4fn-3); - else - swprintf (fmtStrFile, L"%%s"); - - wcscpy (fmtString, fmtStrPath); - wcscat (fmtString, fmtStrFile); - /*swprintf (fmtString, L"%s%s", fmtStrPath, fmtStrFile);*/ - swprintf (destination, fmtString, path,filename); - - return (1); -} - -Defragment::Defragment (wstring Name, DefragType DefragMethod) -{ - Method = DefragMethod; - DoLimitLength = true; - Error = false; - Done = false; - PleaseStop = false; - PleasePause = false; - DriveName = Name; - StatusPercent = 0.0f; - LastBMPUpdate = GetTickCount (); - - SetStatusString (L"Opening volume " + Name); - if (!Volume.Open (Name)) - { - SetStatusString (L"Error opening volume " + Name); - Error = true; - Done = true; - StatusPercent = 100.0f; - } - - return; -} - - -Defragment::~Defragment () -{ - if (!IsDoneYet ()) - { - Stop (); - while (!IsDoneYet() && !HasError()) - { - SetStatusString (L"Waiting for thread to stop ..."); - Sleep (150); - } - } - - Volume.Close (); - return; -} - - -void Defragment::SetStatusString (wstring NewStatus) -{ - Lock (); - StatusString = NewStatus; - Unlock (); - - return; -} - - -wstring Defragment::GetStatusString (void) -{ - wstring ReturnVal; - - Lock (); - ReturnVal = StatusString; - Unlock (); - - return (ReturnVal); -} - - -double Defragment::GetStatusPercent (void) -{ - return (StatusPercent); -} - - -bool Defragment::IsDoneYet (void) -{ - return (Done); -} - - -void Defragment::Start (void) -{ - uint32 i; - uint64 FirstFreeLCN; - uint64 TotalClusters; - uint64 ClustersProgress; - wchar_t PrintName[80]; - int Width = 70; - - if (Error) - goto DoneDefrag; - - // First thing: build a file list. - SetStatusString (L"Getting volume bitmap"); - if (!Volume.GetBitmap()) - { - SetStatusString (L"Could not get volume " + DriveName + L" bitmap"); - Error = true; - goto DoneDefrag; - } - - LastBMPUpdate = GetTickCount (); - - if (PleaseStop) - goto DoneDefrag; - - SetStatusString (L"Obtaining volume geometry"); - if (!Volume.ObtainInfo ()) - { - SetStatusString (L"Could not obtain volume " + DriveName + L" geometry"); - Error = true; - goto DoneDefrag; - } - - if (PleaseStop) - goto DoneDefrag; - - SetStatusString (L"Building file database for volume " + DriveName); - if (!Volume.BuildFileList (PleaseStop, StatusPercent)) - { - SetStatusString (L"Could not build file database for volume " + DriveName); - Error = true; - goto DoneDefrag; - } - - if (PleaseStop) - goto DoneDefrag; - - SetStatusString (L"Analyzing database for " + DriveName); - TotalClusters = 0; - for (i = 0; i < Volume.GetDBFileCount(); i++) - { - TotalClusters += Volume.GetDBFile(i).Clusters; - } - - // Defragment! - ClustersProgress = 0; - - // Find first free LCN for speedier searches ... - Volume.FindFreeRange (0, 1, FirstFreeLCN); - - if (PleaseStop) - goto DoneDefrag; - - // Analyze? - if (Method == DefragAnalyze) - { - uint32 j; - - Report.RootPath = Volume.GetRootPath (); - - Report.FraggedFiles.clear (); - Report.UnfraggedFiles.clear (); - Report.UnmovableFiles.clear (); - - Report.FilesCount = Volume.GetDBFileCount () - Volume.GetDBDirCount (); - Report.DirsCount = Volume.GetDBDirCount (); - Report.DiskSizeBytes = Volume.GetVolumeInfo().TotalBytes; - - Report.FilesSizeClusters = 0; - Report.FilesSlackBytes = 0; - Report.FilesSizeBytes = 0; - Report.FilesFragments = 0; - - for (j = 0; j < Volume.GetDBFileCount(); j++) - { - FileInfo Info; - - Info = Volume.GetDBFile (j); - - Report.FilesFragments += max ((size_t)1, Info.Fragments.size()); // add 1 fragment even for 0 bytes/0 cluster files - - if (Info.Attributes.Process == 0) - continue; - - SetStatusString (Volume.GetDBDir (Info.DirIndice) + Info.Name); - - Report.FilesSizeClusters += Info.Clusters; - Report.FilesSizeBytes += Info.Size; - - if (Info.Attributes.Unmovable == 1) - Report.UnmovableFiles.push_back (j); - - if (Info.Fragments.size() > 1) - Report.FraggedFiles.push_back (j); - else - Report.UnfraggedFiles.push_back (j); - - StatusPercent = ((double)j / (double)Report.FilesCount) * 100.0f; - } - - Report.FilesSizeOnDisk = Report.FilesSizeClusters * (uint64)Volume.GetVolumeInfo().ClusterSize; - Report.FilesSlackBytes = Report.FilesSizeOnDisk - Report.FilesSizeBytes; - Report.AverageFragments = (double)Report.FilesFragments / (double)Report.FilesCount; - Report.PercentFragged = 100.0f * ((double)(signed)Report.FraggedFiles.size() / (double)(signed)Report.FilesCount); - - uint64 Percent; - Percent = (10000 * Report.FilesSlackBytes) / Report.FilesSizeOnDisk; - Report.PercentSlack = (double)(signed)Percent / 100.0f; - } - else - // Go through all the files and ... defragment them! - for (i = 0; i < Volume.GetDBFileCount(); i++) - { - FileInfo Info; - bool Result; - uint64 TargetLCN; - uint64 PreviousClusters; - - // What? They want us to pause? Oh ok. - if (PleasePause) - { - SetStatusString (L"Paused"); - PleasePause = false; - - while (PleasePause == false) - { - Sleep (50); - } - - PleasePause = false; - } - - if (PleaseStop) - { - SetStatusString (L"Stopping"); - break; - } - - // - Info = Volume.GetDBFile (i); - - PreviousClusters = ClustersProgress; - ClustersProgress += Info.Clusters; - - if (Info.Attributes.Process == 0) - continue; - - if (!DoLimitLength) - SetStatusString (Volume.GetDBDir (Info.DirIndice) + Info.Name); - else - { - FitName (PrintName, Volume.GetDBDir (Info.DirIndice).c_str(), Info.Name.c_str(), Width); - SetStatusString (PrintName); - } - - // Calculate percentage complete - StatusPercent = 100.0f * double((double)PreviousClusters / (double)TotalClusters); - - // Can't defrag directories yet - if (Info.Attributes.Directory == 1) - continue; - - // Can't defrag 0 byte files :) - if (Info.Fragments.empty()) - continue; - - // If doing fast defrag, skip non-fragmented files - // Note: This assumes that the extents stored in Info.Fragments - // are consolidated. I.e. we assume it is NOT the case that - // two extents account for a sequential range of (non- - // fragmented) clusters. - if (Info.Fragments.size() == 1 && Method == DefragFast) - continue; - - // Otherwise, defrag0rize it! - int Retry = 3; // retry a few times - while (Retry > 0) - { - // Find a place that can fit the file - Result = Volume.FindFreeRange (FirstFreeLCN, Info.Clusters, TargetLCN); - - // If yes, try moving it - if (Result) - { - // If we're doing an extensive defrag and the file is already defragmented - // and if its new location would be after its current location, don't - // move it. - if (Method == DefragExtensive && Info.Fragments.size() == 1 && - TargetLCN > Info.Fragments[0].StartLCN) - { - Retry = 1; - } - else - { - if (Volume.MoveFileDumb (i, TargetLCN)) - { - Retry = 1; // yay, all done with this file. - Volume.FindFreeRange (0, 1, FirstFreeLCN); - } - } - } - - // New: Only update bitmap if it's older than 15 seconds - if ((GetTickCount() - LastBMPUpdate) < 15000) - Retry = 1; - else - if (!Result || Retry != 1) - { // hmm. Wait for a moment, then update the drive bitmap - //SetStatusString (L"(Reobtaining volume " + DriveName + L" bitmap)"); - - if (!DoLimitLength) - { - SetStatusString (GetStatusString() + wstring (L" .")); - } - - if (Volume.GetBitmap ()) - { - LastBMPUpdate = GetTickCount (); - - if (!DoLimitLength) - SetStatusString (Volume.GetDBDir (Info.DirIndice) + Info.Name); - else - SetStatusString (PrintName); - - Volume.FindFreeRange (0, 1, FirstFreeLCN); - } - else - { - SetStatusString (L"Could not re-obtain volume " + DriveName + L" bitmap"); - Error = true; - } - } - - Retry--; - } - - if (Error == true) - break; - } - -DoneDefrag: - wstring OldStatus; - - OldStatus = GetStatusString (); - StatusPercent = 99.999999f; - SetStatusString (L"Closing volume " + DriveName); - Volume.Close (); - StatusPercent = 100.0f; - - // If there was an error then the wstring has already been set - if (Error) - SetStatusString (OldStatus); - else - if (PleaseStop) - SetStatusString (L"Volume " + DriveName + L" defragmentation was stopped"); - else - SetStatusString (L"Finished defragmenting " + DriveName); - - Done = true; - - return; -} - - -void Defragment::TogglePause (void) -{ - Lock (); - SetStatusString (L"Pausing ..."); - PleasePause = true; - Unlock (); - - return; -} - - -void Defragment::Stop (void) -{ - Lock (); - SetStatusString (L"Stopping ..."); - PleaseStop = true; - Unlock (); - - return; -} - - -bool Defragment::HasError (void) -{ - return (Error); -} - +#include "Defragment.h" + + +// Ahh yes I ripped this from my old Findupes project :) +// Fits a path name, composed of a path (i.e. "c:\blah\blah\cha\cha") and a filename ("stuff.txt") +// and fits it to a given length. If it has to truncate it will first truncate from the path, +// substituting in periods. So you might end up with something like: +// C:\Program Files\Micro...\Register.exe +int FitName (wchar_t *destination, const wchar_t *path, const wchar_t *filename, uint32 totalWidth) +{ + uint32 pathLen=0; + uint32 fnLen=0; + uint32 halfTotLen=0; + uint32 len4fn=0; /* number of chars remaining for filename after path is applied */ + uint32 len4path=0; /* number of chars for path before filename is applied */ + wchar_t fmtStrPath[20]=L""; + wchar_t fmtStrFile[20]=L""; + wchar_t fmtString[40]=L""; + + /* + assert (destination != NULL); + assert (path != NULL); + assert (filename != NULL); + assert (totalWidth != 0); + */ + + pathLen = wcslen(path); + fnLen = wcslen(filename); + if (!(totalWidth % 2)) + halfTotLen=totalWidth / 2; + else + halfTotLen=(totalWidth-1) / 2; /* -1 because otherwise (halfTotLen*2) == +(totalWidth+1) which wouldn't be good */ + + /* determine how much width the path and filename each get */ + if ( (pathLen >= halfTotLen) && (fnLen < halfTotLen) ) + { + len4fn = fnLen; + len4path = (totalWidth - len4fn); + } + + if ( (pathLen < halfTotLen) && (fnLen < halfTotLen) ) + { + len4fn = fnLen; + len4path = pathLen; + } + + if ( (pathLen >= halfTotLen) && (fnLen >= halfTotLen) ) + { + len4fn = halfTotLen; + len4path = halfTotLen; + } + + if ( (pathLen < halfTotLen) && (fnLen >= halfTotLen) ) + { + len4path = pathLen; + len4fn = (totalWidth - len4path); + } + /* + if halfTotLen was adjusted above to avoid a rounding error, give the + extra wchar_t to the filename + */ + if (halfTotLen < (totalWidth/2)) len4path++; + + if (pathLen > len4path) swprintf (fmtStrPath, L"%%.%ds...\\", len4path-4); + else + swprintf (fmtStrPath, L"%%s"); + + if (fnLen > len4fn) swprintf (fmtStrFile, L"%%.%ds...", len4fn-3); + else + swprintf (fmtStrFile, L"%%s"); + + wcscpy (fmtString, fmtStrPath); + wcscat (fmtString, fmtStrFile); + /*swprintf (fmtString, L"%s%s", fmtStrPath, fmtStrFile);*/ + swprintf (destination, fmtString, path,filename); + + return (1); +} + +Defragment::Defragment (wstring Name, DefragType DefragMethod) +{ + Method = DefragMethod; + DoLimitLength = true; + Error = false; + Done = false; + PleaseStop = false; + PleasePause = false; + DriveName = Name; + StatusPercent = 0.0f; + LastBMPUpdate = GetTickCount (); + + SetStatusString (L"Opening volume " + Name); + if (!Volume.Open (Name)) + { + SetStatusString (L"Error opening volume " + Name); + Error = true; + Done = true; + StatusPercent = 100.0f; + } + + return; +} + + +Defragment::~Defragment () +{ + if (!IsDoneYet ()) + { + Stop (); + while (!IsDoneYet() && !HasError()) + { + SetStatusString (L"Waiting for thread to stop ..."); + Sleep (150); + } + } + + Volume.Close (); + return; +} + + +void Defragment::SetStatusString (wstring NewStatus) +{ + Lock (); + StatusString = NewStatus; + Unlock (); + + return; +} + + +wstring Defragment::GetStatusString (void) +{ + wstring ReturnVal; + + Lock (); + ReturnVal = StatusString; + Unlock (); + + return (ReturnVal); +} + + +double Defragment::GetStatusPercent (void) +{ + return (StatusPercent); +} + + +bool Defragment::IsDoneYet (void) +{ + return (Done); +} + + +void Defragment::Start (void) +{ + uint32 i; + uint64 FirstFreeLCN; + uint64 TotalClusters; + uint64 ClustersProgress; + wchar_t PrintName[80]; + int Width = 70; + + if (Error) + goto DoneDefrag; + + // First thing: build a file list. + SetStatusString (L"Getting volume bitmap"); + if (!Volume.GetBitmap()) + { + SetStatusString (L"Could not get volume " + DriveName + L" bitmap"); + Error = true; + goto DoneDefrag; + } + + LastBMPUpdate = GetTickCount (); + + if (PleaseStop) + goto DoneDefrag; + + SetStatusString (L"Obtaining volume geometry"); + if (!Volume.ObtainInfo ()) + { + SetStatusString (L"Could not obtain volume " + DriveName + L" geometry"); + Error = true; + goto DoneDefrag; + } + + if (PleaseStop) + goto DoneDefrag; + + SetStatusString (L"Building file database for volume " + DriveName); + if (!Volume.BuildFileList (PleaseStop, StatusPercent)) + { + SetStatusString (L"Could not build file database for volume " + DriveName); + Error = true; + goto DoneDefrag; + } + + if (PleaseStop) + goto DoneDefrag; + + SetStatusString (L"Analyzing database for " + DriveName); + TotalClusters = 0; + for (i = 0; i < Volume.GetDBFileCount(); i++) + { + TotalClusters += Volume.GetDBFile(i).Clusters; + } + + // Defragment! + ClustersProgress = 0; + + // Find first free LCN for speedier searches ... + Volume.FindFreeRange (0, 1, FirstFreeLCN); + + if (PleaseStop) + goto DoneDefrag; + + // Analyze? + if (Method == DefragAnalyze) + { + uint32 j; + + Report.RootPath = Volume.GetRootPath (); + + Report.FraggedFiles.clear (); + Report.UnfraggedFiles.clear (); + Report.UnmovableFiles.clear (); + + Report.FilesCount = Volume.GetDBFileCount () - Volume.GetDBDirCount (); + Report.DirsCount = Volume.GetDBDirCount (); + Report.DiskSizeBytes = Volume.GetVolumeInfo().TotalBytes; + + Report.FilesSizeClusters = 0; + Report.FilesSlackBytes = 0; + Report.FilesSizeBytes = 0; + Report.FilesFragments = 0; + + for (j = 0; j < Volume.GetDBFileCount(); j++) + { + FileInfo Info; + + Info = Volume.GetDBFile (j); + + Report.FilesFragments += max ((size_t)1, Info.Fragments.size()); // add 1 fragment even for 0 bytes/0 cluster files + + if (Info.Attributes.Process == 0) + continue; + + SetStatusString (Volume.GetDBDir (Info.DirIndice) + Info.Name); + + Report.FilesSizeClusters += Info.Clusters; + Report.FilesSizeBytes += Info.Size; + + if (Info.Attributes.Unmovable == 1) + Report.UnmovableFiles.push_back (j); + + if (Info.Fragments.size() > 1) + Report.FraggedFiles.push_back (j); + else + Report.UnfraggedFiles.push_back (j); + + StatusPercent = ((double)j / (double)Report.FilesCount) * 100.0f; + } + + Report.FilesSizeOnDisk = Report.FilesSizeClusters * (uint64)Volume.GetVolumeInfo().ClusterSize; + Report.FilesSlackBytes = Report.FilesSizeOnDisk - Report.FilesSizeBytes; + Report.AverageFragments = (double)Report.FilesFragments / (double)Report.FilesCount; + Report.PercentFragged = 100.0f * ((double)(signed)Report.FraggedFiles.size() / (double)(signed)Report.FilesCount); + + uint64 Percent; + Percent = (10000 * Report.FilesSlackBytes) / Report.FilesSizeOnDisk; + Report.PercentSlack = (double)(signed)Percent / 100.0f; + } + else + // Go through all the files and ... defragment them! + for (i = 0; i < Volume.GetDBFileCount(); i++) + { + FileInfo Info; + bool Result; + uint64 TargetLCN; + uint64 PreviousClusters; + + // What? They want us to pause? Oh ok. + if (PleasePause) + { + SetStatusString (L"Paused"); + PleasePause = false; + + while (PleasePause == false) + { + Sleep (50); + } + + PleasePause = false; + } + + if (PleaseStop) + { + SetStatusString (L"Stopping"); + break; + } + + // + Info = Volume.GetDBFile (i); + + PreviousClusters = ClustersProgress; + ClustersProgress += Info.Clusters; + + if (Info.Attributes.Process == 0) + continue; + + if (!DoLimitLength) + SetStatusString (Volume.GetDBDir (Info.DirIndice) + Info.Name); + else + { + FitName (PrintName, Volume.GetDBDir (Info.DirIndice).c_str(), Info.Name.c_str(), Width); + SetStatusString (PrintName); + } + + // Calculate percentage complete + StatusPercent = 100.0f * double((double)PreviousClusters / (double)TotalClusters); + + // Can't defrag directories yet + if (Info.Attributes.Directory == 1) + continue; + + // Can't defrag 0 byte files :) + if (Info.Fragments.empty()) + continue; + + // If doing fast defrag, skip non-fragmented files + // Note: This assumes that the extents stored in Info.Fragments + // are consolidated. I.e. we assume it is NOT the case that + // two extents account for a sequential range of (non- + // fragmented) clusters. + if (Info.Fragments.size() == 1 && Method == DefragFast) + continue; + + // Otherwise, defrag0rize it! + int Retry = 3; // retry a few times + while (Retry > 0) + { + // Find a place that can fit the file + Result = Volume.FindFreeRange (FirstFreeLCN, Info.Clusters, TargetLCN); + + // If yes, try moving it + if (Result) + { + // If we're doing an extensive defrag and the file is already defragmented + // and if its new location would be after its current location, don't + // move it. + if (Method == DefragExtensive && Info.Fragments.size() == 1 && + TargetLCN > Info.Fragments[0].StartLCN) + { + Retry = 1; + } + else + { + if (Volume.MoveFileDumb (i, TargetLCN)) + { + Retry = 1; // yay, all done with this file. + Volume.FindFreeRange (0, 1, FirstFreeLCN); + } + } + } + + // New: Only update bitmap if it's older than 15 seconds + if ((GetTickCount() - LastBMPUpdate) < 15000) + Retry = 1; + else + if (!Result || Retry != 1) + { // hmm. Wait for a moment, then update the drive bitmap + //SetStatusString (L"(Reobtaining volume " + DriveName + L" bitmap)"); + + if (!DoLimitLength) + { + SetStatusString (GetStatusString() + wstring (L" .")); + } + + if (Volume.GetBitmap ()) + { + LastBMPUpdate = GetTickCount (); + + if (!DoLimitLength) + SetStatusString (Volume.GetDBDir (Info.DirIndice) + Info.Name); + else + SetStatusString (PrintName); + + Volume.FindFreeRange (0, 1, FirstFreeLCN); + } + else + { + SetStatusString (L"Could not re-obtain volume " + DriveName + L" bitmap"); + Error = true; + } + } + + Retry--; + } + + if (Error == true) + break; + } + +DoneDefrag: + wstring OldStatus; + + OldStatus = GetStatusString (); + StatusPercent = 99.999999f; + SetStatusString (L"Closing volume " + DriveName); + Volume.Close (); + StatusPercent = 100.0f; + + // If there was an error then the wstring has already been set + if (Error) + SetStatusString (OldStatus); + else + if (PleaseStop) + SetStatusString (L"Volume " + DriveName + L" defragmentation was stopped"); + else + SetStatusString (L"Finished defragmenting " + DriveName); + + Done = true; + + return; +} + + +void Defragment::TogglePause (void) +{ + Lock (); + SetStatusString (L"Pausing ..."); + PleasePause = true; + Unlock (); + + return; +} + + +void Defragment::Stop (void) +{ + Lock (); + SetStatusString (L"Stopping ..."); + PleaseStop = true; + Unlock (); + + return; +} + + +bool Defragment::HasError (void) +{ + return (Error); +} + diff --git a/modules/rosapps/applications/fraginator/Defragment.h b/modules/rosapps/applications/fraginator/Defragment.h index 4706f2856f5..b5db6afbdf2 100644 --- a/modules/rosapps/applications/fraginator/Defragment.h +++ b/modules/rosapps/applications/fraginator/Defragment.h @@ -1,92 +1,92 @@ -/***************************************************************************** - - Defragment - -*****************************************************************************/ - - -#ifndef DEFRAGMENT_H -#define DEFRAGMENT_H - - -#include "Unfrag.h" -#include "DriveVolume.h" -#include "Mutex.h" - - -extern int FitName (wchar_t *destination, const wchar_t *path, const wchar_t *filename, uint32 totalWidth); - - -typedef struct DefragReport -{ - wstring RootPath; - uint64 DiskSizeBytes; - uint64 DirsCount; - uint64 FilesCount; - uint64 FilesSizeBytes; - uint64 FilesSizeOnDisk; - uint64 FilesSizeClusters; - uint64 FilesSlackBytes; - uint32 FilesFragments; - double AverageFragments; // = FilesFragments / FilesCount - double PercentFragged; - double PercentSlack; - - vector FraggedFiles; - vector UnfraggedFiles; - vector UnmovableFiles; -} DefragReport; - - -class Defragment -{ -public: - Defragment (wstring Name, DefragType DefragMethod); - ~Defragment (); - - // Commands - void Start (void); - void TogglePause (void); - void Stop (void); - - // Info - bool IsDoneYet (void); - bool HasError (void); - wstring GetStatusString (void); - double GetStatusPercent (void); - DefragType GetDefragType (void) { return (Method); } - DefragReport &GetDefragReport (void) { return (Report); } - DriveVolume &GetVolume (void) { return (Volume); } - - // Mutex - void Lock (void) { DefragMutex.Lock (); } - void Unlock (void) { DefragMutex.Unlock (); } - - // Limit length of status string to 70 chars? - bool GetDoLimitLength (void) { return (DoLimitLength); } - void SetDoLimitLength (bool L) { DoLimitLength = L; } - -private: - void FastDefrag (void); - void ExtensiveDefrag (void); - void SetStatusString (wstring NewStatus); - - DWORD LastBMPUpdate; // Last time volume bitmap was updated - DefragReport Report; - bool DoLimitLength; - DefragType Method; - wstring DriveName; - DriveVolume Volume; - wstring StatusString; - wstring ErrorString; - double StatusPercent; - Mutex DefragMutex; - bool Error; - bool Done; - bool PleaseStop; - bool PleasePause; - DefragType DefragMethod; -}; - - -#endif // DEFRAGMENT_H +/***************************************************************************** + + Defragment + +*****************************************************************************/ + + +#ifndef DEFRAGMENT_H +#define DEFRAGMENT_H + + +#include "Unfrag.h" +#include "DriveVolume.h" +#include "Mutex.h" + + +extern int FitName (wchar_t *destination, const wchar_t *path, const wchar_t *filename, uint32 totalWidth); + + +typedef struct DefragReport +{ + wstring RootPath; + uint64 DiskSizeBytes; + uint64 DirsCount; + uint64 FilesCount; + uint64 FilesSizeBytes; + uint64 FilesSizeOnDisk; + uint64 FilesSizeClusters; + uint64 FilesSlackBytes; + uint32 FilesFragments; + double AverageFragments; // = FilesFragments / FilesCount + double PercentFragged; + double PercentSlack; + + vector FraggedFiles; + vector UnfraggedFiles; + vector UnmovableFiles; +} DefragReport; + + +class Defragment +{ +public: + Defragment (wstring Name, DefragType DefragMethod); + ~Defragment (); + + // Commands + void Start (void); + void TogglePause (void); + void Stop (void); + + // Info + bool IsDoneYet (void); + bool HasError (void); + wstring GetStatusString (void); + double GetStatusPercent (void); + DefragType GetDefragType (void) { return (Method); } + DefragReport &GetDefragReport (void) { return (Report); } + DriveVolume &GetVolume (void) { return (Volume); } + + // Mutex + void Lock (void) { DefragMutex.Lock (); } + void Unlock (void) { DefragMutex.Unlock (); } + + // Limit length of status string to 70 chars? + bool GetDoLimitLength (void) { return (DoLimitLength); } + void SetDoLimitLength (bool L) { DoLimitLength = L; } + +private: + void FastDefrag (void); + void ExtensiveDefrag (void); + void SetStatusString (wstring NewStatus); + + DWORD LastBMPUpdate; // Last time volume bitmap was updated + DefragReport Report; + bool DoLimitLength; + DefragType Method; + wstring DriveName; + DriveVolume Volume; + wstring StatusString; + wstring ErrorString; + double StatusPercent; + Mutex DefragMutex; + bool Error; + bool Done; + bool PleaseStop; + bool PleasePause; + DefragType DefragMethod; +}; + + +#endif // DEFRAGMENT_H diff --git a/modules/rosapps/applications/fraginator/DriveVolume.cpp b/modules/rosapps/applications/fraginator/DriveVolume.cpp index 4c8f0051c75..08fe040c8ac 100644 --- a/modules/rosapps/applications/fraginator/DriveVolume.cpp +++ b/modules/rosapps/applications/fraginator/DriveVolume.cpp @@ -1,806 +1,806 @@ -#include "DriveVolume.h" - - -DriveVolume::DriveVolume () -{ - Handle = INVALID_HANDLE_VALUE; - BitmapDetail = NULL; - return; -} - - -DriveVolume::~DriveVolume () -{ - Close (); - Directories.clear (); - Files.clear (); - return; -} - - -void DriveVolume::Close (void) -{ - if (Handle != INVALID_HANDLE_VALUE) - { - CloseHandle (Handle); - Handle = INVALID_HANDLE_VALUE; - } - - if (BitmapDetail != NULL) - { - free (BitmapDetail); - BitmapDetail = NULL; - } - - return; -} - - -// "Name" should be the drive letter followed by a colon. ie, "c:" -// It's a string to allow for further expansion (ie, defragging over the network?) -// or some other baloney reason -bool DriveVolume::Open (wstring Name) -{ - wchar_t FileName[100]; - bool ReturnVal; - - swprintf (FileName, L"\\\\.\\%s", Name.c_str()); - RootPath = Name.c_str(); - RootPath += L"\\"; - - Handle = CreateFileW - ( - FileName, - MAXIMUM_ALLOWED, // access - FILE_SHARE_READ | FILE_SHARE_WRITE, // share type - NULL, // security descriptor - OPEN_EXISTING, // open type - 0, // attributes (none) - NULL // template - ); - - if (Handle == INVALID_HANDLE_VALUE) - ReturnVal = false; - else - { - wchar_t VolName[64]; - DWORD VolSN; - DWORD VolMaxFileLen; - DWORD FSFlags; - wchar_t FSName[64]; - BOOL Result; - - ReturnVal = true; - Result = GetVolumeInformationW - ( - RootPath.c_str(), - VolName, - sizeof (VolName), - &VolSN, - &VolMaxFileLen, - &FSFlags, - FSName, - sizeof (FSName) - ); - - if (Result) - { - wchar_t SerialText[10]; - - VolInfo.FileSystem = FSName; - VolInfo.MaxNameLen = VolMaxFileLen; - VolInfo.Name = VolName; - - swprintf (SerialText, L"%x-%x", (VolSN & 0xffff0000) >> 16, - VolSN & 0x0000ffff); - - _wcsupr (SerialText); - VolInfo.Serial = SerialText; - } - else - { - VolInfo.FileSystem = L"(Unknown)"; - VolInfo.MaxNameLen = 255; - VolInfo.Name = L"(Unknown)"; - VolInfo.Serial = L"(Unknown)"; - } - } - - return (ReturnVal); -} - - -bool DriveVolume::ObtainInfo (void) -{ - BOOL Result; - DWORD BytesGot; - uint64 nan; - - BytesGot = 0; - ZeroMemory (&Geometry, sizeof (Geometry)); - Result = DeviceIoControl - ( - Handle, - IOCTL_DISK_GET_DRIVE_GEOMETRY, - NULL, - 0, - &Geometry, - sizeof (Geometry), - &BytesGot, - NULL - ); - - // Call failed? Aww :( - if (!Result) - return (false); - - // Get cluster size - DWORD SectorsPerCluster; - DWORD BytesPerSector; - DWORD FreeClusters; - DWORD TotalClusters; - - Result = GetDiskFreeSpaceW - ( - RootPath.c_str(), - &SectorsPerCluster, - &BytesPerSector, - &FreeClusters, - &TotalClusters - ); - - // Failed? Weird. - if (!Result) - return (false); - - VolInfo.ClusterSize = SectorsPerCluster * BytesPerSector; - - Result = GetDiskFreeSpaceExW - ( - RootPath.c_str(), - (PULARGE_INTEGER)&nan, - (PULARGE_INTEGER)&VolInfo.TotalBytes, - (PULARGE_INTEGER)&VolInfo.FreeBytes - ); - - return (true); -} - - -// Get bitmap, several clusters at a time ... -#define CLUSTERS 4096 -bool DriveVolume::GetBitmap (void) -{ - STARTING_LCN_INPUT_BUFFER StartingLCN; - VOLUME_BITMAP_BUFFER *Bitmap = NULL; - uint32 BitmapSize; - DWORD BytesReturned; - BOOL Result; - - StartingLCN.StartingLcn.QuadPart = 0; - - // Allocate buffer - // Call FSCTL_GET_VOLUME_BITMAP once with a very small buffer - // This will leave the total number of clusters in Bitmap->BitmapSize and we can - // then correctly allocate based off that - // I suppose this won't work if your drive has only 40 clusters on it or so :) - BitmapSize = sizeof (VOLUME_BITMAP_BUFFER) + 4; - Bitmap = (VOLUME_BITMAP_BUFFER *) malloc (BitmapSize); - - Result = DeviceIoControl - ( - Handle, - FSCTL_GET_VOLUME_BITMAP, - &StartingLCN, - sizeof (StartingLCN), - Bitmap, - BitmapSize, - &BytesReturned, - NULL - ); - - // Bad result? - if (Result == FALSE && GetLastError () != ERROR_MORE_DATA) - { - //wprintf ("\nDeviceIoControl returned false, GetLastError() was not ERROR_MORE_DATA\n"); - free (Bitmap); - return (false); - } - - // Otherwise, we're good - BitmapSize = sizeof (VOLUME_BITMAP_BUFFER) + (Bitmap->BitmapSize.QuadPart / 8) + 1; - Bitmap = (VOLUME_BITMAP_BUFFER *) realloc (Bitmap, BitmapSize); - Result = DeviceIoControl - ( - Handle, - FSCTL_GET_VOLUME_BITMAP, - &StartingLCN, - sizeof (StartingLCN), - Bitmap, - BitmapSize, - &BytesReturned, - NULL - ); - - //DWORD LastError = GetLastError (); - - if (Result == FALSE) - { - wprintf (L"\nCouldn't properly read volume bitmap\n"); - free (Bitmap); - return (false); - } - - // Convert to a L'quick use' bitmap - //const int BitShift[] = { 1, 2, 4, 8, 16, 32, 64, 128 }; - - VolInfo.ClusterCount = Bitmap->BitmapSize.QuadPart; - - if (BitmapDetail != NULL) - free (BitmapDetail); - - BitmapDetail = (uint32 *) malloc (sizeof(uint32) * (1 + (VolInfo.ClusterCount / 32))); - memcpy (BitmapDetail, Bitmap->Buffer, sizeof(uint32) * (1 + (VolInfo.ClusterCount / 32))); - - /* - BitmapDetail = (Cluster *) malloc (VolInfo.ClusterCount * sizeof (Cluster)); - for (uint64 i = 0; i < VolInfo.ClusterCount; i++) - { - if (Bitmap->Buffer[i / 8] & BitShift[i % 8]) - BitmapDetail[i].Allocated = true; - else - BitmapDetail[i].Allocated = false; - } - */ - - free (Bitmap); - return (true); -} - - -bool DriveVolume::IsClusterUsed (uint64 Cluster) -{ - return ((BitmapDetail[Cluster / 32] & (1 << (Cluster % 32))) ? true : false); - //return (BitmapDetail[Cluster].Allocated); -} - - -void DriveVolume::SetClusterUsed (uint64 Cluster, bool Used) -{ - if (Used) - BitmapDetail[Cluster / 32] |= (1 << (Cluster % 32)); - else - BitmapDetail[Cluster / 32] &= ~(1 << (Cluster % 32)); - - return; -} - - -typedef struct -{ - DriveVolume *Volume; - double *Percent; - bool *QuitMonitor; - uint64 ClusterCount; - uint64 ClusterProgress; -} BuildDBInfo; - - -bool DriveVolume::BuildFileList (bool &QuitMonitor, double &Percent) -{ - BuildDBInfo Info; - - Files.clear (); - Directories.clear (); - Directories.push_back (RootPath); - - Info.Volume = this; - Info.QuitMonitor = &QuitMonitor; - Info.ClusterCount = (GetVolumeInfo().TotalBytes - GetVolumeInfo().FreeBytes) / (uint64)GetVolumeInfo().ClusterSize; - Info.ClusterProgress = 0; - Info.Percent = &Percent; - - ScanDirectory (RootPath, BuildDBCallback, &Info); - - if (QuitMonitor == true) - { - Directories.resize (0); - Files.resize (0); - } - - return (true); -} - - -// UserData = pointer to BuildDBInfo instance -bool BuildDBCallback (FileInfo &Info, HANDLE &FileHandle, void *UserData) -{ - BuildDBInfo *DBInfo = (BuildDBInfo *) UserData; - DriveVolume *Vol = DBInfo->Volume; - - Vol->Files.push_back (Info); - - if (*(DBInfo->QuitMonitor) == true) - return (false); - - DBInfo->ClusterProgress += (uint64)Info.Clusters; - *(DBInfo->Percent) = - ((double)DBInfo->ClusterProgress / (double)DBInfo->ClusterCount) * 100.0f; - - return (true); -} - - -wstring &DriveVolume::GetDBDir (uint32 Indice) -{ - return (Directories[Indice]); -} - - -uint32 DriveVolume::GetDBDirCount (void) -{ - return (Directories.size()); -} - - -FileInfo &DriveVolume::GetDBFile (uint32 Indice) -{ - return (Files[Indice]); -} - - -uint32 DriveVolume::GetDBFileCount (void) -{ - return (Files.size()); -} - - -uint32 DriveVolume::RemoveDBFile (uint32 Indice) -{ - vector::iterator it; - - it = Files.begin() + Indice; - Files.erase (it); - return (GetDBFileCount()); -} - - -bool DriveVolume::ScanDirectory (wstring DirPrefix, ScanCallback Callback, void *UserData) -{ - WIN32_FIND_DATAW FindData; - HANDLE FindHandle; - wstring SearchString; - uint32 DirIndice; - - DirIndice = Directories.size() - 1; - - SearchString = DirPrefix; - SearchString += L"*.*"; - ZeroMemory (&FindData, sizeof (FindData)); - FindHandle = FindFirstFileW (SearchString.c_str(), &FindData); - - if (FindHandle == INVALID_HANDLE_VALUE) - return (false); - - do - { - FileInfo Info; - HANDLE Handle; - bool CallbackResult; - - Handle = INVALID_HANDLE_VALUE; - - // First copy over the easy stuff. - Info.Name = FindData.cFileName; - - // DonLL't ever include '.L' and '..' - if (Info.Name == L"." || Info.Name == L"..") - continue; - - //Info.FullName = DirPrefix + Info.Name; - Info.Size = (uint64)FindData.nFileSizeLow + ((uint64)FindData.nFileSizeHigh << (uint64)32); - Info.DirIndice = DirIndice; - - Info.Attributes.Archive = (FindData.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE) ? 1 : 0; - Info.Attributes.Compressed = (FindData.dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED) ? 1 : 0; - Info.Attributes.Directory = (FindData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ? 1 : 0; - Info.Attributes.Encrypted = (FindData.dwFileAttributes & FILE_ATTRIBUTE_ENCRYPTED) ? 1 : 0; - Info.Attributes.Hidden = (FindData.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) ? 1 : 0; - Info.Attributes.Normal = (FindData.dwFileAttributes & FILE_ATTRIBUTE_NORMAL) ? 1 : 0; - Info.Attributes.Offline = (FindData.dwFileAttributes & FILE_ATTRIBUTE_OFFLINE) ? 1 : 0; - Info.Attributes.ReadOnly = (FindData.dwFileAttributes & FILE_ATTRIBUTE_READONLY) ? 1 : 0; - Info.Attributes.Reparse = (FindData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) ? 1 : 0; - Info.Attributes.Sparse = (FindData.dwFileAttributes & FILE_ATTRIBUTE_SPARSE_FILE) ? 1 : 0; - Info.Attributes.System = (FindData.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM) ? 1 : 0; - Info.Attributes.Temporary = (FindData.dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY) ? 1 : 0; - Info.Attributes.AccessDenied = 0; - Info.Attributes.Unmovable = 0; - Info.Attributes.Process = 1; - - Info.Clusters = 0; - if (GetClusterInfo (Info, Handle)) - { - uint64 TotalClusters = 0; - - for (size_t i = 0; i < Info.Fragments.size(); i++) - { - TotalClusters += Info.Fragments[i].Length; - } - - Info.Clusters = TotalClusters; - } - else - { - Info.Attributes.Unmovable = 1; - Info.Attributes.Process = 0; - } - - if (Info.Attributes.Process == 1) - Info.Attributes.Process = ShouldProcess (Info.Attributes) ? 1 : 0; - - // Run the user-defined callback function - CallbackResult = Callback (Info, Handle, UserData); - - if (Handle != INVALID_HANDLE_VALUE) - CloseHandle (Handle); - - if (!CallbackResult) - break; - - // If directory, perform recursion - if (Info.Attributes.Directory == 1) - { - wstring Dir; - - Dir = GetDBDir (Info.DirIndice); - Dir += Info.Name; - Dir += L"\\"; - - Directories.push_back (Dir); - ScanDirectory (Dir, Callback, UserData); - } - - } while (FindNextFileW (FindHandle, &FindData) == TRUE); - - FindClose (FindHandle); - return (false); -} - - -bool DriveVolume::ShouldProcess (FileAttr Attr) -{ - if (Attr.Offline == 1 || Attr.Reparse == 1 || Attr.Temporary == 1) - { - return (false); - } - - return (true); -} - - -// Gets info on a file and returns a valid handle for read/write access -// Name, FullName, Clusters, Attributes, and Size should already be filled out. -// This function fills in the Fragments vector -bool DriveVolume::GetClusterInfo (FileInfo &Info, HANDLE &HandleResult) -{ - BOOL Result; - HANDLE Handle; - wstring FullName; - BY_HANDLE_FILE_INFORMATION FileInfo; - - Info.Fragments.resize (0); - - /* - if (Info.Attributes.Directory == 1) - return (false); - */ - - FullName = GetDBDir (Info.DirIndice) + Info.Name; - - Handle = CreateFileW - ( - FullName.c_str(), - 0, //GENERIC_READ, - FILE_SHARE_READ, - NULL, - OPEN_EXISTING, - (Info.Attributes.Directory == 1) ? FILE_FLAG_BACKUP_SEMANTICS : 0, - NULL - ); - - if (Handle == INVALID_HANDLE_VALUE) - { - LPVOID lpMsgBuf; - - FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, - NULL, GetLastError(), - MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), - (LPTSTR) &lpMsgBuf, 0, NULL ); - - - Info.Attributes.AccessDenied = 1; - LocalFree( lpMsgBuf ); - return (false); - } - - ZeroMemory (&FileInfo, sizeof (FileInfo)); - Result = GetFileInformationByHandle (Handle, &FileInfo); - - if (Result == FALSE) - { - Info.Attributes.AccessDenied = 1; - wprintf (L"GetFileInformationByHandle ('%s%s') failed\n", GetDBDir (Info.DirIndice).c_str(), - Info.Name.c_str()); - - CloseHandle (Handle); - return (false); - } - - // Get cluster allocation information - STARTING_VCN_INPUT_BUFFER StartingVCN; - RETRIEVAL_POINTERS_BUFFER *Retrieval; - uint64 RetSize; - uint64 Extents; - DWORD BytesReturned; - - // Grab info one extent at a time, until it's done grabbing all the extent data - // Yeah, well it doesn't give us a way to ask L"how many extents?" that I know of ... - // btw, the Extents variable tends to only reflect memory usage, so when we have - // all the extents we look at the structure Win32 gives us for the REAL count! - Extents = 10; - Retrieval = NULL; - RetSize = 0; - StartingVCN.StartingVcn.QuadPart = 0; - - do - { - Extents *= 2; - RetSize = sizeof (RETRIEVAL_POINTERS_BUFFER) + ((Extents - 1) * sizeof (LARGE_INTEGER) * 2); - - if (Retrieval != NULL) - Retrieval = (RETRIEVAL_POINTERS_BUFFER *) realloc (Retrieval, RetSize); - else - Retrieval = (RETRIEVAL_POINTERS_BUFFER *) malloc (RetSize); - - Result = DeviceIoControl - ( - Handle, - FSCTL_GET_RETRIEVAL_POINTERS, - &StartingVCN, - sizeof (StartingVCN), - Retrieval, - RetSize, - &BytesReturned, - NULL - ); - - if (Result == FALSE) - { - if (GetLastError() != ERROR_MORE_DATA) - { - Info.Clusters = 0; - Info.Attributes.AccessDenied = 1; - Info.Attributes.Process = 0; - Info.Fragments.clear (); - CloseHandle (Handle); - free (Retrieval); - - return (false); - } - - Extents++; - } - } while (Result == FALSE); - - // Readjust extents, as it only reflects how much memory was allocated and may not - // be accurate - Extents = Retrieval->ExtentCount; - - // Ok, we have the info. Now translate it. hrmrmr - - Info.Fragments.clear (); - for (uint64 i = 0; i < Extents; i++) - { - Extent Add; - - Add.StartLCN = Retrieval->Extents[i].Lcn.QuadPart; - if (i != 0) - Add.Length = Retrieval->Extents[i].NextVcn.QuadPart - Retrieval->Extents[i - 1].NextVcn.QuadPart; - else - Add.Length = Retrieval->Extents[i].NextVcn.QuadPart - Retrieval->StartingVcn.QuadPart; - - Info.Fragments.push_back (Add); - } - - free (Retrieval); - HandleResult = Handle; - return (true); -} - - -bool DriveVolume::FindFreeRange (uint64 StartLCN, uint64 ReqLength, uint64 &LCNResult) -{ - uint64 Max; - uint64 i; - uint64 j; - - // Make sure we don't spill over our array - Max = VolInfo.ClusterCount - ReqLength; - - for (i = StartLCN; i < Max; i++) - { - bool Found = true; - - // First check the first cluster - if (IsClusterUsed (i)) - Found = false; - else - // THen check the last cluster - if (IsClusterUsed (i + ReqLength - 1)) - Found = false; - else - // Check the whole darn range. - for (j = (i + 1); j < (i + ReqLength - 2); j++) - { - if (IsClusterUsed (j) == true) - { - Found = false; - break; - } - } - - if (!Found) - continue; - else - { - LCNResult = i; - return (true); - } - } - - return (false); -} - - -// btw we have to move each fragment of the file, as per the Win32 API -bool DriveVolume::MoveFileDumb (uint32 FileIndice, uint64 NewLCN) -{ - bool ReturnVal = false; - FileInfo Info; - HANDLE FileHandle; - wstring FullName; - MOVE_FILE_DATA MoveData; - uint64 CurrentLCN; - uint64 CurrentVCN; - - // Set up variables - Info = GetDBFile (FileIndice); - FullName = GetDBDir (Info.DirIndice); - FullName += Info.Name; - CurrentLCN = NewLCN; - CurrentVCN = 0; - - /* - if (Info.Attributes.Directory == 1) - { - // - } - */ - - // Open file - FileHandle = CreateFileW - ( - FullName.c_str (), - GENERIC_READ, - FILE_SHARE_READ, - NULL, - OPEN_EXISTING, - (Info.Attributes.Directory == 1) ? FILE_FLAG_BACKUP_SEMANTICS : 0, - NULL - ); - - if (FileHandle == INVALID_HANDLE_VALUE) - { - // - LPVOID lpMsgBuf; - - FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, - NULL, GetLastError(), - MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), - (LPTSTR) &lpMsgBuf, 0, NULL ); - - - LocalFree (lpMsgBuf); - // - - ReturnVal = false; - } - else - { - ReturnVal = true; // innocent until proven guilty ... - - for (uint32 i = 0; i < Info.Fragments.size(); i++) - { - BOOL Result; - DWORD BytesReturned; - - //wprintf (L"%3u", i); - - MoveData.ClusterCount = Info.Fragments[i].Length; - MoveData.StartingLcn.QuadPart = CurrentLCN; - MoveData.StartingVcn.QuadPart = CurrentVCN; - - MoveData.FileHandle = FileHandle; - - /* - wprintf (L"\n"); - wprintf (L"StartLCN: %I64u\n", MoveData.StartingLcn.QuadPart); - wprintf (L"StartVCN: %I64u\n", MoveData.StartingVcn.QuadPart); - wprintf (L"Clusters: %u (%I64u-%I64u --> %I64u-%I64u)\n", MoveData.ClusterCount, - Info.Fragments[i].StartLCN, - Info.Fragments[i].StartLCN + MoveData.ClusterCount, - MoveData.StartingLcn.QuadPart, - MoveData.StartingLcn.QuadPart + MoveData.ClusterCount - 1); - wprintf (L"\n"); - */ - - Result = DeviceIoControl - ( - Handle, - FSCTL_MOVE_FILE, - &MoveData, - sizeof (MoveData), - NULL, - 0, - &BytesReturned, - NULL - ); - - //wprintf (L"\b\b\b"); - - if (Result == FALSE) - { - // - LPVOID lpMsgBuf; - - FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, - NULL, GetLastError(), - MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), - (LPTSTR) &lpMsgBuf, 0, NULL ); - - - LocalFree( lpMsgBuf ); - // - - ReturnVal = false; - goto FinishUp; // yeah, bite me - } - - // Ok good. Now update our drive bitmap and file infos. - uint64 j; - for (j = 0; - j < Info.Fragments[i].Length; - j++) - { - SetClusterUsed (Info.Fragments[i].StartLCN + j, false); - SetClusterUsed (CurrentLCN + j, true); - //BitmapDetail[Info.Fragments[i].StartLCN + j].Allocated = false; - //BitmapDetail[CurrentLCN + j].Allocated = true; - } - - CurrentLCN += Info.Fragments[i].Length; - CurrentVCN += Info.Fragments[i].Length; - } - - // Update file info either way - FinishUp: - CloseHandle (FileHandle); - FileHandle = INVALID_HANDLE_VALUE; - GetClusterInfo (Files[FileIndice], FileHandle); - CloseHandle (FileHandle); - } - - return (ReturnVal); -} - - +#include "DriveVolume.h" + + +DriveVolume::DriveVolume () +{ + Handle = INVALID_HANDLE_VALUE; + BitmapDetail = NULL; + return; +} + + +DriveVolume::~DriveVolume () +{ + Close (); + Directories.clear (); + Files.clear (); + return; +} + + +void DriveVolume::Close (void) +{ + if (Handle != INVALID_HANDLE_VALUE) + { + CloseHandle (Handle); + Handle = INVALID_HANDLE_VALUE; + } + + if (BitmapDetail != NULL) + { + free (BitmapDetail); + BitmapDetail = NULL; + } + + return; +} + + +// "Name" should be the drive letter followed by a colon. ie, "c:" +// It's a string to allow for further expansion (ie, defragging over the network?) +// or some other baloney reason +bool DriveVolume::Open (wstring Name) +{ + wchar_t FileName[100]; + bool ReturnVal; + + swprintf (FileName, L"\\\\.\\%s", Name.c_str()); + RootPath = Name.c_str(); + RootPath += L"\\"; + + Handle = CreateFileW + ( + FileName, + MAXIMUM_ALLOWED, // access + FILE_SHARE_READ | FILE_SHARE_WRITE, // share type + NULL, // security descriptor + OPEN_EXISTING, // open type + 0, // attributes (none) + NULL // template + ); + + if (Handle == INVALID_HANDLE_VALUE) + ReturnVal = false; + else + { + wchar_t VolName[64]; + DWORD VolSN; + DWORD VolMaxFileLen; + DWORD FSFlags; + wchar_t FSName[64]; + BOOL Result; + + ReturnVal = true; + Result = GetVolumeInformationW + ( + RootPath.c_str(), + VolName, + sizeof (VolName), + &VolSN, + &VolMaxFileLen, + &FSFlags, + FSName, + sizeof (FSName) + ); + + if (Result) + { + wchar_t SerialText[10]; + + VolInfo.FileSystem = FSName; + VolInfo.MaxNameLen = VolMaxFileLen; + VolInfo.Name = VolName; + + swprintf (SerialText, L"%x-%x", (VolSN & 0xffff0000) >> 16, + VolSN & 0x0000ffff); + + _wcsupr (SerialText); + VolInfo.Serial = SerialText; + } + else + { + VolInfo.FileSystem = L"(Unknown)"; + VolInfo.MaxNameLen = 255; + VolInfo.Name = L"(Unknown)"; + VolInfo.Serial = L"(Unknown)"; + } + } + + return (ReturnVal); +} + + +bool DriveVolume::ObtainInfo (void) +{ + BOOL Result; + DWORD BytesGot; + uint64 nan; + + BytesGot = 0; + ZeroMemory (&Geometry, sizeof (Geometry)); + Result = DeviceIoControl + ( + Handle, + IOCTL_DISK_GET_DRIVE_GEOMETRY, + NULL, + 0, + &Geometry, + sizeof (Geometry), + &BytesGot, + NULL + ); + + // Call failed? Aww :( + if (!Result) + return (false); + + // Get cluster size + DWORD SectorsPerCluster; + DWORD BytesPerSector; + DWORD FreeClusters; + DWORD TotalClusters; + + Result = GetDiskFreeSpaceW + ( + RootPath.c_str(), + &SectorsPerCluster, + &BytesPerSector, + &FreeClusters, + &TotalClusters + ); + + // Failed? Weird. + if (!Result) + return (false); + + VolInfo.ClusterSize = SectorsPerCluster * BytesPerSector; + + Result = GetDiskFreeSpaceExW + ( + RootPath.c_str(), + (PULARGE_INTEGER)&nan, + (PULARGE_INTEGER)&VolInfo.TotalBytes, + (PULARGE_INTEGER)&VolInfo.FreeBytes + ); + + return (true); +} + + +// Get bitmap, several clusters at a time ... +#define CLUSTERS 4096 +bool DriveVolume::GetBitmap (void) +{ + STARTING_LCN_INPUT_BUFFER StartingLCN; + VOLUME_BITMAP_BUFFER *Bitmap = NULL; + uint32 BitmapSize; + DWORD BytesReturned; + BOOL Result; + + StartingLCN.StartingLcn.QuadPart = 0; + + // Allocate buffer + // Call FSCTL_GET_VOLUME_BITMAP once with a very small buffer + // This will leave the total number of clusters in Bitmap->BitmapSize and we can + // then correctly allocate based off that + // I suppose this won't work if your drive has only 40 clusters on it or so :) + BitmapSize = sizeof (VOLUME_BITMAP_BUFFER) + 4; + Bitmap = (VOLUME_BITMAP_BUFFER *) malloc (BitmapSize); + + Result = DeviceIoControl + ( + Handle, + FSCTL_GET_VOLUME_BITMAP, + &StartingLCN, + sizeof (StartingLCN), + Bitmap, + BitmapSize, + &BytesReturned, + NULL + ); + + // Bad result? + if (Result == FALSE && GetLastError () != ERROR_MORE_DATA) + { + //wprintf ("\nDeviceIoControl returned false, GetLastError() was not ERROR_MORE_DATA\n"); + free (Bitmap); + return (false); + } + + // Otherwise, we're good + BitmapSize = sizeof (VOLUME_BITMAP_BUFFER) + (Bitmap->BitmapSize.QuadPart / 8) + 1; + Bitmap = (VOLUME_BITMAP_BUFFER *) realloc (Bitmap, BitmapSize); + Result = DeviceIoControl + ( + Handle, + FSCTL_GET_VOLUME_BITMAP, + &StartingLCN, + sizeof (StartingLCN), + Bitmap, + BitmapSize, + &BytesReturned, + NULL + ); + + //DWORD LastError = GetLastError (); + + if (Result == FALSE) + { + wprintf (L"\nCouldn't properly read volume bitmap\n"); + free (Bitmap); + return (false); + } + + // Convert to a L'quick use' bitmap + //const int BitShift[] = { 1, 2, 4, 8, 16, 32, 64, 128 }; + + VolInfo.ClusterCount = Bitmap->BitmapSize.QuadPart; + + if (BitmapDetail != NULL) + free (BitmapDetail); + + BitmapDetail = (uint32 *) malloc (sizeof(uint32) * (1 + (VolInfo.ClusterCount / 32))); + memcpy (BitmapDetail, Bitmap->Buffer, sizeof(uint32) * (1 + (VolInfo.ClusterCount / 32))); + + /* + BitmapDetail = (Cluster *) malloc (VolInfo.ClusterCount * sizeof (Cluster)); + for (uint64 i = 0; i < VolInfo.ClusterCount; i++) + { + if (Bitmap->Buffer[i / 8] & BitShift[i % 8]) + BitmapDetail[i].Allocated = true; + else + BitmapDetail[i].Allocated = false; + } + */ + + free (Bitmap); + return (true); +} + + +bool DriveVolume::IsClusterUsed (uint64 Cluster) +{ + return ((BitmapDetail[Cluster / 32] & (1 << (Cluster % 32))) ? true : false); + //return (BitmapDetail[Cluster].Allocated); +} + + +void DriveVolume::SetClusterUsed (uint64 Cluster, bool Used) +{ + if (Used) + BitmapDetail[Cluster / 32] |= (1 << (Cluster % 32)); + else + BitmapDetail[Cluster / 32] &= ~(1 << (Cluster % 32)); + + return; +} + + +typedef struct +{ + DriveVolume *Volume; + double *Percent; + bool *QuitMonitor; + uint64 ClusterCount; + uint64 ClusterProgress; +} BuildDBInfo; + + +bool DriveVolume::BuildFileList (bool &QuitMonitor, double &Percent) +{ + BuildDBInfo Info; + + Files.clear (); + Directories.clear (); + Directories.push_back (RootPath); + + Info.Volume = this; + Info.QuitMonitor = &QuitMonitor; + Info.ClusterCount = (GetVolumeInfo().TotalBytes - GetVolumeInfo().FreeBytes) / (uint64)GetVolumeInfo().ClusterSize; + Info.ClusterProgress = 0; + Info.Percent = &Percent; + + ScanDirectory (RootPath, BuildDBCallback, &Info); + + if (QuitMonitor == true) + { + Directories.resize (0); + Files.resize (0); + } + + return (true); +} + + +// UserData = pointer to BuildDBInfo instance +bool BuildDBCallback (FileInfo &Info, HANDLE &FileHandle, void *UserData) +{ + BuildDBInfo *DBInfo = (BuildDBInfo *) UserData; + DriveVolume *Vol = DBInfo->Volume; + + Vol->Files.push_back (Info); + + if (*(DBInfo->QuitMonitor) == true) + return (false); + + DBInfo->ClusterProgress += (uint64)Info.Clusters; + *(DBInfo->Percent) = + ((double)DBInfo->ClusterProgress / (double)DBInfo->ClusterCount) * 100.0f; + + return (true); +} + + +wstring &DriveVolume::GetDBDir (uint32 Indice) +{ + return (Directories[Indice]); +} + + +uint32 DriveVolume::GetDBDirCount (void) +{ + return (Directories.size()); +} + + +FileInfo &DriveVolume::GetDBFile (uint32 Indice) +{ + return (Files[Indice]); +} + + +uint32 DriveVolume::GetDBFileCount (void) +{ + return (Files.size()); +} + + +uint32 DriveVolume::RemoveDBFile (uint32 Indice) +{ + vector::iterator it; + + it = Files.begin() + Indice; + Files.erase (it); + return (GetDBFileCount()); +} + + +bool DriveVolume::ScanDirectory (wstring DirPrefix, ScanCallback Callback, void *UserData) +{ + WIN32_FIND_DATAW FindData; + HANDLE FindHandle; + wstring SearchString; + uint32 DirIndice; + + DirIndice = Directories.size() - 1; + + SearchString = DirPrefix; + SearchString += L"*.*"; + ZeroMemory (&FindData, sizeof (FindData)); + FindHandle = FindFirstFileW (SearchString.c_str(), &FindData); + + if (FindHandle == INVALID_HANDLE_VALUE) + return (false); + + do + { + FileInfo Info; + HANDLE Handle; + bool CallbackResult; + + Handle = INVALID_HANDLE_VALUE; + + // First copy over the easy stuff. + Info.Name = FindData.cFileName; + + // DonLL't ever include '.L' and '..' + if (Info.Name == L"." || Info.Name == L"..") + continue; + + //Info.FullName = DirPrefix + Info.Name; + Info.Size = (uint64)FindData.nFileSizeLow + ((uint64)FindData.nFileSizeHigh << (uint64)32); + Info.DirIndice = DirIndice; + + Info.Attributes.Archive = (FindData.dwFileAttributes & FILE_ATTRIBUTE_ARCHIVE) ? 1 : 0; + Info.Attributes.Compressed = (FindData.dwFileAttributes & FILE_ATTRIBUTE_COMPRESSED) ? 1 : 0; + Info.Attributes.Directory = (FindData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) ? 1 : 0; + Info.Attributes.Encrypted = (FindData.dwFileAttributes & FILE_ATTRIBUTE_ENCRYPTED) ? 1 : 0; + Info.Attributes.Hidden = (FindData.dwFileAttributes & FILE_ATTRIBUTE_HIDDEN) ? 1 : 0; + Info.Attributes.Normal = (FindData.dwFileAttributes & FILE_ATTRIBUTE_NORMAL) ? 1 : 0; + Info.Attributes.Offline = (FindData.dwFileAttributes & FILE_ATTRIBUTE_OFFLINE) ? 1 : 0; + Info.Attributes.ReadOnly = (FindData.dwFileAttributes & FILE_ATTRIBUTE_READONLY) ? 1 : 0; + Info.Attributes.Reparse = (FindData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) ? 1 : 0; + Info.Attributes.Sparse = (FindData.dwFileAttributes & FILE_ATTRIBUTE_SPARSE_FILE) ? 1 : 0; + Info.Attributes.System = (FindData.dwFileAttributes & FILE_ATTRIBUTE_SYSTEM) ? 1 : 0; + Info.Attributes.Temporary = (FindData.dwFileAttributes & FILE_ATTRIBUTE_TEMPORARY) ? 1 : 0; + Info.Attributes.AccessDenied = 0; + Info.Attributes.Unmovable = 0; + Info.Attributes.Process = 1; + + Info.Clusters = 0; + if (GetClusterInfo (Info, Handle)) + { + uint64 TotalClusters = 0; + + for (size_t i = 0; i < Info.Fragments.size(); i++) + { + TotalClusters += Info.Fragments[i].Length; + } + + Info.Clusters = TotalClusters; + } + else + { + Info.Attributes.Unmovable = 1; + Info.Attributes.Process = 0; + } + + if (Info.Attributes.Process == 1) + Info.Attributes.Process = ShouldProcess (Info.Attributes) ? 1 : 0; + + // Run the user-defined callback function + CallbackResult = Callback (Info, Handle, UserData); + + if (Handle != INVALID_HANDLE_VALUE) + CloseHandle (Handle); + + if (!CallbackResult) + break; + + // If directory, perform recursion + if (Info.Attributes.Directory == 1) + { + wstring Dir; + + Dir = GetDBDir (Info.DirIndice); + Dir += Info.Name; + Dir += L"\\"; + + Directories.push_back (Dir); + ScanDirectory (Dir, Callback, UserData); + } + + } while (FindNextFileW (FindHandle, &FindData) == TRUE); + + FindClose (FindHandle); + return (false); +} + + +bool DriveVolume::ShouldProcess (FileAttr Attr) +{ + if (Attr.Offline == 1 || Attr.Reparse == 1 || Attr.Temporary == 1) + { + return (false); + } + + return (true); +} + + +// Gets info on a file and returns a valid handle for read/write access +// Name, FullName, Clusters, Attributes, and Size should already be filled out. +// This function fills in the Fragments vector +bool DriveVolume::GetClusterInfo (FileInfo &Info, HANDLE &HandleResult) +{ + BOOL Result; + HANDLE Handle; + wstring FullName; + BY_HANDLE_FILE_INFORMATION FileInfo; + + Info.Fragments.resize (0); + + /* + if (Info.Attributes.Directory == 1) + return (false); + */ + + FullName = GetDBDir (Info.DirIndice) + Info.Name; + + Handle = CreateFileW + ( + FullName.c_str(), + 0, //GENERIC_READ, + FILE_SHARE_READ, + NULL, + OPEN_EXISTING, + (Info.Attributes.Directory == 1) ? FILE_FLAG_BACKUP_SEMANTICS : 0, + NULL + ); + + if (Handle == INVALID_HANDLE_VALUE) + { + LPVOID lpMsgBuf; + + FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, + NULL, GetLastError(), + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + (LPTSTR) &lpMsgBuf, 0, NULL ); + + + Info.Attributes.AccessDenied = 1; + LocalFree( lpMsgBuf ); + return (false); + } + + ZeroMemory (&FileInfo, sizeof (FileInfo)); + Result = GetFileInformationByHandle (Handle, &FileInfo); + + if (Result == FALSE) + { + Info.Attributes.AccessDenied = 1; + wprintf (L"GetFileInformationByHandle ('%s%s') failed\n", GetDBDir (Info.DirIndice).c_str(), + Info.Name.c_str()); + + CloseHandle (Handle); + return (false); + } + + // Get cluster allocation information + STARTING_VCN_INPUT_BUFFER StartingVCN; + RETRIEVAL_POINTERS_BUFFER *Retrieval; + uint64 RetSize; + uint64 Extents; + DWORD BytesReturned; + + // Grab info one extent at a time, until it's done grabbing all the extent data + // Yeah, well it doesn't give us a way to ask L"how many extents?" that I know of ... + // btw, the Extents variable tends to only reflect memory usage, so when we have + // all the extents we look at the structure Win32 gives us for the REAL count! + Extents = 10; + Retrieval = NULL; + RetSize = 0; + StartingVCN.StartingVcn.QuadPart = 0; + + do + { + Extents *= 2; + RetSize = sizeof (RETRIEVAL_POINTERS_BUFFER) + ((Extents - 1) * sizeof (LARGE_INTEGER) * 2); + + if (Retrieval != NULL) + Retrieval = (RETRIEVAL_POINTERS_BUFFER *) realloc (Retrieval, RetSize); + else + Retrieval = (RETRIEVAL_POINTERS_BUFFER *) malloc (RetSize); + + Result = DeviceIoControl + ( + Handle, + FSCTL_GET_RETRIEVAL_POINTERS, + &StartingVCN, + sizeof (StartingVCN), + Retrieval, + RetSize, + &BytesReturned, + NULL + ); + + if (Result == FALSE) + { + if (GetLastError() != ERROR_MORE_DATA) + { + Info.Clusters = 0; + Info.Attributes.AccessDenied = 1; + Info.Attributes.Process = 0; + Info.Fragments.clear (); + CloseHandle (Handle); + free (Retrieval); + + return (false); + } + + Extents++; + } + } while (Result == FALSE); + + // Readjust extents, as it only reflects how much memory was allocated and may not + // be accurate + Extents = Retrieval->ExtentCount; + + // Ok, we have the info. Now translate it. hrmrmr + + Info.Fragments.clear (); + for (uint64 i = 0; i < Extents; i++) + { + Extent Add; + + Add.StartLCN = Retrieval->Extents[i].Lcn.QuadPart; + if (i != 0) + Add.Length = Retrieval->Extents[i].NextVcn.QuadPart - Retrieval->Extents[i - 1].NextVcn.QuadPart; + else + Add.Length = Retrieval->Extents[i].NextVcn.QuadPart - Retrieval->StartingVcn.QuadPart; + + Info.Fragments.push_back (Add); + } + + free (Retrieval); + HandleResult = Handle; + return (true); +} + + +bool DriveVolume::FindFreeRange (uint64 StartLCN, uint64 ReqLength, uint64 &LCNResult) +{ + uint64 Max; + uint64 i; + uint64 j; + + // Make sure we don't spill over our array + Max = VolInfo.ClusterCount - ReqLength; + + for (i = StartLCN; i < Max; i++) + { + bool Found = true; + + // First check the first cluster + if (IsClusterUsed (i)) + Found = false; + else + // THen check the last cluster + if (IsClusterUsed (i + ReqLength - 1)) + Found = false; + else + // Check the whole darn range. + for (j = (i + 1); j < (i + ReqLength - 2); j++) + { + if (IsClusterUsed (j) == true) + { + Found = false; + break; + } + } + + if (!Found) + continue; + else + { + LCNResult = i; + return (true); + } + } + + return (false); +} + + +// btw we have to move each fragment of the file, as per the Win32 API +bool DriveVolume::MoveFileDumb (uint32 FileIndice, uint64 NewLCN) +{ + bool ReturnVal = false; + FileInfo Info; + HANDLE FileHandle; + wstring FullName; + MOVE_FILE_DATA MoveData; + uint64 CurrentLCN; + uint64 CurrentVCN; + + // Set up variables + Info = GetDBFile (FileIndice); + FullName = GetDBDir (Info.DirIndice); + FullName += Info.Name; + CurrentLCN = NewLCN; + CurrentVCN = 0; + + /* + if (Info.Attributes.Directory == 1) + { + // + } + */ + + // Open file + FileHandle = CreateFileW + ( + FullName.c_str (), + GENERIC_READ, + FILE_SHARE_READ, + NULL, + OPEN_EXISTING, + (Info.Attributes.Directory == 1) ? FILE_FLAG_BACKUP_SEMANTICS : 0, + NULL + ); + + if (FileHandle == INVALID_HANDLE_VALUE) + { + // + LPVOID lpMsgBuf; + + FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, + NULL, GetLastError(), + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + (LPTSTR) &lpMsgBuf, 0, NULL ); + + + LocalFree (lpMsgBuf); + // + + ReturnVal = false; + } + else + { + ReturnVal = true; // innocent until proven guilty ... + + for (uint32 i = 0; i < Info.Fragments.size(); i++) + { + BOOL Result; + DWORD BytesReturned; + + //wprintf (L"%3u", i); + + MoveData.ClusterCount = Info.Fragments[i].Length; + MoveData.StartingLcn.QuadPart = CurrentLCN; + MoveData.StartingVcn.QuadPart = CurrentVCN; + + MoveData.FileHandle = FileHandle; + + /* + wprintf (L"\n"); + wprintf (L"StartLCN: %I64u\n", MoveData.StartingLcn.QuadPart); + wprintf (L"StartVCN: %I64u\n", MoveData.StartingVcn.QuadPart); + wprintf (L"Clusters: %u (%I64u-%I64u --> %I64u-%I64u)\n", MoveData.ClusterCount, + Info.Fragments[i].StartLCN, + Info.Fragments[i].StartLCN + MoveData.ClusterCount, + MoveData.StartingLcn.QuadPart, + MoveData.StartingLcn.QuadPart + MoveData.ClusterCount - 1); + wprintf (L"\n"); + */ + + Result = DeviceIoControl + ( + Handle, + FSCTL_MOVE_FILE, + &MoveData, + sizeof (MoveData), + NULL, + 0, + &BytesReturned, + NULL + ); + + //wprintf (L"\b\b\b"); + + if (Result == FALSE) + { + // + LPVOID lpMsgBuf; + + FormatMessage( FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM, + NULL, GetLastError(), + MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), + (LPTSTR) &lpMsgBuf, 0, NULL ); + + + LocalFree( lpMsgBuf ); + // + + ReturnVal = false; + goto FinishUp; // yeah, bite me + } + + // Ok good. Now update our drive bitmap and file infos. + uint64 j; + for (j = 0; + j < Info.Fragments[i].Length; + j++) + { + SetClusterUsed (Info.Fragments[i].StartLCN + j, false); + SetClusterUsed (CurrentLCN + j, true); + //BitmapDetail[Info.Fragments[i].StartLCN + j].Allocated = false; + //BitmapDetail[CurrentLCN + j].Allocated = true; + } + + CurrentLCN += Info.Fragments[i].Length; + CurrentVCN += Info.Fragments[i].Length; + } + + // Update file info either way + FinishUp: + CloseHandle (FileHandle); + FileHandle = INVALID_HANDLE_VALUE; + GetClusterInfo (Files[FileIndice], FileHandle); + CloseHandle (FileHandle); + } + + return (ReturnVal); +} + + diff --git a/modules/rosapps/applications/fraginator/DriveVolume.h b/modules/rosapps/applications/fraginator/DriveVolume.h index e7f69bf0b8f..1af8221c3a1 100644 --- a/modules/rosapps/applications/fraginator/DriveVolume.h +++ b/modules/rosapps/applications/fraginator/DriveVolume.h @@ -1,157 +1,157 @@ -/***************************************************************************** - - DriveVolume - - Class for opening a volume and getting information on it and defragging it - and stuff. - -*****************************************************************************/ - - -#ifndef DRIVEVOLUME_H -#define DRIVEVOLUME_H - - -#include "Unfrag.h" -#include -#include - - -using namespace std; - -#pragma pack (push, 1) -typedef struct -{ - unsigned int Archive : 1; - unsigned int Compressed : 1; - unsigned int Directory : 1; - unsigned int Encrypted : 1; - unsigned int Hidden : 1; - unsigned int Normal : 1; - unsigned int Offline : 1; - unsigned int ReadOnly : 1; - unsigned int Reparse : 1; - unsigned int Sparse : 1; - unsigned int System : 1; - unsigned int Temporary : 1; - - // For defragmenting purposes and other information - unsigned int Unmovable : 1; // can we even touch it? - unsigned int Process : 1; // should we process it? - unsigned int AccessDenied : 1; // could we not open it? -} FileAttr; - - -typedef struct -{ - uint64 StartLCN; - uint64 Length; -} Extent; - - -typedef struct -{ - wstring Name; - uint32 DirIndice; // indice into directory list - uint64 Size; - uint64 Clusters; - FileAttr Attributes; - vector Fragments; -} FileInfo; - - -typedef vector FileList; - - -typedef struct -{ - wstring Name; - wstring Serial; - DWORD MaxNameLen; - wstring FileSystem; - uint64 ClusterCount; - uint32 ClusterSize; - uint64 TotalBytes; - uint64 FreeBytes; -} VolumeInfo; -#pragma pack (pop) - - -// Callback function for Scan() -// NOTE: Do *NOT* close the HANDLE given to you. It is provided for convenience, -// and is closed automatically by the function that calls you! -typedef bool (*ScanCallback) (FileInfo &Info, HANDLE &FileHandle, void *UserData); - - -extern bool BuildDBCallback (FileInfo &Info, HANDLE &FileHandle, void *UserData); - - -class DriveVolume -{ -public: - DriveVolume (); - ~DriveVolume (); - - bool Open (wstring Name); // opens the volume - void Close (void); - bool ObtainInfo (void); // retrieves drive geometry - bool GetBitmap (void); // gets drive bitmap - - // builds list of files on drive - // if QuitMonitor ever becomes true (ie from a separate thread) it will clean up and return - bool BuildFileList (bool &QuitMonitor, double &Progress); - - // Functions for accessing the volume bitmap - bool IsClusterUsed (uint64 Cluster); - void SetClusterUsed (uint64 Cluster, bool Used); - - DISK_GEOMETRY GetGeometry (void) { return (Geometry); } - VolumeInfo GetVolumeInfo (void) { return (VolInfo); } - - wstring GetRootPath (void) { return (RootPath); } - - // Scans drive starting from the root dir and calls a user defined function - // for each file/directory encountered. void* UserData is passed to this - // function so you can give it some good ol' fashioned context. - bool Scan (ScanCallback Callback, void *UserData); - - // Retrieve a directory string from the file database - wstring &GetDBDir (uint32 Indice); - uint32 GetDBDirCount (void); - // Retrieve file strings/info from the file database - FileInfo &GetDBFile (uint32 Indice); - uint32 GetDBFileCount (void); - // Kill it! - uint32 RemoveDBFile (uint32 Indice); - - // This is for actual defragmenting! It will automatically update the drive bitmap. - // Will not move any other files out of the way. - // Failure (return value of false) means that something is in the way. - bool MoveFileDumb (uint32 FileIndice, uint64 NewLCN); - - // Look for a range of sequential free clusters - // Returns true if one could be found, false if not - bool FindFreeRange (uint64 StartLCN, uint64 ReqLength, uint64 &LCNResult); - -private: - friend bool BuildDBCallback (FileInfo &Info, HANDLE &FileHandle, void *UserData); - - // DirPrefix should be in the form "drive:\\path\\" ie, C:\CRAP\ . - bool ScanDirectory (wstring DirPrefix, ScanCallback Callback, void *UserData); - - // given a file's attributes, should it be processed or not? - bool ShouldProcess (FileAttr Attr); - - bool GetClusterInfo (FileInfo &Info, HANDLE &HandleResult); - - VolumeInfo VolInfo; - FileList Files; - vector Directories; // Directories[Files[x].DirIndice] - wstring RootPath; // ie, C:\ . - HANDLE Handle; - DISK_GEOMETRY Geometry; - uint32 *BitmapDetail; -}; - - -#endif // DRIVEVOLUME_H +/***************************************************************************** + + DriveVolume + + Class for opening a volume and getting information on it and defragging it + and stuff. + +*****************************************************************************/ + + +#ifndef DRIVEVOLUME_H +#define DRIVEVOLUME_H + + +#include "Unfrag.h" +#include +#include + + +using namespace std; + +#pragma pack (push, 1) +typedef struct +{ + unsigned int Archive : 1; + unsigned int Compressed : 1; + unsigned int Directory : 1; + unsigned int Encrypted : 1; + unsigned int Hidden : 1; + unsigned int Normal : 1; + unsigned int Offline : 1; + unsigned int ReadOnly : 1; + unsigned int Reparse : 1; + unsigned int Sparse : 1; + unsigned int System : 1; + unsigned int Temporary : 1; + + // For defragmenting purposes and other information + unsigned int Unmovable : 1; // can we even touch it? + unsigned int Process : 1; // should we process it? + unsigned int AccessDenied : 1; // could we not open it? +} FileAttr; + + +typedef struct +{ + uint64 StartLCN; + uint64 Length; +} Extent; + + +typedef struct +{ + wstring Name; + uint32 DirIndice; // indice into directory list + uint64 Size; + uint64 Clusters; + FileAttr Attributes; + vector Fragments; +} FileInfo; + + +typedef vector FileList; + + +typedef struct +{ + wstring Name; + wstring Serial; + DWORD MaxNameLen; + wstring FileSystem; + uint64 ClusterCount; + uint32 ClusterSize; + uint64 TotalBytes; + uint64 FreeBytes; +} VolumeInfo; +#pragma pack (pop) + + +// Callback function for Scan() +// NOTE: Do *NOT* close the HANDLE given to you. It is provided for convenience, +// and is closed automatically by the function that calls you! +typedef bool (*ScanCallback) (FileInfo &Info, HANDLE &FileHandle, void *UserData); + + +extern bool BuildDBCallback (FileInfo &Info, HANDLE &FileHandle, void *UserData); + + +class DriveVolume +{ +public: + DriveVolume (); + ~DriveVolume (); + + bool Open (wstring Name); // opens the volume + void Close (void); + bool ObtainInfo (void); // retrieves drive geometry + bool GetBitmap (void); // gets drive bitmap + + // builds list of files on drive + // if QuitMonitor ever becomes true (ie from a separate thread) it will clean up and return + bool BuildFileList (bool &QuitMonitor, double &Progress); + + // Functions for accessing the volume bitmap + bool IsClusterUsed (uint64 Cluster); + void SetClusterUsed (uint64 Cluster, bool Used); + + DISK_GEOMETRY GetGeometry (void) { return (Geometry); } + VolumeInfo GetVolumeInfo (void) { return (VolInfo); } + + wstring GetRootPath (void) { return (RootPath); } + + // Scans drive starting from the root dir and calls a user defined function + // for each file/directory encountered. void* UserData is passed to this + // function so you can give it some good ol' fashioned context. + bool Scan (ScanCallback Callback, void *UserData); + + // Retrieve a directory string from the file database + wstring &GetDBDir (uint32 Indice); + uint32 GetDBDirCount (void); + // Retrieve file strings/info from the file database + FileInfo &GetDBFile (uint32 Indice); + uint32 GetDBFileCount (void); + // Kill it! + uint32 RemoveDBFile (uint32 Indice); + + // This is for actual defragmenting! It will automatically update the drive bitmap. + // Will not move any other files out of the way. + // Failure (return value of false) means that something is in the way. + bool MoveFileDumb (uint32 FileIndice, uint64 NewLCN); + + // Look for a range of sequential free clusters + // Returns true if one could be found, false if not + bool FindFreeRange (uint64 StartLCN, uint64 ReqLength, uint64 &LCNResult); + +private: + friend bool BuildDBCallback (FileInfo &Info, HANDLE &FileHandle, void *UserData); + + // DirPrefix should be in the form "drive:\\path\\" ie, C:\CRAP\ . + bool ScanDirectory (wstring DirPrefix, ScanCallback Callback, void *UserData); + + // given a file's attributes, should it be processed or not? + bool ShouldProcess (FileAttr Attr); + + bool GetClusterInfo (FileInfo &Info, HANDLE &HandleResult); + + VolumeInfo VolInfo; + FileList Files; + vector Directories; // Directories[Files[x].DirIndice] + wstring RootPath; // ie, C:\ . + HANDLE Handle; + DISK_GEOMETRY Geometry; + uint32 *BitmapDetail; +}; + + +#endif // DRIVEVOLUME_H diff --git a/modules/rosapps/applications/fraginator/Fraginator.cpp b/modules/rosapps/applications/fraginator/Fraginator.cpp index 43722e1ef51..11908cd9451 100644 --- a/modules/rosapps/applications/fraginator/Fraginator.cpp +++ b/modules/rosapps/applications/fraginator/Fraginator.cpp @@ -1,64 +1,64 @@ -/***************************************************************************** - - Fraginator - -*****************************************************************************/ - -#define NDEBUG - -#include "Fraginator.h" -#include "Mutex.h" -#include "DriveVolume.h" -#include "Defragment.h" -#include "MainDialog.h" -#include "resource.h" -#ifdef _MSC_VER -#include -#endif - -HINSTANCE GlobalHInstance = NULL; -Defragment *Defrag = NULL; - -INT WINAPI -wWinMain(HINSTANCE HInstance, - HINSTANCE hPrev, - LPWSTR Cmd, - int iCmd) -{ - INITCOMMONCONTROLSEX InitControls; - - // debugging crap -#ifndef NDEBUG - _CrtSetDbgFlag (_CRTDBG_LEAK_CHECK_DF | _CrtSetDbgFlag (_CRTDBG_REPORT_FLAG)); - _CrtSetReportMode (_CRT_WARN, _CRTDBG_MODE_FILE); - _CrtSetReportFile (_CRT_WARN, _CRTDBG_FILE_STDOUT); - _CrtSetReportMode (_CRT_ERROR, _CRTDBG_MODE_FILE); - _CrtSetReportFile (_CRT_ERROR, _CRTDBG_FILE_STDOUT); - _CrtSetReportMode (_CRT_ASSERT, _CRTDBG_MODE_FILE); - _CrtSetReportFile (_CRT_ASSERT, _CRTDBG_FILE_STDOUT); -#endif - - GlobalHInstance = HInstance; - - // We want our progress bar! NOW! - InitControls.dwSize = sizeof (InitControls); - InitControls.dwICC = ICC_WIN95_CLASSES; - InitCommonControlsEx (&InitControls); - - if (!CheckWinVer()) - { - MessageBox (GetDesktopWindow(), L"Sorry, this program requires Windows 2000.", L"Error", MB_OK); - return (0); - } - - DialogBox (HInstance, MAKEINTRESOURCE (IDD_MAIN), GetDesktopWindow(), MainDialogProc); - -#if 0 - AllocConsole (); - if (_CrtDumpMemoryLeaks ()) - MessageBox (NULL, L"Click OK to quit", L"Leaks", MB_OK); -#endif - - return (0); -} - +/***************************************************************************** + + Fraginator + +*****************************************************************************/ + +#define NDEBUG + +#include "Fraginator.h" +#include "Mutex.h" +#include "DriveVolume.h" +#include "Defragment.h" +#include "MainDialog.h" +#include "resource.h" +#ifdef _MSC_VER +#include +#endif + +HINSTANCE GlobalHInstance = NULL; +Defragment *Defrag = NULL; + +INT WINAPI +wWinMain(HINSTANCE HInstance, + HINSTANCE hPrev, + LPWSTR Cmd, + int iCmd) +{ + INITCOMMONCONTROLSEX InitControls; + + // debugging crap +#ifndef NDEBUG + _CrtSetDbgFlag (_CRTDBG_LEAK_CHECK_DF | _CrtSetDbgFlag (_CRTDBG_REPORT_FLAG)); + _CrtSetReportMode (_CRT_WARN, _CRTDBG_MODE_FILE); + _CrtSetReportFile (_CRT_WARN, _CRTDBG_FILE_STDOUT); + _CrtSetReportMode (_CRT_ERROR, _CRTDBG_MODE_FILE); + _CrtSetReportFile (_CRT_ERROR, _CRTDBG_FILE_STDOUT); + _CrtSetReportMode (_CRT_ASSERT, _CRTDBG_MODE_FILE); + _CrtSetReportFile (_CRT_ASSERT, _CRTDBG_FILE_STDOUT); +#endif + + GlobalHInstance = HInstance; + + // We want our progress bar! NOW! + InitControls.dwSize = sizeof (InitControls); + InitControls.dwICC = ICC_WIN95_CLASSES; + InitCommonControlsEx (&InitControls); + + if (!CheckWinVer()) + { + MessageBox (GetDesktopWindow(), L"Sorry, this program requires Windows 2000.", L"Error", MB_OK); + return (0); + } + + DialogBox (HInstance, MAKEINTRESOURCE (IDD_MAIN), GetDesktopWindow(), MainDialogProc); + +#if 0 + AllocConsole (); + if (_CrtDumpMemoryLeaks ()) + MessageBox (NULL, L"Click OK to quit", L"Leaks", MB_OK); +#endif + + return (0); +} + diff --git a/modules/rosapps/applications/fraginator/Fraginator.h b/modules/rosapps/applications/fraginator/Fraginator.h index ea2684b48ff..5e764ede5bd 100644 --- a/modules/rosapps/applications/fraginator/Fraginator.h +++ b/modules/rosapps/applications/fraginator/Fraginator.h @@ -1,25 +1,25 @@ -/***************************************************************************** - - Fraginator !!! - -*****************************************************************************/ - - -#ifndef FRAGINATOR_H -#define FRAGINATOR_H - - -#include "Unfrag.h" -#include - - -//int WINAPI WinMain (HINSTANCE HInstance, HINSTANCE HPrevInstance, LPSTR CmdLine, int ShowCmd); -Defragment *StartDefragBox (wstring Drive, DefragType Method); - - -extern HINSTANCE GlobalHInstance; -extern Defragment *Defrag; - -//extern INT PASCAL wWinMain (HINSTANCE HInstance, HINSTANCE HPrevInstance, LPCWSTR CmdLine, INT ShowCmd); - -#endif // FRAGINATOR_H +/***************************************************************************** + + Fraginator !!! + +*****************************************************************************/ + + +#ifndef FRAGINATOR_H +#define FRAGINATOR_H + + +#include "Unfrag.h" +#include + + +//int WINAPI WinMain (HINSTANCE HInstance, HINSTANCE HPrevInstance, LPSTR CmdLine, int ShowCmd); +Defragment *StartDefragBox (wstring Drive, DefragType Method); + + +extern HINSTANCE GlobalHInstance; +extern Defragment *Defrag; + +//extern INT PASCAL wWinMain (HINSTANCE HInstance, HINSTANCE HPrevInstance, LPCWSTR CmdLine, INT ShowCmd); + +#endif // FRAGINATOR_H diff --git a/modules/rosapps/applications/fraginator/MainDialog.cpp b/modules/rosapps/applications/fraginator/MainDialog.cpp index 15d53e88067..b91e56631b9 100644 --- a/modules/rosapps/applications/fraginator/MainDialog.cpp +++ b/modules/rosapps/applications/fraginator/MainDialog.cpp @@ -1,574 +1,574 @@ -#include "Unfrag.h" -#include "MainDialog.h" -#include "resource.h" -#include "Fraginator.h" -#include "Defragment.h" -#include "ReportDialog.h" - - -vector DrivesList; -LRESULT AnalyzeID; -LRESULT FastID; -LRESULT ExtensiveID; -bool QuitWhenDone; -bool Stopping; - - -LRESULT PriHighID; -LRESULT PriAboveNormID; -LRESULT PriNormalID; -LRESULT PriBelowNormID; -LRESULT PriIdleID; - - -static void InitDialog (HWND Dlg); -void UpdateDefragInfo (HWND Dlg); -void UpdatePriority (HWND Dlg); -wstring GetDefaultTitle (void); -wstring GetDefragTitle (void); -void SetDisables (HWND Dlg); -INT_PTR CALLBACK MainDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam); - - -static void InitDialog (HWND Dlg) -{ - // Make internal list - DWORD DriveMask; - HWND DlgItem; - size_t d; - - // Clear out wisecracks line for now - SetDlgItemText (Dlg, IDC_WISECRACKS, L"\"Defrag, baby!\""); - - // Make list of logical drives - DrivesList.resize (0); - DriveMask = GetLogicalDrives (); - - for (d = 0; d < 26; d++) - { - if (DriveMask & (1 << d)) - { - wstring Name; - - Name = (wchar_t)(L'A' + d); - Name += L':'; - DrivesList.push_back (Name); - } - } - - // Give list to dropdown list - DlgItem = GetDlgItem (Dlg, IDC_DRIVES_LIST); - SendMessage (DlgItem, CB_RESETCONTENT, 0, 0); - for (d = 0; d < DrivesList.size(); d++) - { - SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) DrivesList[d].c_str()); - } - - // Put in defrag methods - DlgItem = GetDlgItem (Dlg, IDC_METHODS_LIST); - SendMessage (DlgItem, CB_RESETCONTENT, 0, 0); - AnalyzeID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Analyze Only"); - FastID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Fast Defrag"); - ExtensiveID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Extensive Defrag"); - - // Set up process priorities - DlgItem = GetDlgItem (Dlg, IDC_PRIORITY_LIST); - SendMessage (Dlg, CB_RESETCONTENT, 0, 0); - PriHighID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"High"); - PriAboveNormID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Above Normal"); - PriNormalID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Normal"); - PriBelowNormID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Below Normal"); - PriIdleID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Idle"); - UpdatePriority (Dlg); - - // Reset texts and progress meters - SendDlgItemMessage (Dlg, IDC_STATUS, WM_SETTEXT, 0, (LPARAM) L""); - SendDlgItemMessage (Dlg, IDC_PERCENT, WM_SETTEXT, 0, (LPARAM) L""); - SendDlgItemMessage (Dlg, IDC_PROGRESS, PBM_SETRANGE, 0, MAKELPARAM (0, 10000)); - SendDlgItemMessage (Dlg, IDC_PROGRESS, PBM_SETPOS, 0, 0); - - return; -} - - -void UpdateDefragInfo (HWND Dlg) -{ - wchar_t PercentText[100]; - static double OldPercent = 200.0f; - static wstring OldStatus = L"Non"; - wstring NewStatus; - double NewPercent; - - if (Defrag == NULL) - return; - - NewPercent = Defrag->GetStatusPercent (); - if (NewPercent > 100.0f) - NewPercent = 100.0f; - if (NewPercent < 0.0f) - NewPercent = 0.0f; - if (NewPercent != OldPercent) - { - swprintf (PercentText, L"%6.2f%%", NewPercent); - SendDlgItemMessage (Dlg, IDC_PERCENT, WM_SETTEXT, 0, (LPARAM) PercentText); - SendDlgItemMessage (Dlg, IDC_PROGRESS, PBM_SETPOS, - (WPARAM) (int)(NewPercent * 100.0f), 0); - OldPercent = NewPercent; - } - - NewStatus = Defrag->GetStatusString (); - if (NewStatus != OldStatus) - { // Change & characters to && to avoid underlining - wstring Status; - wstring::iterator it; - - Status = NewStatus; - it = Status.begin (); - while (it < Status.end()) - { - if (*it == L'&') - { - Status.insert (it, 1, L'&'); - it++; - } - - it++; - } - - SendDlgItemMessage (Dlg, IDC_STATUS, WM_SETTEXT, 0, - (LPARAM) Status.c_str()); - - OldStatus = NewStatus; - } - - return; -} - - -wstring GetDefaultTitle (void) -{ - wstring DefaultText; - - DefaultText = wstring(wstring(APPNAME_GUI) + wstring(L" v") + wstring(APPVER_STR) + - wstring(L" (C) 2000 by Rick Brewster")); - - return (DefaultText); -} - - -wstring GetDefragTitle (void) -{ - wstring DefragText; - wchar_t Percent[10]; - - swprintf (Percent, L"%.2f%%", Defrag->GetStatusPercent()); - - DefragText = GetDefaultTitle (); - if (Defrag != NULL) - { - DefragText = wstring(Percent) + wstring (L" - ") + Defrag->GetVolume().GetRootPath() + - wstring (L" - ") + DefragText; - } - - return (DefragText); -} - - -void SetDisables (HWND Dlg) -{ - // If a defrag is in process, set L'Start' button to say L'Stop' and disable - // the Select Drive and Select Action controls - if (Defrag != NULL && !Defrag->IsDoneYet() && !Defrag->HasError()) - { - SendMessage (GetDlgItem (Dlg, IDC_STARTSTOP), WM_SETTEXT, 0, (LPARAM) L"Stop"); - EnableWindow (GetDlgItem (Dlg, IDC_DRIVES_LIST), FALSE); - EnableWindow (GetDlgItem (Dlg, IDC_METHODS_LIST), FALSE); - } - else - { - SendMessage (GetDlgItem (Dlg, IDC_STARTSTOP), WM_SETTEXT, 0, (LPARAM) L"Start"); - EnableWindow (GetDlgItem (Dlg, IDC_STARTSTOP), TRUE); - EnableWindow (GetDlgItem (Dlg, IDC_QUIT), TRUE); - EnableWindow (GetDlgItem (Dlg, IDC_DRIVES_LIST), TRUE); - EnableWindow (GetDlgItem (Dlg, IDC_METHODS_LIST), TRUE); - } - - return; -} - - -void UpdatePriority (HWND Dlg) -{ - LRESULT Id; - DWORD Priority; - - Id = SendDlgItemMessage (Dlg, IDC_PRIORITY_LIST, CB_GETCURSEL, 0, 0); - - if (Id == PriHighID) - Priority = HIGH_PRIORITY_CLASS; - else - if (Id == PriAboveNormID) - Priority = ABOVE_NORMAL_PRIORITY_CLASS; - else - if (Id == PriNormalID) - Priority = NORMAL_PRIORITY_CLASS; - else - if (Id == PriBelowNormID) - Priority = BELOW_NORMAL_PRIORITY_CLASS; - else - if (Id == PriIdleID) - Priority = IDLE_PRIORITY_CLASS; - else - return; - - SetPriorityClass (GetCurrentProcess(), Priority); - return; -} - - -// Save settings (ie, process priority and defrag type options) -bool GetRegKeys (HKEY *RegKeyResult) -{ - HKEY RegKey; - LONG Error; - - Error = RegCreateKeyEx - ( - HKEY_CURRENT_USER, - L"Software\\Fraginator", - 0, - NULL, - REG_OPTION_NON_VOLATILE, - KEY_ALL_ACCESS, - NULL, - &RegKey, - NULL - ); - - if (Error != ERROR_SUCCESS) - return (false); - - *RegKeyResult = RegKey; - return (true); -} - - -bool DoneRegKey (HKEY RegKey) -{ - RegCloseKey (RegKey); - return (true); -} - - -void SaveSettings (HWND Dlg) -{ - LRESULT DefragID; - DWORD DefragVal; - LRESULT PriID; - DWORD PriVal; - HKEY RegKey; - - DefragID = SendDlgItemMessage (Dlg, IDC_METHODS_LIST, CB_GETCURSEL, 0, 0); - PriID = SendDlgItemMessage (Dlg, IDC_PRIORITY_LIST, CB_GETCURSEL, 0, 0); - - // Action - if (DefragID == AnalyzeID) - DefragVal = (DWORD) DefragAnalyze; - else - if (DefragID == FastID) - DefragVal = (DWORD) DefragFast; - else - if (DefragID == ExtensiveID) - DefragVal = (DWORD) DefragExtensive; - - // Process Priority - if (PriID == PriHighID) - PriVal = HIGH_PRIORITY_CLASS; - else - if (PriID == PriAboveNormID) - PriVal = ABOVE_NORMAL_PRIORITY_CLASS; - else - if (PriID == PriNormalID) - PriVal = NORMAL_PRIORITY_CLASS; - else - if (PriID == PriBelowNormID) - PriVal = BELOW_NORMAL_PRIORITY_CLASS; - else - if (PriID == PriIdleID) - PriVal = IDLE_PRIORITY_CLASS; - - if (!GetRegKeys (&RegKey)) - return; - - RegSetValueEx - ( - RegKey, - L"Default Action", - 0, - REG_DWORD, - (CONST BYTE *)&DefragVal, - sizeof (DefragVal) - ); - - RegSetValueEx - ( - RegKey, - L"Process Priority", - 0, - REG_DWORD, - (CONST BYTE *)&PriVal, - sizeof (PriVal) - ); - - DoneRegKey (RegKey); - return; -} - - -void LoadSettings (HWND Dlg) -{ - DefragType DType; - DWORD DTypeVal; - LRESULT DefragID; - DWORD PriVal; - LRESULT PriID; - HKEY RegKey; - DWORD RegType; - DWORD RegSize; - LONG Error; - - if (!GetRegKeys (&RegKey)) - return; - - RegSize = sizeof (DTypeVal); - RegType = REG_DWORD; - - Error = RegQueryValueEx - ( - RegKey, - L"Default Action", - 0, - &RegType, - (BYTE *)&DTypeVal, - &RegSize - ); - - if (Error != ERROR_SUCCESS) - DTypeVal = DefragAnalyze; - - Error = RegQueryValueEx - ( - RegKey, - L"Process Priority", - 0, - &RegType, - (BYTE *)&PriVal, - &RegSize - ); - - DoneRegKey (RegKey); - - if (Error != ERROR_SUCCESS) - PriVal = NORMAL_PRIORITY_CLASS; - - DType = (DefragType) DTypeVal; - switch (DType) - { - default: - case DefragAnalyze: - DefragID = AnalyzeID; - break; - - case DefragFast: - DefragID = FastID; - break; - - case DefragExtensive: - DefragID = ExtensiveID; - break; - } - - switch (PriVal) - { - case HIGH_PRIORITY_CLASS: - PriID = PriHighID; - break; - - case ABOVE_NORMAL_PRIORITY_CLASS: - PriID = PriAboveNormID; - break; - - default: - case NORMAL_PRIORITY_CLASS: - PriID = PriNormalID; - break; - - case BELOW_NORMAL_PRIORITY_CLASS: - PriID = PriBelowNormID; - break; - - case IDLE_PRIORITY_CLASS: - PriID = PriIdleID; - break; - } - - SendDlgItemMessage (Dlg, IDC_PRIORITY_LIST, CB_SETCURSEL, PriID, 0); - SendDlgItemMessage (Dlg, IDC_METHODS_LIST, CB_SETCURSEL, DefragID, 0); - return; -} - - -#define IDLETIME 25 -wstring OldWindowText = L""; - -INT_PTR CALLBACK MainDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam) -{ - static bool ReEntrance = false; - - switch (Msg) - { - case WM_INITDIALOG: - Stopping = false; - SetWindowText (Dlg, GetDefaultTitle().c_str()); - SetDisables (Dlg); - InitDialog (Dlg); - SetTimer (Dlg, 1, IDLETIME, NULL); - SetClassLong (Dlg, GCL_HICON, (LONG) LoadIcon (GlobalHInstance, MAKEINTRESOURCE(IDI_ICON))); - QuitWhenDone = false; - LoadSettings (Dlg); - UpdatePriority (Dlg); - return (1); - - - case WM_TIMER: - if (Defrag != NULL && !ReEntrance) - { - wstring NewTitle; - - SendMessage (Dlg, WM_UPDATEINFO, 0, 0); - - NewTitle = GetDefragTitle (); - if (NewTitle != OldWindowText) - { - OldWindowText = NewTitle; - SetWindowText (Dlg, NewTitle.c_str()); - } - - if (Defrag->IsDoneYet() || Defrag->HasError()) - { // This is the code executed when defragging is finished (or stopped :) - if (Defrag->GetDefragType() == DefragAnalyze && - !Defrag->HasError() && - !Stopping) - { // Show report - ReEntrance = true; - - DialogBoxParam (GlobalHInstance, MAKEINTRESOURCE (IDD_REPORT), - Dlg, ReportDialogProc, (LPARAM) Defrag); - - ReEntrance = false; - } - - delete Defrag; - Defrag = NULL; - SetDisables (Dlg); - SetWindowText (Dlg, GetDefaultTitle().c_str()); - - Stopping = false; - - if (QuitWhenDone) - SendMessage (GetDlgItem (Dlg, IDC_QUIT), BM_CLICK, 0, 0); - } - } - - SetTimer (Dlg, 1, IDLETIME, NULL); - return (0); - - - case WM_UPDATEINFO: - UpdateDefragInfo (Dlg); - return (1); - - - case WM_CLOSE: - SendMessage (GetDlgItem (Dlg, IDC_QUIT), BM_CLICK, 0, 0); - return (1); - - - case WM_COMMAND: - switch (LOWORD(WParam)) - { - case IDC_PRIORITY_LIST: - UpdatePriority (Dlg); - return (1); - - - case ID_MAIN_HELP: - ShellExecute (Dlg, L"open", L"Fraginator.chm", L"", L".", SW_SHOW); - return (1); - - - case IDC_QUIT: - if (Defrag == NULL) - { // This is the code executing when quitting - SaveSettings (Dlg); - EndDialog (Dlg, 0); - } - else - { // Tell defragging to finish and disable our button - QuitWhenDone = true; - SendMessage (GetDlgItem (Dlg, IDC_STARTSTOP), BM_CLICK, 0, 0); - EnableWindow (GetDlgItem (Dlg, IDC_QUIT), FALSE); - } - return (1); - - - case IDC_STARTSTOP: - if (Defrag == NULL) - { // L"Start" - wchar_t Drive[10]; - LRESULT ID; - DefragType Method; - HANDLE H; - - if (Defrag != NULL) - return (1); - - SendMessage (GetDlgItem (Dlg, IDC_DRIVES_LIST), WM_GETTEXT, - sizeof (Drive) - 1, (LPARAM) Drive); - - if (wcslen(Drive) != 2 || Drive[1] != L':') - return (1); - - ID = SendMessage (GetDlgItem (Dlg, IDC_METHODS_LIST), CB_GETCURSEL, 0, 0); - Method = DefragInvalid; - if (ID == AnalyzeID) - Method = DefragAnalyze; - else - if (ID == FastID) - Method = DefragFast; - else - if (ID == ExtensiveID) - Method = DefragExtensive; - - if (Method != DefragInvalid) - { - Defrag = StartDefragThread (Drive, Method, H); - Defrag->SetDoLimitLength (false); - SetWindowText (Dlg, GetDefragTitle().c_str()); - SetDisables (Dlg); - } - } - else - { // L"Stop" - Stopping = true; - Defrag->Stop (); - EnableWindow (GetDlgItem (Dlg, IDC_STARTSTOP), FALSE); - EnableWindow (GetDlgItem (Dlg, IDC_QUIT), FALSE); - } - return (1); - } - } - - // Otherwise, return 0 to say we did not process the message. - return (0); -} +#include "Unfrag.h" +#include "MainDialog.h" +#include "resource.h" +#include "Fraginator.h" +#include "Defragment.h" +#include "ReportDialog.h" + + +vector DrivesList; +LRESULT AnalyzeID; +LRESULT FastID; +LRESULT ExtensiveID; +bool QuitWhenDone; +bool Stopping; + + +LRESULT PriHighID; +LRESULT PriAboveNormID; +LRESULT PriNormalID; +LRESULT PriBelowNormID; +LRESULT PriIdleID; + + +static void InitDialog (HWND Dlg); +void UpdateDefragInfo (HWND Dlg); +void UpdatePriority (HWND Dlg); +wstring GetDefaultTitle (void); +wstring GetDefragTitle (void); +void SetDisables (HWND Dlg); +INT_PTR CALLBACK MainDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam); + + +static void InitDialog (HWND Dlg) +{ + // Make internal list + DWORD DriveMask; + HWND DlgItem; + size_t d; + + // Clear out wisecracks line for now + SetDlgItemText (Dlg, IDC_WISECRACKS, L"\"Defrag, baby!\""); + + // Make list of logical drives + DrivesList.resize (0); + DriveMask = GetLogicalDrives (); + + for (d = 0; d < 26; d++) + { + if (DriveMask & (1 << d)) + { + wstring Name; + + Name = (wchar_t)(L'A' + d); + Name += L':'; + DrivesList.push_back (Name); + } + } + + // Give list to dropdown list + DlgItem = GetDlgItem (Dlg, IDC_DRIVES_LIST); + SendMessage (DlgItem, CB_RESETCONTENT, 0, 0); + for (d = 0; d < DrivesList.size(); d++) + { + SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) DrivesList[d].c_str()); + } + + // Put in defrag methods + DlgItem = GetDlgItem (Dlg, IDC_METHODS_LIST); + SendMessage (DlgItem, CB_RESETCONTENT, 0, 0); + AnalyzeID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Analyze Only"); + FastID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Fast Defrag"); + ExtensiveID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Extensive Defrag"); + + // Set up process priorities + DlgItem = GetDlgItem (Dlg, IDC_PRIORITY_LIST); + SendMessage (Dlg, CB_RESETCONTENT, 0, 0); + PriHighID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"High"); + PriAboveNormID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Above Normal"); + PriNormalID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Normal"); + PriBelowNormID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Below Normal"); + PriIdleID = SendMessage (DlgItem, CB_ADDSTRING, 0, (LPARAM) L"Idle"); + UpdatePriority (Dlg); + + // Reset texts and progress meters + SendDlgItemMessage (Dlg, IDC_STATUS, WM_SETTEXT, 0, (LPARAM) L""); + SendDlgItemMessage (Dlg, IDC_PERCENT, WM_SETTEXT, 0, (LPARAM) L""); + SendDlgItemMessage (Dlg, IDC_PROGRESS, PBM_SETRANGE, 0, MAKELPARAM (0, 10000)); + SendDlgItemMessage (Dlg, IDC_PROGRESS, PBM_SETPOS, 0, 0); + + return; +} + + +void UpdateDefragInfo (HWND Dlg) +{ + wchar_t PercentText[100]; + static double OldPercent = 200.0f; + static wstring OldStatus = L"Non"; + wstring NewStatus; + double NewPercent; + + if (Defrag == NULL) + return; + + NewPercent = Defrag->GetStatusPercent (); + if (NewPercent > 100.0f) + NewPercent = 100.0f; + if (NewPercent < 0.0f) + NewPercent = 0.0f; + if (NewPercent != OldPercent) + { + swprintf (PercentText, L"%6.2f%%", NewPercent); + SendDlgItemMessage (Dlg, IDC_PERCENT, WM_SETTEXT, 0, (LPARAM) PercentText); + SendDlgItemMessage (Dlg, IDC_PROGRESS, PBM_SETPOS, + (WPARAM) (int)(NewPercent * 100.0f), 0); + OldPercent = NewPercent; + } + + NewStatus = Defrag->GetStatusString (); + if (NewStatus != OldStatus) + { // Change & characters to && to avoid underlining + wstring Status; + wstring::iterator it; + + Status = NewStatus; + it = Status.begin (); + while (it < Status.end()) + { + if (*it == L'&') + { + Status.insert (it, 1, L'&'); + it++; + } + + it++; + } + + SendDlgItemMessage (Dlg, IDC_STATUS, WM_SETTEXT, 0, + (LPARAM) Status.c_str()); + + OldStatus = NewStatus; + } + + return; +} + + +wstring GetDefaultTitle (void) +{ + wstring DefaultText; + + DefaultText = wstring(wstring(APPNAME_GUI) + wstring(L" v") + wstring(APPVER_STR) + + wstring(L" (C) 2000 by Rick Brewster")); + + return (DefaultText); +} + + +wstring GetDefragTitle (void) +{ + wstring DefragText; + wchar_t Percent[10]; + + swprintf (Percent, L"%.2f%%", Defrag->GetStatusPercent()); + + DefragText = GetDefaultTitle (); + if (Defrag != NULL) + { + DefragText = wstring(Percent) + wstring (L" - ") + Defrag->GetVolume().GetRootPath() + + wstring (L" - ") + DefragText; + } + + return (DefragText); +} + + +void SetDisables (HWND Dlg) +{ + // If a defrag is in process, set L'Start' button to say L'Stop' and disable + // the Select Drive and Select Action controls + if (Defrag != NULL && !Defrag->IsDoneYet() && !Defrag->HasError()) + { + SendMessage (GetDlgItem (Dlg, IDC_STARTSTOP), WM_SETTEXT, 0, (LPARAM) L"Stop"); + EnableWindow (GetDlgItem (Dlg, IDC_DRIVES_LIST), FALSE); + EnableWindow (GetDlgItem (Dlg, IDC_METHODS_LIST), FALSE); + } + else + { + SendMessage (GetDlgItem (Dlg, IDC_STARTSTOP), WM_SETTEXT, 0, (LPARAM) L"Start"); + EnableWindow (GetDlgItem (Dlg, IDC_STARTSTOP), TRUE); + EnableWindow (GetDlgItem (Dlg, IDC_QUIT), TRUE); + EnableWindow (GetDlgItem (Dlg, IDC_DRIVES_LIST), TRUE); + EnableWindow (GetDlgItem (Dlg, IDC_METHODS_LIST), TRUE); + } + + return; +} + + +void UpdatePriority (HWND Dlg) +{ + LRESULT Id; + DWORD Priority; + + Id = SendDlgItemMessage (Dlg, IDC_PRIORITY_LIST, CB_GETCURSEL, 0, 0); + + if (Id == PriHighID) + Priority = HIGH_PRIORITY_CLASS; + else + if (Id == PriAboveNormID) + Priority = ABOVE_NORMAL_PRIORITY_CLASS; + else + if (Id == PriNormalID) + Priority = NORMAL_PRIORITY_CLASS; + else + if (Id == PriBelowNormID) + Priority = BELOW_NORMAL_PRIORITY_CLASS; + else + if (Id == PriIdleID) + Priority = IDLE_PRIORITY_CLASS; + else + return; + + SetPriorityClass (GetCurrentProcess(), Priority); + return; +} + + +// Save settings (ie, process priority and defrag type options) +bool GetRegKeys (HKEY *RegKeyResult) +{ + HKEY RegKey; + LONG Error; + + Error = RegCreateKeyEx + ( + HKEY_CURRENT_USER, + L"Software\\Fraginator", + 0, + NULL, + REG_OPTION_NON_VOLATILE, + KEY_ALL_ACCESS, + NULL, + &RegKey, + NULL + ); + + if (Error != ERROR_SUCCESS) + return (false); + + *RegKeyResult = RegKey; + return (true); +} + + +bool DoneRegKey (HKEY RegKey) +{ + RegCloseKey (RegKey); + return (true); +} + + +void SaveSettings (HWND Dlg) +{ + LRESULT DefragID; + DWORD DefragVal; + LRESULT PriID; + DWORD PriVal; + HKEY RegKey; + + DefragID = SendDlgItemMessage (Dlg, IDC_METHODS_LIST, CB_GETCURSEL, 0, 0); + PriID = SendDlgItemMessage (Dlg, IDC_PRIORITY_LIST, CB_GETCURSEL, 0, 0); + + // Action + if (DefragID == AnalyzeID) + DefragVal = (DWORD) DefragAnalyze; + else + if (DefragID == FastID) + DefragVal = (DWORD) DefragFast; + else + if (DefragID == ExtensiveID) + DefragVal = (DWORD) DefragExtensive; + + // Process Priority + if (PriID == PriHighID) + PriVal = HIGH_PRIORITY_CLASS; + else + if (PriID == PriAboveNormID) + PriVal = ABOVE_NORMAL_PRIORITY_CLASS; + else + if (PriID == PriNormalID) + PriVal = NORMAL_PRIORITY_CLASS; + else + if (PriID == PriBelowNormID) + PriVal = BELOW_NORMAL_PRIORITY_CLASS; + else + if (PriID == PriIdleID) + PriVal = IDLE_PRIORITY_CLASS; + + if (!GetRegKeys (&RegKey)) + return; + + RegSetValueEx + ( + RegKey, + L"Default Action", + 0, + REG_DWORD, + (CONST BYTE *)&DefragVal, + sizeof (DefragVal) + ); + + RegSetValueEx + ( + RegKey, + L"Process Priority", + 0, + REG_DWORD, + (CONST BYTE *)&PriVal, + sizeof (PriVal) + ); + + DoneRegKey (RegKey); + return; +} + + +void LoadSettings (HWND Dlg) +{ + DefragType DType; + DWORD DTypeVal; + LRESULT DefragID; + DWORD PriVal; + LRESULT PriID; + HKEY RegKey; + DWORD RegType; + DWORD RegSize; + LONG Error; + + if (!GetRegKeys (&RegKey)) + return; + + RegSize = sizeof (DTypeVal); + RegType = REG_DWORD; + + Error = RegQueryValueEx + ( + RegKey, + L"Default Action", + 0, + &RegType, + (BYTE *)&DTypeVal, + &RegSize + ); + + if (Error != ERROR_SUCCESS) + DTypeVal = DefragAnalyze; + + Error = RegQueryValueEx + ( + RegKey, + L"Process Priority", + 0, + &RegType, + (BYTE *)&PriVal, + &RegSize + ); + + DoneRegKey (RegKey); + + if (Error != ERROR_SUCCESS) + PriVal = NORMAL_PRIORITY_CLASS; + + DType = (DefragType) DTypeVal; + switch (DType) + { + default: + case DefragAnalyze: + DefragID = AnalyzeID; + break; + + case DefragFast: + DefragID = FastID; + break; + + case DefragExtensive: + DefragID = ExtensiveID; + break; + } + + switch (PriVal) + { + case HIGH_PRIORITY_CLASS: + PriID = PriHighID; + break; + + case ABOVE_NORMAL_PRIORITY_CLASS: + PriID = PriAboveNormID; + break; + + default: + case NORMAL_PRIORITY_CLASS: + PriID = PriNormalID; + break; + + case BELOW_NORMAL_PRIORITY_CLASS: + PriID = PriBelowNormID; + break; + + case IDLE_PRIORITY_CLASS: + PriID = PriIdleID; + break; + } + + SendDlgItemMessage (Dlg, IDC_PRIORITY_LIST, CB_SETCURSEL, PriID, 0); + SendDlgItemMessage (Dlg, IDC_METHODS_LIST, CB_SETCURSEL, DefragID, 0); + return; +} + + +#define IDLETIME 25 +wstring OldWindowText = L""; + +INT_PTR CALLBACK MainDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam) +{ + static bool ReEntrance = false; + + switch (Msg) + { + case WM_INITDIALOG: + Stopping = false; + SetWindowText (Dlg, GetDefaultTitle().c_str()); + SetDisables (Dlg); + InitDialog (Dlg); + SetTimer (Dlg, 1, IDLETIME, NULL); + SetClassLong (Dlg, GCL_HICON, (LONG) LoadIcon (GlobalHInstance, MAKEINTRESOURCE(IDI_ICON))); + QuitWhenDone = false; + LoadSettings (Dlg); + UpdatePriority (Dlg); + return (1); + + + case WM_TIMER: + if (Defrag != NULL && !ReEntrance) + { + wstring NewTitle; + + SendMessage (Dlg, WM_UPDATEINFO, 0, 0); + + NewTitle = GetDefragTitle (); + if (NewTitle != OldWindowText) + { + OldWindowText = NewTitle; + SetWindowText (Dlg, NewTitle.c_str()); + } + + if (Defrag->IsDoneYet() || Defrag->HasError()) + { // This is the code executed when defragging is finished (or stopped :) + if (Defrag->GetDefragType() == DefragAnalyze && + !Defrag->HasError() && + !Stopping) + { // Show report + ReEntrance = true; + + DialogBoxParam (GlobalHInstance, MAKEINTRESOURCE (IDD_REPORT), + Dlg, ReportDialogProc, (LPARAM) Defrag); + + ReEntrance = false; + } + + delete Defrag; + Defrag = NULL; + SetDisables (Dlg); + SetWindowText (Dlg, GetDefaultTitle().c_str()); + + Stopping = false; + + if (QuitWhenDone) + SendMessage (GetDlgItem (Dlg, IDC_QUIT), BM_CLICK, 0, 0); + } + } + + SetTimer (Dlg, 1, IDLETIME, NULL); + return (0); + + + case WM_UPDATEINFO: + UpdateDefragInfo (Dlg); + return (1); + + + case WM_CLOSE: + SendMessage (GetDlgItem (Dlg, IDC_QUIT), BM_CLICK, 0, 0); + return (1); + + + case WM_COMMAND: + switch (LOWORD(WParam)) + { + case IDC_PRIORITY_LIST: + UpdatePriority (Dlg); + return (1); + + + case ID_MAIN_HELP: + ShellExecute (Dlg, L"open", L"Fraginator.chm", L"", L".", SW_SHOW); + return (1); + + + case IDC_QUIT: + if (Defrag == NULL) + { // This is the code executing when quitting + SaveSettings (Dlg); + EndDialog (Dlg, 0); + } + else + { // Tell defragging to finish and disable our button + QuitWhenDone = true; + SendMessage (GetDlgItem (Dlg, IDC_STARTSTOP), BM_CLICK, 0, 0); + EnableWindow (GetDlgItem (Dlg, IDC_QUIT), FALSE); + } + return (1); + + + case IDC_STARTSTOP: + if (Defrag == NULL) + { // L"Start" + wchar_t Drive[10]; + LRESULT ID; + DefragType Method; + HANDLE H; + + if (Defrag != NULL) + return (1); + + SendMessage (GetDlgItem (Dlg, IDC_DRIVES_LIST), WM_GETTEXT, + sizeof (Drive) - 1, (LPARAM) Drive); + + if (wcslen(Drive) != 2 || Drive[1] != L':') + return (1); + + ID = SendMessage (GetDlgItem (Dlg, IDC_METHODS_LIST), CB_GETCURSEL, 0, 0); + Method = DefragInvalid; + if (ID == AnalyzeID) + Method = DefragAnalyze; + else + if (ID == FastID) + Method = DefragFast; + else + if (ID == ExtensiveID) + Method = DefragExtensive; + + if (Method != DefragInvalid) + { + Defrag = StartDefragThread (Drive, Method, H); + Defrag->SetDoLimitLength (false); + SetWindowText (Dlg, GetDefragTitle().c_str()); + SetDisables (Dlg); + } + } + else + { // L"Stop" + Stopping = true; + Defrag->Stop (); + EnableWindow (GetDlgItem (Dlg, IDC_STARTSTOP), FALSE); + EnableWindow (GetDlgItem (Dlg, IDC_QUIT), FALSE); + } + return (1); + } + } + + // Otherwise, return 0 to say we did not process the message. + return (0); +} diff --git a/modules/rosapps/applications/fraginator/MainDialog.h b/modules/rosapps/applications/fraginator/MainDialog.h index e7efc1048e6..073512c21b4 100644 --- a/modules/rosapps/applications/fraginator/MainDialog.h +++ b/modules/rosapps/applications/fraginator/MainDialog.h @@ -1,14 +1,14 @@ -#ifndef MAINDIALOG_H -#define MAINDIALOG_H - - -#include - - -#define WM_UPDATEINFO (WM_USER + 1) - - -INT_PTR CALLBACK MainDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam); - - -#endif // MAINDIALOG_H +#ifndef MAINDIALOG_H +#define MAINDIALOG_H + + +#include + + +#define WM_UPDATEINFO (WM_USER + 1) + + +INT_PTR CALLBACK MainDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam); + + +#endif // MAINDIALOG_H diff --git a/modules/rosapps/applications/fraginator/Mutex.h b/modules/rosapps/applications/fraginator/Mutex.h index 5a36c9f4ff1..d646c34856c 100644 --- a/modules/rosapps/applications/fraginator/Mutex.h +++ b/modules/rosapps/applications/fraginator/Mutex.h @@ -1,78 +1,78 @@ -/***************************************************************************** - - Mutex - -*****************************************************************************/ - - -#ifndef MUTEX_H -#define MUTEX_H - - -#include "Unfrag.h" - - -class Mutex -{ -public: - Mutex () - { - // NT only code begin ... Win9x disregards this part - SECURITY_ATTRIBUTES MutexAttribs; - - memset (&MutexAttribs, 0, sizeof (SECURITY_ATTRIBUTES)); - - MutexAttribs.bInheritHandle = false; - MutexAttribs.nLength = sizeof (SECURITY_ATTRIBUTES); - MutexAttribs.lpSecurityDescriptor = NULL; - // NT only code end - - Locked = false; - LockCount = 0; - MutexHandle = CreateMutex (&MutexAttribs, Locked, NULL); - - return; - } - - ~Mutex () - { - Lock (); - CloseHandle (MutexHandle); - } - - void Lock (void) - { - Locked = true; - WaitForSingleObject (MutexHandle, INFINITE); - LockCount += 1; - return; - } - - - void Unlock (void) - { - LockCount -= 1; - if (LockCount <= 0) - { - LockCount = 0; - Locked = false; - } - - ReleaseMutex (MutexHandle); - return; - } - - - bool IsLocked (void) - { - return (Locked); - } - -protected: - uint32 LockCount; - HANDLE MutexHandle; - bool Locked; -}; - - -#endif // MUTEX_H +/***************************************************************************** + + Mutex + +*****************************************************************************/ + + +#ifndef MUTEX_H +#define MUTEX_H + + +#include "Unfrag.h" + + +class Mutex +{ +public: + Mutex () + { + // NT only code begin ... Win9x disregards this part + SECURITY_ATTRIBUTES MutexAttribs; + + memset (&MutexAttribs, 0, sizeof (SECURITY_ATTRIBUTES)); + + MutexAttribs.bInheritHandle = false; + MutexAttribs.nLength = sizeof (SECURITY_ATTRIBUTES); + MutexAttribs.lpSecurityDescriptor = NULL; + // NT only code end + + Locked = false; + LockCount = 0; + MutexHandle = CreateMutex (&MutexAttribs, Locked, NULL); + + return; + } + + ~Mutex () + { + Lock (); + CloseHandle (MutexHandle); + } + + void Lock (void) + { + Locked = true; + WaitForSingleObject (MutexHandle, INFINITE); + LockCount += 1; + return; + } + + + void Unlock (void) + { + LockCount -= 1; + if (LockCount <= 0) + { + LockCount = 0; + Locked = false; + } + + ReleaseMutex (MutexHandle); + return; + } + + + bool IsLocked (void) + { + return (Locked); + } + +protected: + uint32 LockCount; + HANDLE MutexHandle; + bool Locked; +}; + + +#endif // MUTEX_H diff --git a/modules/rosapps/applications/fraginator/ReportDialog.cpp b/modules/rosapps/applications/fraginator/ReportDialog.cpp index 7a556d73a2a..8cc9cef2242 100644 --- a/modules/rosapps/applications/fraginator/ReportDialog.cpp +++ b/modules/rosapps/applications/fraginator/ReportDialog.cpp @@ -1,231 +1,231 @@ -#include "ReportDialog.h" -#include "Unfrag.h" -#include "Fraginator.h" -#include "DriveVolume.h" -#include "Defragment.h" -#include "resource.h" - - -void SetReportInfo (HWND Dlg, DefragReport &Report, uint32 BytesDivisor, const wchar_t *BytesUnits, bool Fractional) -{ - wchar_t Text[1000]; - wchar_t Text2[1000]; - wchar_t Text3[1000]; - - memset (Text, 0, sizeof (Text)); - - // Volume name - SetDlgItemText (Dlg, IDC_DRIVELETTER, Report.RootPath.c_str()); - - // Volume label - SetDlgItemText (Dlg, IDC_VOLUMELABEL, Defrag->GetVolume().GetVolumeInfo().Name.c_str()); - - // Volume Serial - SetDlgItemText (Dlg, IDC_VOLUMESERIAL, Defrag->GetVolume().GetVolumeInfo().Serial.c_str()); - - // File System - SetDlgItemText (Dlg, IDC_FILESYSTEM, Defrag->GetVolume().GetVolumeInfo().FileSystem.c_str()); - - // DiskSizeBytes - if (Fractional) - { - swprintf (Text, L"%.2f %s", (double)(signed)(Report.DiskSizeBytes / - (BytesDivisor / 1024)) / 1024.0, BytesUnits); - } - else - { - AddCommas (Text, Report.DiskSizeBytes / BytesDivisor); - wcscat (Text, L" "); - wcscat (Text, BytesUnits); - } - - SetDlgItemText (Dlg, IDC_DISKSIZEBYTES, Text); - - // DiskFreeBytes - if (Fractional) - { - swprintf (Text, L"%.2f %s", (double)(signed)(Defrag->GetVolume().GetVolumeInfo().FreeBytes / - (BytesDivisor / 1024)) / 1024.0, BytesUnits); - } - else - { - AddCommas (Text, Defrag->GetVolume().GetVolumeInfo().FreeBytes / BytesDivisor); - wcscat (Text, L" "); - wcscat (Text, BytesUnits); - } - SetDlgItemText (Dlg, IDC_DISKFREEBYTES, Text); - - // DiskSizeClusters - AddCommas (Text, Defrag->GetVolume().GetVolumeInfo().ClusterCount); - wcscat (Text, L" clusters"); - SetDlgItemText (Dlg, IDC_DISKSIZECLUSTERS, Text); - - // DiskClusterSize - swprintf (Text, L"%u bytes", Defrag->GetVolume().GetVolumeInfo().ClusterSize); - SetDlgItemText (Dlg, IDC_DISKCLUSTERSIZE, Text); - - // DirsCount - AddCommas (Text, Report.DirsCount); - SetDlgItemText (Dlg, IDC_DIRSCOUNT, Text); - - // FilesCount - AddCommas (Text, Report.FilesCount); - SetDlgItemText (Dlg, IDC_FILESCOUNT, Text); - - // FilesFragged - swprintf (Text, L"(%.2f%%)", Report.PercentFragged); - AddCommas (Text2, Report.FraggedFiles.size()); - swprintf (Text3, L"%s %s", Text, Text2); - SetDlgItemText (Dlg, IDC_FILESFRAGGED, Text3); - - // Average Frags - swprintf (Text, L"%.2f", Report.AverageFragments); - SetDlgItemText (Dlg, IDC_AVERAGEFRAGS, Text); - - // FilesSizeBytes - if (Fractional) - { - swprintf (Text, L"%.2f %s", (double)(signed)(Report.FilesSizeBytes / - (BytesDivisor / 1024)) / 1024.0, BytesUnits); - } - else - { - AddCommas (Text, Report.FilesSizeBytes / (uint64)BytesDivisor); - wcscat (Text, L" "); - wcscat (Text, BytesUnits); - } - SetDlgItemText (Dlg, IDC_FILESSIZEBYTES, Text); - - // Files SizeOnDisk - if (Fractional) - { - swprintf (Text, L"%.2f %s", (double)(signed)((Report.FilesSizeBytes + Report.FilesSlackBytes) / - (BytesDivisor / 1024)) / 1024.0, BytesUnits); - } - else - { - AddCommas (Text, (Report.FilesSizeBytes + Report.FilesSlackBytes) / (uint64)BytesDivisor); - wcscat (Text, L" "); - wcscat (Text, BytesUnits); - - } - SetDlgItemText (Dlg, IDC_FILESSIZEONDISK, Text); - - // FilesSlackBytes - if (Fractional) - { - swprintf (Text, L"%.2f %s", (double)(signed)(Report.FilesSlackBytes / - (BytesDivisor / 1024)) / 1024.0, BytesUnits); - } - else - { - AddCommas (Text, Report.FilesSlackBytes / BytesDivisor); - wcscat (Text, L" "); - wcscat (Text, BytesUnits); - } - swprintf (Text2, L"(%.2f%%)", Report.PercentSlack); - swprintf (Text3, L"%s %s", Text2, Text); - SetDlgItemText (Dlg, IDC_FILESSLACKBYTES, Text3); - - // Recommendation - bool PFRec = false; // Recommend based off percent fragged files? - bool AFRec = false; // Recommend based off average fragments per file? - - if (Report.PercentFragged >= 5.0f) - PFRec = true; - - if (Report.AverageFragments >= 1.1f) - AFRec = true; - - wcscpy (Text, L"* "); - - if (PFRec) - { - swprintf - ( - Text2, - L"%.2f%% of the files on this volume are fragmented. ", - Report.PercentFragged - ); - - wcscat (Text, Text2); - } - - if (AFRec) - { - swprintf - ( - Text2, - L"The average fragments per file (%.2f) indicates a high degree of fragmentation. ", - Report.AverageFragments - ); - - wcscat (Text, Text2); - } - - if (Report.PercentFragged < 5.0f && Report.AverageFragments < 1.1f) - swprintf (Text, L"* No defragmentation is necessary at this point."); - else - if (Report.PercentFragged < 15.0f && Report.AverageFragments < 1.3f) - wcscat (Text, L"It is recommended that you perform a Fast Defrag."); - else - wcscat (Text, L"It is recommended that you perform an Extensive Defrag."); - - // Should we recommend a smaller cluster size? - if (Report.PercentSlack >= 10.0f) - { - swprintf - ( - Text2, - L"\n* A large amount of disk space (%.2f%%) is being lost " - L"due to a large (%u bytes) cluster size. It is recommended " - L"that you use a disk utility such as Partition Magic to " - L"reduce the cluster size of this volume.", - Report.PercentSlack, - Defrag->GetVolume().GetVolumeInfo().ClusterSize - ); - - wcscat (Text, Text2); - } - - SetDlgItemText (Dlg, IDC_RECOMMEND, Text); - - return; -} - - -INT_PTR CALLBACK ReportDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam) -{ - switch (Msg) - { - case WM_INITDIALOG: - SetReportInfo (Dlg, Defrag->GetDefragReport (), 1, L"bytes", false); - return (1); - - case WM_COMMAND: - switch (LOWORD(WParam)) - { - case IDC_REPORTOK: - EndDialog (Dlg, 0); - return (1); - - case IDC_GIGABYTES: - SetReportInfo (Dlg, Defrag->GetDefragReport (), 1024*1024*1024, L"GB", true); - return (1); - - case IDC_MEGABYTES: - SetReportInfo (Dlg, Defrag->GetDefragReport (), 1024*1024, L"MB", false); - return (1); - - case IDC_KILOBYTES: - SetReportInfo (Dlg, Defrag->GetDefragReport (), 1024, L"KB", false); - return (1); - - case IDC_BYTES: - SetReportInfo (Dlg, Defrag->GetDefragReport (), 1, L"bytes", false); - return (1); - } - } - - return (0); -} +#include "ReportDialog.h" +#include "Unfrag.h" +#include "Fraginator.h" +#include "DriveVolume.h" +#include "Defragment.h" +#include "resource.h" + + +void SetReportInfo (HWND Dlg, DefragReport &Report, uint32 BytesDivisor, const wchar_t *BytesUnits, bool Fractional) +{ + wchar_t Text[1000]; + wchar_t Text2[1000]; + wchar_t Text3[1000]; + + memset (Text, 0, sizeof (Text)); + + // Volume name + SetDlgItemText (Dlg, IDC_DRIVELETTER, Report.RootPath.c_str()); + + // Volume label + SetDlgItemText (Dlg, IDC_VOLUMELABEL, Defrag->GetVolume().GetVolumeInfo().Name.c_str()); + + // Volume Serial + SetDlgItemText (Dlg, IDC_VOLUMESERIAL, Defrag->GetVolume().GetVolumeInfo().Serial.c_str()); + + // File System + SetDlgItemText (Dlg, IDC_FILESYSTEM, Defrag->GetVolume().GetVolumeInfo().FileSystem.c_str()); + + // DiskSizeBytes + if (Fractional) + { + swprintf (Text, L"%.2f %s", (double)(signed)(Report.DiskSizeBytes / + (BytesDivisor / 1024)) / 1024.0, BytesUnits); + } + else + { + AddCommas (Text, Report.DiskSizeBytes / BytesDivisor); + wcscat (Text, L" "); + wcscat (Text, BytesUnits); + } + + SetDlgItemText (Dlg, IDC_DISKSIZEBYTES, Text); + + // DiskFreeBytes + if (Fractional) + { + swprintf (Text, L"%.2f %s", (double)(signed)(Defrag->GetVolume().GetVolumeInfo().FreeBytes / + (BytesDivisor / 1024)) / 1024.0, BytesUnits); + } + else + { + AddCommas (Text, Defrag->GetVolume().GetVolumeInfo().FreeBytes / BytesDivisor); + wcscat (Text, L" "); + wcscat (Text, BytesUnits); + } + SetDlgItemText (Dlg, IDC_DISKFREEBYTES, Text); + + // DiskSizeClusters + AddCommas (Text, Defrag->GetVolume().GetVolumeInfo().ClusterCount); + wcscat (Text, L" clusters"); + SetDlgItemText (Dlg, IDC_DISKSIZECLUSTERS, Text); + + // DiskClusterSize + swprintf (Text, L"%u bytes", Defrag->GetVolume().GetVolumeInfo().ClusterSize); + SetDlgItemText (Dlg, IDC_DISKCLUSTERSIZE, Text); + + // DirsCount + AddCommas (Text, Report.DirsCount); + SetDlgItemText (Dlg, IDC_DIRSCOUNT, Text); + + // FilesCount + AddCommas (Text, Report.FilesCount); + SetDlgItemText (Dlg, IDC_FILESCOUNT, Text); + + // FilesFragged + swprintf (Text, L"(%.2f%%)", Report.PercentFragged); + AddCommas (Text2, Report.FraggedFiles.size()); + swprintf (Text3, L"%s %s", Text, Text2); + SetDlgItemText (Dlg, IDC_FILESFRAGGED, Text3); + + // Average Frags + swprintf (Text, L"%.2f", Report.AverageFragments); + SetDlgItemText (Dlg, IDC_AVERAGEFRAGS, Text); + + // FilesSizeBytes + if (Fractional) + { + swprintf (Text, L"%.2f %s", (double)(signed)(Report.FilesSizeBytes / + (BytesDivisor / 1024)) / 1024.0, BytesUnits); + } + else + { + AddCommas (Text, Report.FilesSizeBytes / (uint64)BytesDivisor); + wcscat (Text, L" "); + wcscat (Text, BytesUnits); + } + SetDlgItemText (Dlg, IDC_FILESSIZEBYTES, Text); + + // Files SizeOnDisk + if (Fractional) + { + swprintf (Text, L"%.2f %s", (double)(signed)((Report.FilesSizeBytes + Report.FilesSlackBytes) / + (BytesDivisor / 1024)) / 1024.0, BytesUnits); + } + else + { + AddCommas (Text, (Report.FilesSizeBytes + Report.FilesSlackBytes) / (uint64)BytesDivisor); + wcscat (Text, L" "); + wcscat (Text, BytesUnits); + + } + SetDlgItemText (Dlg, IDC_FILESSIZEONDISK, Text); + + // FilesSlackBytes + if (Fractional) + { + swprintf (Text, L"%.2f %s", (double)(signed)(Report.FilesSlackBytes / + (BytesDivisor / 1024)) / 1024.0, BytesUnits); + } + else + { + AddCommas (Text, Report.FilesSlackBytes / BytesDivisor); + wcscat (Text, L" "); + wcscat (Text, BytesUnits); + } + swprintf (Text2, L"(%.2f%%)", Report.PercentSlack); + swprintf (Text3, L"%s %s", Text2, Text); + SetDlgItemText (Dlg, IDC_FILESSLACKBYTES, Text3); + + // Recommendation + bool PFRec = false; // Recommend based off percent fragged files? + bool AFRec = false; // Recommend based off average fragments per file? + + if (Report.PercentFragged >= 5.0f) + PFRec = true; + + if (Report.AverageFragments >= 1.1f) + AFRec = true; + + wcscpy (Text, L"* "); + + if (PFRec) + { + swprintf + ( + Text2, + L"%.2f%% of the files on this volume are fragmented. ", + Report.PercentFragged + ); + + wcscat (Text, Text2); + } + + if (AFRec) + { + swprintf + ( + Text2, + L"The average fragments per file (%.2f) indicates a high degree of fragmentation. ", + Report.AverageFragments + ); + + wcscat (Text, Text2); + } + + if (Report.PercentFragged < 5.0f && Report.AverageFragments < 1.1f) + swprintf (Text, L"* No defragmentation is necessary at this point."); + else + if (Report.PercentFragged < 15.0f && Report.AverageFragments < 1.3f) + wcscat (Text, L"It is recommended that you perform a Fast Defrag."); + else + wcscat (Text, L"It is recommended that you perform an Extensive Defrag."); + + // Should we recommend a smaller cluster size? + if (Report.PercentSlack >= 10.0f) + { + swprintf + ( + Text2, + L"\n* A large amount of disk space (%.2f%%) is being lost " + L"due to a large (%u bytes) cluster size. It is recommended " + L"that you use a disk utility such as Partition Magic to " + L"reduce the cluster size of this volume.", + Report.PercentSlack, + Defrag->GetVolume().GetVolumeInfo().ClusterSize + ); + + wcscat (Text, Text2); + } + + SetDlgItemText (Dlg, IDC_RECOMMEND, Text); + + return; +} + + +INT_PTR CALLBACK ReportDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam) +{ + switch (Msg) + { + case WM_INITDIALOG: + SetReportInfo (Dlg, Defrag->GetDefragReport (), 1, L"bytes", false); + return (1); + + case WM_COMMAND: + switch (LOWORD(WParam)) + { + case IDC_REPORTOK: + EndDialog (Dlg, 0); + return (1); + + case IDC_GIGABYTES: + SetReportInfo (Dlg, Defrag->GetDefragReport (), 1024*1024*1024, L"GB", true); + return (1); + + case IDC_MEGABYTES: + SetReportInfo (Dlg, Defrag->GetDefragReport (), 1024*1024, L"MB", false); + return (1); + + case IDC_KILOBYTES: + SetReportInfo (Dlg, Defrag->GetDefragReport (), 1024, L"KB", false); + return (1); + + case IDC_BYTES: + SetReportInfo (Dlg, Defrag->GetDefragReport (), 1, L"bytes", false); + return (1); + } + } + + return (0); +} diff --git a/modules/rosapps/applications/fraginator/ReportDialog.h b/modules/rosapps/applications/fraginator/ReportDialog.h index 84f7778b02e..930dbd430c0 100644 --- a/modules/rosapps/applications/fraginator/ReportDialog.h +++ b/modules/rosapps/applications/fraginator/ReportDialog.h @@ -1,18 +1,18 @@ -/***************************************************************************** - - ReportDialog - -*****************************************************************************/ - - -#ifndef REPORTDIALOG_H -#define REPORTDIALOG_H - - -#include - - -INT_PTR CALLBACK ReportDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam); - - -#endif // REPORTDIALOG_H +/***************************************************************************** + + ReportDialog + +*****************************************************************************/ + + +#ifndef REPORTDIALOG_H +#define REPORTDIALOG_H + + +#include + + +INT_PTR CALLBACK ReportDialogProc (HWND Dlg, UINT Msg, WPARAM WParam, LPARAM LParam); + + +#endif // REPORTDIALOG_H diff --git a/modules/rosapps/applications/fraginator/Unfrag.cpp b/modules/rosapps/applications/fraginator/Unfrag.cpp index fefc7f72a6f..0675021501b 100644 --- a/modules/rosapps/applications/fraginator/Unfrag.cpp +++ b/modules/rosapps/applications/fraginator/Unfrag.cpp @@ -1,464 +1,464 @@ -/***************************************************************************** - - Unfrag - -*****************************************************************************/ - - -#include "Unfrag.h" -#include "DriveVolume.h" -#include "Defragment.h" -#include - - -bool QuietMode = false; -bool VerboseMode = false; - - -// Makes sure we're in Windows 2000 -bool CheckWinVer (void) -{ - OSVERSIONINFO OSVersion; - - ZeroMemory (&OSVersion, sizeof (OSVersion)); - OSVersion.dwOSVersionInfoSize = sizeof (OSVersion); - GetVersionEx (&OSVersion); - - // Need Windows 2000! - - // Check for NT first - // Actually what we do is check that weLL're not on Win31+Win32s and that we're - // not in Windows 9x. It's possible that there could be more Windows "platforms" - // in the future and there's no sense in claiming incompatibility. - if (OSVersion.dwPlatformId == VER_PLATFORM_WIN32s || - OSVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) - { - return (false); - } - - // Ok weLL're in Windows NT, now make sure we're in 2000 - if (OSVersion.dwMajorVersion < 5) - return (false); - - // Kew, we're in at least Windows 2000 ("NT 5.0") - return (true); -} - - -wchar_t *AddCommas (wchar_t *Result, uint64 Number) -{ - wchar_t Temp[128]; - int TempLen; - //wchar_t *p = NULL; - int AddCommas = 0; - wchar_t *StrPosResult = NULL; - wchar_t *StrPosOrig = NULL; - - // we get the string form of the number, then we count down w/ AddCommas - // while copying the string from Temp1 to Result. when AddCommas % 3 == 1, - // slap in a commas as well, before the #. - swprintf (Temp, L"%I64u", Number); - AddCommas = TempLen = wcslen (Temp); - StrPosOrig = Temp; - StrPosResult = Result; - while (AddCommas) - { - if ((AddCommas % 3) == 0 && AddCommas != TempLen) // avoid stuff like ",345" - { - *StrPosResult = L','; - StrPosResult++; - } - - *StrPosResult = *StrPosOrig; - StrPosResult++; - StrPosOrig++; - - *StrPosResult = 0; - - AddCommas--; - } - - return (Result); -} - - -void PrintBanner (void) -{ - wprintf (L"%s v%s\n", APPNAME_CLI, APPVER_STR); - wprintf (L"%s\n", APPCOPYRIGHT); - wprintf (L"\n"); - - return; -} - - -void FraggerHelp (void) -{ - wprintf (L"Usage: unfrag drive: [...] <-f | -e>\n"); - wprintf (L"\n"); - wprintf (L"drive: : The drive to defrag. Should be two characters long, ie 'c:' or 'd:'.\n"); - wprintf (L" Multiple drives may be given, and all will be simultaneously\n"); - wprintf (L" defragmented using the same options.\n"); - wprintf (L"-f : Do a fast defragmentation. Files that are not fragmented will not be\n"); - wprintf (L" moved. Only one pass is made over the file list. Using this option\n"); - wprintf (L" may result in not all files being defragmented, depending on\n"); - wprintf (L" available disk space.\n"); - wprintf (L"-e : Do an extensive defragmention. Files will be moved in an attempt to\n"); - wprintf (L" defragment both files and free space.\n"); - - if (!CheckWinVer()) - { - wprintf (L"\n"); - wprintf (L"NOTE: This program requires Windows 2000, which is not presently running on\n"); - wprintf (L"this system.\n"); - } - - return; -} - - -void __cdecl DefragThread (LPVOID parm) -{ - Defragment *Defrag; - - Defrag = (Defragment *) parm; - Defrag->Start (); - - _endthread (); - return; -} - - -Defragment *StartDefragThread (wstring Drive, DefragType Method, HANDLE &Handle) -{ - Defragment *Defragger; - unsigned long Thread; - - Defragger = new Defragment (Drive, Method); - //Thread = /*CreateThread*/ _beginthreadex (NULL, 0, DefragThread, Defragger, 0, &ThreadID); - Thread = _beginthread (DefragThread, 0, Defragger); - Handle = *((HANDLE *)&Thread); - return (Defragger); -} - -#ifdef _CUI_ -// Main Initialization -extern "C" int wmain (int argc, wchar_t **argv) -{ - vector Drives; - vector Defrags; - DefragType DefragMode = DefragInvalid; - - PrintBanner (); - - // Parse command line arguments - bool ValidCmdLine = false; - for (int c = 0; c < argc; c++) - { - if (wcslen(argv[c]) == 2 && argv[c][1] == L':') - { - Drives.push_back (_wcsupr(argv[c])); - } - else - if ((argv[c][0] == L'-' || argv[c][0] == L'/') && wcslen(argv[c]) == 2) - { - switch (tolower(argv[c][1])) - { - case L'?' : - case L'h' : - FraggerHelp (); - return (0); - - case L'f' : - if (DefragMode != DefragInvalid) - { - ValidCmdLine = false; - break; - } - DefragMode = DefragFast; - ValidCmdLine = true; - break; - - case L'e' : - if (DefragMode != DefragInvalid) - { - ValidCmdLine = false; - break; - } - DefragMode = DefragExtensive; - ValidCmdLine = true; - break; - - } - } - } - - if (DefragMode == DefragInvalid) - ValidCmdLine = false; - - if (!ValidCmdLine) - { - wprintf (L"Invalid command-line options. Use '%s -?' for help.\n", argv[0]); - return (0); - } - - // Check OS requirements - if (!CheckWinVer()) - { - wprintf (L"Fatal Error: This program requires Windows 2000.\n"); - return (0); - } - - for (size_t d = 0; d < Drives.size (); d++) - { - HANDLE TossMe; - Defrags.push_back (StartDefragThread (Drives[d], DefragMode, TossMe)); - } - - for (size_t d = 0; d < Drives.size () - 1; d++) - wprintf (L"\n "); - - bool Continue = true; - HANDLE Screen; - - Screen = GetStdHandle (STD_OUTPUT_HANDLE); - while (Continue) - { - Sleep (25); - - // Get current screen coords - CONSOLE_SCREEN_BUFFER_INFO ScreenInfo; - - GetConsoleScreenBufferInfo (Screen, &ScreenInfo); - - // Now set back to the beginning - ScreenInfo.dwCursorPosition.X = 0; - ScreenInfo.dwCursorPosition.Y -= Drives.size(); - SetConsoleCursorPosition (Screen, ScreenInfo.dwCursorPosition); - - for (size_t d = 0; d < Drives.size (); d++) - { - wprintf (L"\n%6.2f%% %-70s", Defrags[d]->GetStatusPercent(), Defrags[d]->GetStatusString().c_str()); - } - - // Determine if we should keep going - Continue = false; - for (size_t d = 0; d < Drives.size (); d++) - { - if (!Defrags[d]->IsDoneYet() && !Defrags[d]->HasError()) - Continue = true; - } - } - -#if 0 - // Loop through the drives list - for (int d = 0; d < Drives.size(); d++) - { - DriveVolume *Drive; - - Drive = new DriveVolume; - - // First thing: build a file list. - wprintf (L"Opening volume %s ...", Drives[d].c_str()); - if (!Drive->Open (Drives[d])) - { - wprintf (L"FAILED\n\n"); - delete Drive; - continue; - } - wprintf (L"\n"); - - wprintf (L" Getting drive bitmap ..."); - if (!Drive->GetBitmap ()) - { - wprintf (L"FAILED\n\n"); - delete Drive; - continue; - } - wprintf (L"\n"); - - wprintf (L" Obtaining drive geometry ..."); - if (!Drive->ObtainInfo ()) - { - wprintf (L"FAILED\n\n"); - delete Drive; - continue; - } - wprintf (L"\n"); - - wprintf (L" Building file database for drive %s ...", Drives[d].c_str()); - if (!Drive->BuildFileList ()) - { - wprintf (L"FAILED\n\n"); - delete Drive; - continue; - } - wprintf (L"\n"); - - wprintf (L" %u files\n", Drive->GetDBFileCount ()); - - // Analyze only? - if (DefragMode == DefragAnalyze) - { - uint64 UsedBytes = 0; // total bytes used, with cluster size considerations - uint64 TotalBytes = 0; // total bytes used - uint64 SlackBytes = 0; // wasted space due to slack - uint32 Fragged = 0; // fragmented files - - wprintf (L" Analyzing ..."); - if (VerboseMode) - wprintf (L"\n"); - - for (int i = 0; i < Drive->GetDBFileCount(); i++) - { - uint64 Used; - uint64 Slack; - FileInfo Info; - - Info = Drive->GetDBFile (i); - - // Compute total used disk space - Used = ((Info.Size + Drive->GetClusterSize() - 1) / Drive->GetClusterSize()) * Drive->GetClusterSize(); - Slack = Used - Info.Size; - - UsedBytes += Used; - SlackBytes += Slack; - TotalBytes += Info.Size; - - if (VerboseMode) - { - wprintf (L" %s%s, ", Drive->GetDBDir (Info.DirIndice).c_str(), Info.Name.c_str()); - - if (Info.Attributes.AccessDenied) - wprintf (L"access was denied\n"); - else - { - if (Info.Attributes.Unmovable == 1) - wprintf (L"unmovable, "); - - wprintf (L"%I64u bytes, %I64u bytes on disk, %I64u bytes slack, %u fragments\n", - Info.Size, Used, Slack, Info.Fragments.size()); - } - } - - if (Info.Fragments.size() > 1) - Fragged++; - } - - if (!VerboseMode) - wprintf (L"\n"); - - // TODO: Make it not look like ass - wprintf (L"\n"); - wprintf (L" Overall Analysis\n"); - wprintf (L" ----------------\n"); - wprintf (L" %u clusters\n", Drive->GetClusterCount ()); - wprintf (L" %u bytes per cluster\n", Drive->GetClusterSize()); - wprintf (L" %I64u total bytes on drive\n", (uint64)Drive->GetClusterCount() * (uint64)Drive->GetClusterSize()); - wprintf (L"\n"); - wprintf (L" %u files\n", Drive->GetDBFileCount ()); - wprintf (L" %u contiguous files\n", Drive->GetDBFileCount () - Fragged); - wprintf (L" %u fragmented files\n", Fragged); - wprintf (L"\n"); - wprintf (L" %I64u bytes\n", TotalBytes); - wprintf (L" %I64u bytes on disk\n", UsedBytes); - wprintf (L" %I64u bytes slack\n", SlackBytes); - } - - // Fast defragment! - if (DefragMode == DefragFast || DefragMode == DefragExtensive) - { - uint32 i; - uint64 FirstFreeLCN; - wchar_t PrintName[80]; - int Width = 66; - - if (DefragMode == DefragFast) - wprintf (L" Performing fast file defragmentation ...\n"); - else - if (DefragMode == DefragExtensive) - wprintf (L" Performing extensive file defragmentation\n"); - - // Find first free LCN for speedier searches ... - Drive->FindFreeRange (0, 1, FirstFreeLCN); - - for (i = 0; i < Drive->GetDBFileCount(); i++) - { - FileInfo Info; - bool Result; - uint64 TargetLCN; - - wprintf (L"\r"); - - Info = Drive->GetDBFile (i); - - FitName (PrintName, Drive->GetDBDir (Info.DirIndice).c_str(), Info.Name.c_str(), Width); - wprintf (L" %6.2f%% %-66s", (float)i / (float)Drive->GetDBFileCount() * 100.0f, PrintName); - - // Can't defrag 0 byte files :) - if (Info.Fragments.size() == 0) - continue; - - // If doing fast defrag, skip non-fragmented files - if (Info.Fragments.size() == 1 && DefragMode == DefragFast) - continue; - - // Find a place that can fit the file - Result = Drive->FindFreeRange (FirstFreeLCN, Info.Clusters, TargetLCN); - - // If we're doing an extensive defrag and the file is already defragmented - // and if its new location would be after its current location, don't - // move it. - if (DefragMode == DefragExtensive && Info.Fragments.size() == 1) - { - if (TargetLCN > Info.Fragments[0].StartLCN) - continue; - } - - // Otherwise, defrag0rize it! - if (Result) - { - bool Success = false; - - if (Drive->MoveFileDumb (i, TargetLCN)) - Success = true; - else - { // hmm, look for another area to move it to - Result = Drive->FindFreeRange (TargetLCN + 1, Info.Clusters, TargetLCN); - if (Result) - { - if (Drive->MoveFileDumb (i, TargetLCN)) - Success = true; - else - { // Try updating the drive bitmap - if (Drive->GetBitmap ()) - { - Result = Drive->FindFreeRange (0, Info.Clusters, TargetLCN); - if (Result) - { - if (Drive->MoveFileDumb (i, TargetLCN)) - Success = true; - } - } - } - } - } - - if (!Success) - wprintf (L"\n -> failed\n"); - - Drive->FindFreeRange (0, 1, FirstFreeLCN); - } - } - - wprintf (L"\n"); - } - wprintf (L"Closing volume %s ...", Drives[d].c_str()); - delete Drive; - wprintf (L"\n"); - } -#endif - - return (0); -} -#endif +/***************************************************************************** + + Unfrag + +*****************************************************************************/ + + +#include "Unfrag.h" +#include "DriveVolume.h" +#include "Defragment.h" +#include + + +bool QuietMode = false; +bool VerboseMode = false; + + +// Makes sure we're in Windows 2000 +bool CheckWinVer (void) +{ + OSVERSIONINFO OSVersion; + + ZeroMemory (&OSVersion, sizeof (OSVersion)); + OSVersion.dwOSVersionInfoSize = sizeof (OSVersion); + GetVersionEx (&OSVersion); + + // Need Windows 2000! + + // Check for NT first + // Actually what we do is check that weLL're not on Win31+Win32s and that we're + // not in Windows 9x. It's possible that there could be more Windows "platforms" + // in the future and there's no sense in claiming incompatibility. + if (OSVersion.dwPlatformId == VER_PLATFORM_WIN32s || + OSVersion.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) + { + return (false); + } + + // Ok weLL're in Windows NT, now make sure we're in 2000 + if (OSVersion.dwMajorVersion < 5) + return (false); + + // Kew, we're in at least Windows 2000 ("NT 5.0") + return (true); +} + + +wchar_t *AddCommas (wchar_t *Result, uint64 Number) +{ + wchar_t Temp[128]; + int TempLen; + //wchar_t *p = NULL; + int AddCommas = 0; + wchar_t *StrPosResult = NULL; + wchar_t *StrPosOrig = NULL; + + // we get the string form of the number, then we count down w/ AddCommas + // while copying the string from Temp1 to Result. when AddCommas % 3 == 1, + // slap in a commas as well, before the #. + swprintf (Temp, L"%I64u", Number); + AddCommas = TempLen = wcslen (Temp); + StrPosOrig = Temp; + StrPosResult = Result; + while (AddCommas) + { + if ((AddCommas % 3) == 0 && AddCommas != TempLen) // avoid stuff like ",345" + { + *StrPosResult = L','; + StrPosResult++; + } + + *StrPosResult = *StrPosOrig; + StrPosResult++; + StrPosOrig++; + + *StrPosResult = 0; + + AddCommas--; + } + + return (Result); +} + + +void PrintBanner (void) +{ + wprintf (L"%s v%s\n", APPNAME_CLI, APPVER_STR); + wprintf (L"%s\n", APPCOPYRIGHT); + wprintf (L"\n"); + + return; +} + + +void FraggerHelp (void) +{ + wprintf (L"Usage: unfrag drive: [...] <-f | -e>\n"); + wprintf (L"\n"); + wprintf (L"drive: : The drive to defrag. Should be two characters long, ie 'c:' or 'd:'.\n"); + wprintf (L" Multiple drives may be given, and all will be simultaneously\n"); + wprintf (L" defragmented using the same options.\n"); + wprintf (L"-f : Do a fast defragmentation. Files that are not fragmented will not be\n"); + wprintf (L" moved. Only one pass is made over the file list. Using this option\n"); + wprintf (L" may result in not all files being defragmented, depending on\n"); + wprintf (L" available disk space.\n"); + wprintf (L"-e : Do an extensive defragmention. Files will be moved in an attempt to\n"); + wprintf (L" defragment both files and free space.\n"); + + if (!CheckWinVer()) + { + wprintf (L"\n"); + wprintf (L"NOTE: This program requires Windows 2000, which is not presently running on\n"); + wprintf (L"this system.\n"); + } + + return; +} + + +void __cdecl DefragThread (LPVOID parm) +{ + Defragment *Defrag; + + Defrag = (Defragment *) parm; + Defrag->Start (); + + _endthread (); + return; +} + + +Defragment *StartDefragThread (wstring Drive, DefragType Method, HANDLE &Handle) +{ + Defragment *Defragger; + unsigned long Thread; + + Defragger = new Defragment (Drive, Method); + //Thread = /*CreateThread*/ _beginthreadex (NULL, 0, DefragThread, Defragger, 0, &ThreadID); + Thread = _beginthread (DefragThread, 0, Defragger); + Handle = *((HANDLE *)&Thread); + return (Defragger); +} + +#ifdef _CUI_ +// Main Initialization +extern "C" int wmain (int argc, wchar_t **argv) +{ + vector Drives; + vector Defrags; + DefragType DefragMode = DefragInvalid; + + PrintBanner (); + + // Parse command line arguments + bool ValidCmdLine = false; + for (int c = 0; c < argc; c++) + { + if (wcslen(argv[c]) == 2 && argv[c][1] == L':') + { + Drives.push_back (_wcsupr(argv[c])); + } + else + if ((argv[c][0] == L'-' || argv[c][0] == L'/') && wcslen(argv[c]) == 2) + { + switch (tolower(argv[c][1])) + { + case L'?' : + case L'h' : + FraggerHelp (); + return (0); + + case L'f' : + if (DefragMode != DefragInvalid) + { + ValidCmdLine = false; + break; + } + DefragMode = DefragFast; + ValidCmdLine = true; + break; + + case L'e' : + if (DefragMode != DefragInvalid) + { + ValidCmdLine = false; + break; + } + DefragMode = DefragExtensive; + ValidCmdLine = true; + break; + + } + } + } + + if (DefragMode == DefragInvalid) + ValidCmdLine = false; + + if (!ValidCmdLine) + { + wprintf (L"Invalid command-line options. Use '%s -?' for help.\n", argv[0]); + return (0); + } + + // Check OS requirements + if (!CheckWinVer()) + { + wprintf (L"Fatal Error: This program requires Windows 2000.\n"); + return (0); + } + + for (size_t d = 0; d < Drives.size (); d++) + { + HANDLE TossMe; + Defrags.push_back (StartDefragThread (Drives[d], DefragMode, TossMe)); + } + + for (size_t d = 0; d < Drives.size () - 1; d++) + wprintf (L"\n "); + + bool Continue = true; + HANDLE Screen; + + Screen = GetStdHandle (STD_OUTPUT_HANDLE); + while (Continue) + { + Sleep (25); + + // Get current screen coords + CONSOLE_SCREEN_BUFFER_INFO ScreenInfo; + + GetConsoleScreenBufferInfo (Screen, &ScreenInfo); + + // Now set back to the beginning + ScreenInfo.dwCursorPosition.X = 0; + ScreenInfo.dwCursorPosition.Y -= Drives.size(); + SetConsoleCursorPosition (Screen, ScreenInfo.dwCursorPosition); + + for (size_t d = 0; d < Drives.size (); d++) + { + wprintf (L"\n%6.2f%% %-70s", Defrags[d]->GetStatusPercent(), Defrags[d]->GetStatusString().c_str()); + } + + // Determine if we should keep going + Continue = false; + for (size_t d = 0; d < Drives.size (); d++) + { + if (!Defrags[d]->IsDoneYet() && !Defrags[d]->HasError()) + Continue = true; + } + } + +#if 0 + // Loop through the drives list + for (int d = 0; d < Drives.size(); d++) + { + DriveVolume *Drive; + + Drive = new DriveVolume; + + // First thing: build a file list. + wprintf (L"Opening volume %s ...", Drives[d].c_str()); + if (!Drive->Open (Drives[d])) + { + wprintf (L"FAILED\n\n"); + delete Drive; + continue; + } + wprintf (L"\n"); + + wprintf (L" Getting drive bitmap ..."); + if (!Drive->GetBitmap ()) + { + wprintf (L"FAILED\n\n"); + delete Drive; + continue; + } + wprintf (L"\n"); + + wprintf (L" Obtaining drive geometry ..."); + if (!Drive->ObtainInfo ()) + { + wprintf (L"FAILED\n\n"); + delete Drive; + continue; + } + wprintf (L"\n"); + + wprintf (L" Building file database for drive %s ...", Drives[d].c_str()); + if (!Drive->BuildFileList ()) + { + wprintf (L"FAILED\n\n"); + delete Drive; + continue; + } + wprintf (L"\n"); + + wprintf (L" %u files\n", Drive->GetDBFileCount ()); + + // Analyze only? + if (DefragMode == DefragAnalyze) + { + uint64 UsedBytes = 0; // total bytes used, with cluster size considerations + uint64 TotalBytes = 0; // total bytes used + uint64 SlackBytes = 0; // wasted space due to slack + uint32 Fragged = 0; // fragmented files + + wprintf (L" Analyzing ..."); + if (VerboseMode) + wprintf (L"\n"); + + for (int i = 0; i < Drive->GetDBFileCount(); i++) + { + uint64 Used; + uint64 Slack; + FileInfo Info; + + Info = Drive->GetDBFile (i); + + // Compute total used disk space + Used = ((Info.Size + Drive->GetClusterSize() - 1) / Drive->GetClusterSize()) * Drive->GetClusterSize(); + Slack = Used - Info.Size; + + UsedBytes += Used; + SlackBytes += Slack; + TotalBytes += Info.Size; + + if (VerboseMode) + { + wprintf (L" %s%s, ", Drive->GetDBDir (Info.DirIndice).c_str(), Info.Name.c_str()); + + if (Info.Attributes.AccessDenied) + wprintf (L"access was denied\n"); + else + { + if (Info.Attributes.Unmovable == 1) + wprintf (L"unmovable, "); + + wprintf (L"%I64u bytes, %I64u bytes on disk, %I64u bytes slack, %u fragments\n", + Info.Size, Used, Slack, Info.Fragments.size()); + } + } + + if (Info.Fragments.size() > 1) + Fragged++; + } + + if (!VerboseMode) + wprintf (L"\n"); + + // TODO: Make it not look like ass + wprintf (L"\n"); + wprintf (L" Overall Analysis\n"); + wprintf (L" ----------------\n"); + wprintf (L" %u clusters\n", Drive->GetClusterCount ()); + wprintf (L" %u bytes per cluster\n", Drive->GetClusterSize()); + wprintf (L" %I64u total bytes on drive\n", (uint64)Drive->GetClusterCount() * (uint64)Drive->GetClusterSize()); + wprintf (L"\n"); + wprintf (L" %u files\n", Drive->GetDBFileCount ()); + wprintf (L" %u contiguous files\n", Drive->GetDBFileCount () - Fragged); + wprintf (L" %u fragmented files\n", Fragged); + wprintf (L"\n"); + wprintf (L" %I64u bytes\n", TotalBytes); + wprintf (L" %I64u bytes on disk\n", UsedBytes); + wprintf (L" %I64u bytes slack\n", SlackBytes); + } + + // Fast defragment! + if (DefragMode == DefragFast || DefragMode == DefragExtensive) + { + uint32 i; + uint64 FirstFreeLCN; + wchar_t PrintName[80]; + int Width = 66; + + if (DefragMode == DefragFast) + wprintf (L" Performing fast file defragmentation ...\n"); + else + if (DefragMode == DefragExtensive) + wprintf (L" Performing extensive file defragmentation\n"); + + // Find first free LCN for speedier searches ... + Drive->FindFreeRange (0, 1, FirstFreeLCN); + + for (i = 0; i < Drive->GetDBFileCount(); i++) + { + FileInfo Info; + bool Result; + uint64 TargetLCN; + + wprintf (L"\r"); + + Info = Drive->GetDBFile (i); + + FitName (PrintName, Drive->GetDBDir (Info.DirIndice).c_str(), Info.Name.c_str(), Width); + wprintf (L" %6.2f%% %-66s", (float)i / (float)Drive->GetDBFileCount() * 100.0f, PrintName); + + // Can't defrag 0 byte files :) + if (Info.Fragments.size() == 0) + continue; + + // If doing fast defrag, skip non-fragmented files + if (Info.Fragments.size() == 1 && DefragMode == DefragFast) + continue; + + // Find a place that can fit the file + Result = Drive->FindFreeRange (FirstFreeLCN, Info.Clusters, TargetLCN); + + // If we're doing an extensive defrag and the file is already defragmented + // and if its new location would be after its current location, don't + // move it. + if (DefragMode == DefragExtensive && Info.Fragments.size() == 1) + { + if (TargetLCN > Info.Fragments[0].StartLCN) + continue; + } + + // Otherwise, defrag0rize it! + if (Result) + { + bool Success = false; + + if (Drive->MoveFileDumb (i, TargetLCN)) + Success = true; + else + { // hmm, look for another area to move it to + Result = Drive->FindFreeRange (TargetLCN + 1, Info.Clusters, TargetLCN); + if (Result) + { + if (Drive->MoveFileDumb (i, TargetLCN)) + Success = true; + else + { // Try updating the drive bitmap + if (Drive->GetBitmap ()) + { + Result = Drive->FindFreeRange (0, Info.Clusters, TargetLCN); + if (Result) + { + if (Drive->MoveFileDumb (i, TargetLCN)) + Success = true; + } + } + } + } + } + + if (!Success) + wprintf (L"\n -> failed\n"); + + Drive->FindFreeRange (0, 1, FirstFreeLCN); + } + } + + wprintf (L"\n"); + } + wprintf (L"Closing volume %s ...", Drives[d].c_str()); + delete Drive; + wprintf (L"\n"); + } +#endif + + return (0); +} +#endif diff --git a/modules/rosapps/applications/fraginator/Unfrag.h b/modules/rosapps/applications/fraginator/Unfrag.h index 894f622c6d2..274e59d0ae2 100644 --- a/modules/rosapps/applications/fraginator/Unfrag.h +++ b/modules/rosapps/applications/fraginator/Unfrag.h @@ -1,86 +1,86 @@ -/***************************************************************************** - - Unfrag - -*****************************************************************************/ - - -#ifndef UNFRAG_H -#define UNFRAG_H - - -// Blah blah blah your template name is too long ... SO WHAT -#ifdef _MSC_VER -#pragma warning (disable: 4786) -#endif - -// I forget what this disables -#ifdef __ICL -#pragma warning (disable: 268) -#endif - - -// Hello Mr. Platform SDK, please let us use Windows 2000 only features -#if 0 -#ifndef WINVER -#define WINVER 0x0500 -#define _WIN32_WINNT 0x0500 -#endif -#endif - -#include -#include -#include -#include -//#include -#include - -#define APPNAME_CLI L"Unfrag" -#define APPNAME_GUI L"Fraginator" -#define APPVER_STR L"1.03" -#define APPVER_NUM 1.03f -#define APPAUTHOR L"Rick Brewster" -#define APPCOPYRIGHT L"Copyright 2000-2002 Rick Brewster" - - -#include -#include -using namespace std; - - -typedef unsigned __int8 uint8; -typedef signed __int8 sint8; -typedef unsigned __int16 uint16; -typedef signed __int16 sint16; -typedef unsigned __int32 uint32; -typedef signed __int32 sint32; -typedef unsigned __int64 uint64; -typedef signed __int64 sint64; -typedef unsigned char uchar; - - -extern bool QuietMode; -extern bool VerboseMode; - - -typedef enum -{ - DefragInvalid, - DefragFast, - DefragExtensive, - DefragAnalyze -} DefragType; - - -extern bool CheckWinVer (void); - - -class Defragment; -extern Defragment *StartDefragThread (wstring Drive, DefragType Method, HANDLE &Handle); - - -extern wchar_t *AddCommas (wchar_t *Result, uint64 Number); - - -#endif // UNFRAG_H - +/***************************************************************************** + + Unfrag + +*****************************************************************************/ + + +#ifndef UNFRAG_H +#define UNFRAG_H + + +// Blah blah blah your template name is too long ... SO WHAT +#ifdef _MSC_VER +#pragma warning (disable: 4786) +#endif + +// I forget what this disables +#ifdef __ICL +#pragma warning (disable: 268) +#endif + + +// Hello Mr. Platform SDK, please let us use Windows 2000 only features +#if 0 +#ifndef WINVER +#define WINVER 0x0500 +#define _WIN32_WINNT 0x0500 +#endif +#endif + +#include +#include +#include +#include +//#include +#include + +#define APPNAME_CLI L"Unfrag" +#define APPNAME_GUI L"Fraginator" +#define APPVER_STR L"1.03" +#define APPVER_NUM 1.03f +#define APPAUTHOR L"Rick Brewster" +#define APPCOPYRIGHT L"Copyright 2000-2002 Rick Brewster" + + +#include +#include +using namespace std; + + +typedef unsigned __int8 uint8; +typedef signed __int8 sint8; +typedef unsigned __int16 uint16; +typedef signed __int16 sint16; +typedef unsigned __int32 uint32; +typedef signed __int32 sint32; +typedef unsigned __int64 uint64; +typedef signed __int64 sint64; +typedef unsigned char uchar; + + +extern bool QuietMode; +extern bool VerboseMode; + + +typedef enum +{ + DefragInvalid, + DefragFast, + DefragExtensive, + DefragAnalyze +} DefragType; + + +extern bool CheckWinVer (void); + + +class Defragment; +extern Defragment *StartDefragThread (wstring Drive, DefragType Method, HANDLE &Handle); + + +extern wchar_t *AddCommas (wchar_t *Result, uint64 Number); + + +#endif // UNFRAG_H + diff --git a/modules/rosapps/applications/fraginator/resource.h b/modules/rosapps/applications/fraginator/resource.h index 673c369d856..5fb3744986a 100644 --- a/modules/rosapps/applications/fraginator/resource.h +++ b/modules/rosapps/applications/fraginator/resource.h @@ -1,51 +1,51 @@ -//{{NO_DEPENDENCIES}} -// Microsoft Developer Studio generated include file. -// Used by Fraginator.rc -// -#define IDD_DIALOG1 101 -#define IDD_MAIN 101 -#define IDD_REPORT 106 -#define IDB_LOGO 110 -#define IDI_ICON 114 -#define IDC_QUIT 1010 -#define IDC_STARTSTOP 1014 -#define IDC_METHODS_LIST 1016 -#define IDC_DRIVES_LIST 1019 -#define IDC_PROGRESS 1021 -#define IDC_PERCENT 1022 -#define IDC_STATUS 1023 -#define IDC_DISKSIZEBYTES 1027 -#define IDC_DRIVELETTER 1028 -#define IDC_REPORTOK 1029 -#define IDC_DISKSIZECLUSTERS 1030 -#define IDC_DISKCLUSTERSIZE 1031 -#define IDC_FILESYSTEM 1032 -#define IDC_WISECRACKS 1033 -#define IDC_VOLUMELABEL 1033 -#define IDC_VOLUMESERIAL 1034 -#define IDC_BYTES 1035 -#define IDC_KILOBYTES 1036 -#define IDC_RECOMMEND 1037 -#define IDC_FILESCOUNT 1038 -#define IDC_FILESSIZEBYTES 1039 -#define IDC_FILESSIZEONDISK 1040 -#define IDC_FILESSLACKBYTES 1041 -#define IDC_GIGABYTES 1043 -#define IDC_DISKFREEBYTES 1044 -#define IDC_MEGABYTES 1045 -#define IDC_FILESFRAGGED 1047 -#define IDC_DIRSCOUNT 1048 -#define IDC_AVERAGEFRAGS 1049 -#define ID_MAIN_HELP 1054 -#define IDC_PRIORITY_LIST 1057 - -// Next default values for new objects -// -#ifdef APSTUDIO_INVOKED -#ifndef APSTUDIO_READONLY_SYMBOLS -#define _APS_NEXT_RESOURCE_VALUE 118 -#define _APS_NEXT_COMMAND_VALUE 40001 -#define _APS_NEXT_CONTROL_VALUE 1058 -#define _APS_NEXT_SYMED_VALUE 101 -#endif -#endif +//{{NO_DEPENDENCIES}} +// Microsoft Developer Studio generated include file. +// Used by Fraginator.rc +// +#define IDD_DIALOG1 101 +#define IDD_MAIN 101 +#define IDD_REPORT 106 +#define IDB_LOGO 110 +#define IDI_ICON 114 +#define IDC_QUIT 1010 +#define IDC_STARTSTOP 1014 +#define IDC_METHODS_LIST 1016 +#define IDC_DRIVES_LIST 1019 +#define IDC_PROGRESS 1021 +#define IDC_PERCENT 1022 +#define IDC_STATUS 1023 +#define IDC_DISKSIZEBYTES 1027 +#define IDC_DRIVELETTER 1028 +#define IDC_REPORTOK 1029 +#define IDC_DISKSIZECLUSTERS 1030 +#define IDC_DISKCLUSTERSIZE 1031 +#define IDC_FILESYSTEM 1032 +#define IDC_WISECRACKS 1033 +#define IDC_VOLUMELABEL 1033 +#define IDC_VOLUMESERIAL 1034 +#define IDC_BYTES 1035 +#define IDC_KILOBYTES 1036 +#define IDC_RECOMMEND 1037 +#define IDC_FILESCOUNT 1038 +#define IDC_FILESSIZEBYTES 1039 +#define IDC_FILESSIZEONDISK 1040 +#define IDC_FILESSLACKBYTES 1041 +#define IDC_GIGABYTES 1043 +#define IDC_DISKFREEBYTES 1044 +#define IDC_MEGABYTES 1045 +#define IDC_FILESFRAGGED 1047 +#define IDC_DIRSCOUNT 1048 +#define IDC_AVERAGEFRAGS 1049 +#define ID_MAIN_HELP 1054 +#define IDC_PRIORITY_LIST 1057 + +// Next default values for new objects +// +#ifdef APSTUDIO_INVOKED +#ifndef APSTUDIO_READONLY_SYMBOLS +#define _APS_NEXT_RESOURCE_VALUE 118 +#define _APS_NEXT_COMMAND_VALUE 40001 +#define _APS_NEXT_CONTROL_VALUE 1058 +#define _APS_NEXT_SYMED_VALUE 101 +#endif +#endif diff --git a/modules/rosapps/applications/imagesoft/adjust.c b/modules/rosapps/applications/imagesoft/adjust.c index 9154692443d..90ca2bf3f8a 100644 --- a/modules/rosapps/applications/imagesoft/adjust.c +++ b/modules/rosapps/applications/imagesoft/adjust.c @@ -1,525 +1,525 @@ -#include - - -BOOL -DisplayBlackAndWhite(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap) -{ - BITMAPINFO bi; - BITMAP bitmap; - BOOL bRes; - DWORD Count = 0; - INT i, j; - PBYTE pBits; - RECT rc; - - GetObject(hBitmap, - sizeof(BITMAP), - &bitmap); - - /* Bitmap header */ - bi.bmiHeader.biSize = sizeof(bi.bmiHeader); - bi.bmiHeader.biWidth = bitmap.bmWidth; - bi.bmiHeader.biHeight = bitmap.bmHeight; - bi.bmiHeader.biPlanes = 1; - bi.bmiHeader.biBitCount = 32; - bi.bmiHeader.biCompression = BI_RGB; - bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; - bi.bmiHeader.biClrUsed = 0; - bi.bmiHeader.biClrImportant = 0; - - /* Buffer */ - pBits = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - if (!pBits) - return FALSE; - - /* get the bits from the original bitmap */ - bRes = GetDIBits(hdcMem, - hBitmap, - 0, - bitmap.bmHeight, - pBits, - &bi, - DIB_RGB_COLORS); - - for (i = 0; i < bitmap.bmHeight; i++) - { - for (j = 0; j < bitmap.bmWidth; j++) - { - DWORD Val = 0; - INT b, g, r; - - CopyMemory(&Val, - &pBits[Count], - 4); - - /* Get pixels in reverse order */ - b = GetRValue(Val); - g = GetGValue(Val); - r = GetBValue(Val); - - /* get the average color value */ - Val = (r + g + b) / 3; - - /* assign to RGB color */ - Val = RGB(Val, Val, Val); - CopyMemory(&pBits[Count], - &Val, - 4); - - Count+=4; - } - } - - /* Set the new pixel bits */ - SetDIBits(hdcMem, - hBitmap, - 0, - bRes, - pBits, - &bi, - DIB_RGB_COLORS); - - HeapFree(ProcessHeap, - 0, - pBits); - - GetClientRect(hwnd, - &rc); - - InvalidateRect(hwnd, - &rc, - FALSE); - - return TRUE; -} - - -BOOL -DisplayInvertedColors(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap) -{ - BITMAPINFO bi; - BITMAP bitmap; - BOOL bRes; - DWORD Count = 0; - INT i, j; - PBYTE pBits; - RECT rc; - - GetObject(hBitmap, - sizeof(BITMAP), - &bitmap); - - /* Bitmap header */ - bi.bmiHeader.biSize = sizeof(bi.bmiHeader); - bi.bmiHeader.biWidth = bitmap.bmWidth; - bi.bmiHeader.biHeight = bitmap.bmHeight; - bi.bmiHeader.biPlanes = 1; - bi.bmiHeader.biBitCount = 32; - bi.bmiHeader.biCompression = BI_RGB; - bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; - bi.bmiHeader.biClrUsed = 0; - bi.bmiHeader.biClrImportant = 0; - - /* Buffer */ - pBits = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - if (!pBits) - return FALSE; - - /* get the bits from the original bitmap */ - bRes = GetDIBits(hdcMem, - hBitmap, - 0, - bitmap.bmHeight, - pBits, - &bi, - DIB_RGB_COLORS); - - for (i = 0; i < bitmap.bmHeight; i++) - { - for (j = 0; j < bitmap.bmWidth; j++) - { - DWORD Val = 0; - INT b, g, r; - - CopyMemory(&Val, - &pBits[Count], - 4); - - b = 255 - GetRValue(Val); - g = 255 - GetGValue(Val); - r = 255 - GetBValue(Val); - - Val = RGB(b, g, r); - - CopyMemory(&pBits[Count], - &Val, - 4); - - Count+=4; - } - } - - /* Set the new pixel bits */ - SetDIBits(hdcMem, - hBitmap, - 0, - bRes, - pBits, - &bi, - DIB_RGB_COLORS); - - HeapFree(ProcessHeap, - 0, - pBits); - - GetClientRect(hwnd, - &rc); - - InvalidateRect(hwnd, - &rc, - FALSE); - - return TRUE; -} - - - -BOOL -DisplayBlur(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap) -{ - BITMAPINFO bi; - BITMAP bitmap; - BOOL bRes; - DWORD Count = 0; - INT i, j; - PBYTE pBits, pBitsTemp; - RECT rc; - - GetObject(hBitmap, - sizeof(BITMAP), - &bitmap); - - /* Bitmap header */ - bi.bmiHeader.biSize = sizeof(bi.bmiHeader); - bi.bmiHeader.biWidth = bitmap.bmWidth; - bi.bmiHeader.biHeight = bitmap.bmHeight; - bi.bmiHeader.biPlanes = 1; - bi.bmiHeader.biBitCount = 32; - bi.bmiHeader.biCompression = BI_RGB; - bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; - bi.bmiHeader.biClrUsed = 0; - bi.bmiHeader.biClrImportant = 0; - - /* Buffer */ - pBits = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - pBitsTemp = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - if (!pBits || !pBitsTemp) - return FALSE; - - /* get the bits from the original bitmap */ - bRes = GetDIBits(hdcMem, - hBitmap, - 0, - bitmap.bmHeight, - pBits, - &bi, - DIB_RGB_COLORS); - - for (i = 0; i < bitmap.bmHeight; i++) - { - for (j = 0; j < bitmap.bmWidth; j++) - { - LONG Val = 0; - INT b, g, r; - INT c1, c2, c3, c4, c5; - - CopyMemory(&Val, - &pBits[Count], - 4); - - b = GetRValue(Val); - g = GetGValue(Val); - r = GetBValue(Val); - - c1 = r; - /* Red */ - if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && - (Count > (bitmap.bmWidth * 4lu))) - { - CopyMemory(&Val, &pBits[Count - (bitmap.bmWidth * 4)], 4); - c2 = GetBValue(Val); - - CopyMemory(&Val, &pBits[Count + 4], 4); - c3 = GetBValue(Val); - - CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4))], 4); - c4 = GetBValue(Val); - - CopyMemory(&Val, &pBits[Count - 4], 4); - c5 = GetBValue(Val); - - r = (c1 + c2 + c3 + c4 + c5) / 5; - } - - /* Green */ - c1 = g; - if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && - (Count > (bitmap.bmWidth * 4lu))) - { - CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4lu))], 4); - c2 = GetGValue(Val); - - CopyMemory(&Val, &pBits[Count + 4], 4); - c3 = GetGValue(Val); - - CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4lu))], 4); - c4 = GetGValue(Val); - - CopyMemory(&Val, &pBits[Count-4], 4); - c5 = GetGValue(Val); - - g = (c1 + c2 + c3 + c4 + c5) / 5; - } - - /* Blue */ - c1 = b; - if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && - (Count > (bitmap.bmWidth * 4lu))) - { - CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4l))], 4); - c2 = GetRValue(Val); - - CopyMemory(&Val, &pBits[Count + 4], 4); - c3 = GetRValue(Val); - - CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4l))], 4); - c4 = GetRValue(Val); - - CopyMemory(&Val, &pBits[Count-4], 4); - c5 = GetRValue(Val); - - b = (c1 + c2 + c3 + c4 + c5) / 5; - } - - Val = RGB(b, g, r); - - CopyMemory(&pBitsTemp[Count], - &Val, - 4); - - Count+=4; - } - } - - /* Set the new pixel bits */ - SetDIBits(hdcMem, - hBitmap, - 0, - bRes, - pBitsTemp, - &bi, - DIB_RGB_COLORS); - - HeapFree(ProcessHeap, - 0, - pBits); - HeapFree(ProcessHeap, - 0, - pBitsTemp); - - GetClientRect(hwnd, - &rc); - - InvalidateRect(hwnd, - &rc, - FALSE); - - return TRUE; -} - - - -BOOL -DisplaySharpness(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap) -{ - BITMAPINFO bi; - BITMAP bitmap; - BOOL bRes; - DWORD Count = 0; - INT i, j; - PBYTE pBits, pBitsTemp; - RECT rc; - - GetObject(hBitmap, - sizeof(BITMAP), - &bitmap); - - /* Bitmap header */ - bi.bmiHeader.biSize = sizeof(bi.bmiHeader); - bi.bmiHeader.biWidth = bitmap.bmWidth; - bi.bmiHeader.biHeight = bitmap.bmHeight; - bi.bmiHeader.biPlanes = 1; - bi.bmiHeader.biBitCount = 32; - bi.bmiHeader.biCompression = BI_RGB; - bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; - bi.bmiHeader.biClrUsed = 0; - bi.bmiHeader.biClrImportant = 0; - - /* Buffer */ - pBits = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - pBitsTemp = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - if (!pBits || !pBitsTemp) - return FALSE; - - /* get the bits from the original bitmap */ - bRes = GetDIBits(hdcMem, - hBitmap, - 0, - bitmap.bmHeight, - pBits, - &bi, - DIB_RGB_COLORS); - - for (i = 0; i < bitmap.bmHeight; i++) - { - for (j = 0; j < bitmap.bmWidth; j++) - { - LONG Val = 0; - INT b, g, r; - INT c1, c2, c3, c4, c5; - - CopyMemory(&Val, - &pBits[Count], - 4); - - b = GetRValue(Val); - g = GetGValue(Val); - r = GetBValue(Val); - - c1 = r; - /* Red */ - if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && - (Count > (bitmap.bmWidth * 4lu))) - { - CopyMemory(&Val, &pBits[Count - (bitmap.bmWidth * 4l)], 4); - c2 = GetBValue(Val); - - CopyMemory(&Val, &pBits[Count + 4], 4); - c3 = GetBValue(Val); - - CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4l))], 4); - c4 = GetBValue(Val); - - CopyMemory(&Val, &pBits[Count - 4], 4); - c5 = GetBValue(Val); - - r = (c1 * 5) - (c2 + c3 + c4 + c5); - } - - /* Green */ - c1 = g; - if ((Count < ((bitmap.bmHeight - 1)* bitmap.bmWidth * 4lu)) && - (Count > (bitmap.bmWidth * 4lu))) - { - CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4l))], 4); - c2 = GetGValue(Val); - - CopyMemory(&Val, &pBits[Count + 4], 4); - c3 = GetGValue(Val); - - CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4l))], 4); - c4 = GetGValue(Val); - - CopyMemory(&Val, &pBits[Count - 4], 4); - c5 = GetGValue(Val); - - g = (c1 * 5) - (c2 + c3 + c4 + c5); - } - - /* Blue */ - c1 = b; - if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && - (Count > (bitmap.bmWidth * 4lu))) - { - CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4l))], 4); - c2 = GetRValue(Val); - - CopyMemory(&Val, &pBits[Count + 4], 4); - c3 = GetRValue(Val); - - CopyMemory(&Val, &pBits[(Count+(bitmap.bmWidth * 4l))], 4); - c4 = GetRValue(Val); - - CopyMemory(&Val, &pBits[Count - 4], 4); - c5 = GetRValue(Val); - - b = (c1 * 5) - (c2 + c3 + c4 + c5); - } - - /* Red */ - if (r > 255) r = 255; - if (r < 0) r = 0; - - /* Green */ - if (g > 255) g = 255; - if (g < 0)g = 0; - - /* Blue */ - if (b > 255) b = 255; - if (b < 0) b = 0; - - Val = RGB(b, g, r); - - CopyMemory(&pBitsTemp[Count], - &Val, - 4); - - Count+=4; - } - } - - /* Set the new pixel bits */ - SetDIBits(hdcMem, - hBitmap, - 0, - bRes, - pBitsTemp, - &bi, - DIB_RGB_COLORS); - - HeapFree(ProcessHeap, - 0, - pBits); - HeapFree(ProcessHeap, - 0, - pBitsTemp); - - GetClientRect(hwnd, - &rc); - - InvalidateRect(hwnd, - &rc, - FALSE); - - return TRUE; -} +#include + + +BOOL +DisplayBlackAndWhite(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap) +{ + BITMAPINFO bi; + BITMAP bitmap; + BOOL bRes; + DWORD Count = 0; + INT i, j; + PBYTE pBits; + RECT rc; + + GetObject(hBitmap, + sizeof(BITMAP), + &bitmap); + + /* Bitmap header */ + bi.bmiHeader.biSize = sizeof(bi.bmiHeader); + bi.bmiHeader.biWidth = bitmap.bmWidth; + bi.bmiHeader.biHeight = bitmap.bmHeight; + bi.bmiHeader.biPlanes = 1; + bi.bmiHeader.biBitCount = 32; + bi.bmiHeader.biCompression = BI_RGB; + bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; + bi.bmiHeader.biClrUsed = 0; + bi.bmiHeader.biClrImportant = 0; + + /* Buffer */ + pBits = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + if (!pBits) + return FALSE; + + /* get the bits from the original bitmap */ + bRes = GetDIBits(hdcMem, + hBitmap, + 0, + bitmap.bmHeight, + pBits, + &bi, + DIB_RGB_COLORS); + + for (i = 0; i < bitmap.bmHeight; i++) + { + for (j = 0; j < bitmap.bmWidth; j++) + { + DWORD Val = 0; + INT b, g, r; + + CopyMemory(&Val, + &pBits[Count], + 4); + + /* Get pixels in reverse order */ + b = GetRValue(Val); + g = GetGValue(Val); + r = GetBValue(Val); + + /* get the average color value */ + Val = (r + g + b) / 3; + + /* assign to RGB color */ + Val = RGB(Val, Val, Val); + CopyMemory(&pBits[Count], + &Val, + 4); + + Count+=4; + } + } + + /* Set the new pixel bits */ + SetDIBits(hdcMem, + hBitmap, + 0, + bRes, + pBits, + &bi, + DIB_RGB_COLORS); + + HeapFree(ProcessHeap, + 0, + pBits); + + GetClientRect(hwnd, + &rc); + + InvalidateRect(hwnd, + &rc, + FALSE); + + return TRUE; +} + + +BOOL +DisplayInvertedColors(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap) +{ + BITMAPINFO bi; + BITMAP bitmap; + BOOL bRes; + DWORD Count = 0; + INT i, j; + PBYTE pBits; + RECT rc; + + GetObject(hBitmap, + sizeof(BITMAP), + &bitmap); + + /* Bitmap header */ + bi.bmiHeader.biSize = sizeof(bi.bmiHeader); + bi.bmiHeader.biWidth = bitmap.bmWidth; + bi.bmiHeader.biHeight = bitmap.bmHeight; + bi.bmiHeader.biPlanes = 1; + bi.bmiHeader.biBitCount = 32; + bi.bmiHeader.biCompression = BI_RGB; + bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; + bi.bmiHeader.biClrUsed = 0; + bi.bmiHeader.biClrImportant = 0; + + /* Buffer */ + pBits = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + if (!pBits) + return FALSE; + + /* get the bits from the original bitmap */ + bRes = GetDIBits(hdcMem, + hBitmap, + 0, + bitmap.bmHeight, + pBits, + &bi, + DIB_RGB_COLORS); + + for (i = 0; i < bitmap.bmHeight; i++) + { + for (j = 0; j < bitmap.bmWidth; j++) + { + DWORD Val = 0; + INT b, g, r; + + CopyMemory(&Val, + &pBits[Count], + 4); + + b = 255 - GetRValue(Val); + g = 255 - GetGValue(Val); + r = 255 - GetBValue(Val); + + Val = RGB(b, g, r); + + CopyMemory(&pBits[Count], + &Val, + 4); + + Count+=4; + } + } + + /* Set the new pixel bits */ + SetDIBits(hdcMem, + hBitmap, + 0, + bRes, + pBits, + &bi, + DIB_RGB_COLORS); + + HeapFree(ProcessHeap, + 0, + pBits); + + GetClientRect(hwnd, + &rc); + + InvalidateRect(hwnd, + &rc, + FALSE); + + return TRUE; +} + + + +BOOL +DisplayBlur(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap) +{ + BITMAPINFO bi; + BITMAP bitmap; + BOOL bRes; + DWORD Count = 0; + INT i, j; + PBYTE pBits, pBitsTemp; + RECT rc; + + GetObject(hBitmap, + sizeof(BITMAP), + &bitmap); + + /* Bitmap header */ + bi.bmiHeader.biSize = sizeof(bi.bmiHeader); + bi.bmiHeader.biWidth = bitmap.bmWidth; + bi.bmiHeader.biHeight = bitmap.bmHeight; + bi.bmiHeader.biPlanes = 1; + bi.bmiHeader.biBitCount = 32; + bi.bmiHeader.biCompression = BI_RGB; + bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; + bi.bmiHeader.biClrUsed = 0; + bi.bmiHeader.biClrImportant = 0; + + /* Buffer */ + pBits = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + pBitsTemp = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + if (!pBits || !pBitsTemp) + return FALSE; + + /* get the bits from the original bitmap */ + bRes = GetDIBits(hdcMem, + hBitmap, + 0, + bitmap.bmHeight, + pBits, + &bi, + DIB_RGB_COLORS); + + for (i = 0; i < bitmap.bmHeight; i++) + { + for (j = 0; j < bitmap.bmWidth; j++) + { + LONG Val = 0; + INT b, g, r; + INT c1, c2, c3, c4, c5; + + CopyMemory(&Val, + &pBits[Count], + 4); + + b = GetRValue(Val); + g = GetGValue(Val); + r = GetBValue(Val); + + c1 = r; + /* Red */ + if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && + (Count > (bitmap.bmWidth * 4lu))) + { + CopyMemory(&Val, &pBits[Count - (bitmap.bmWidth * 4)], 4); + c2 = GetBValue(Val); + + CopyMemory(&Val, &pBits[Count + 4], 4); + c3 = GetBValue(Val); + + CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4))], 4); + c4 = GetBValue(Val); + + CopyMemory(&Val, &pBits[Count - 4], 4); + c5 = GetBValue(Val); + + r = (c1 + c2 + c3 + c4 + c5) / 5; + } + + /* Green */ + c1 = g; + if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && + (Count > (bitmap.bmWidth * 4lu))) + { + CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4lu))], 4); + c2 = GetGValue(Val); + + CopyMemory(&Val, &pBits[Count + 4], 4); + c3 = GetGValue(Val); + + CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4lu))], 4); + c4 = GetGValue(Val); + + CopyMemory(&Val, &pBits[Count-4], 4); + c5 = GetGValue(Val); + + g = (c1 + c2 + c3 + c4 + c5) / 5; + } + + /* Blue */ + c1 = b; + if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && + (Count > (bitmap.bmWidth * 4lu))) + { + CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4l))], 4); + c2 = GetRValue(Val); + + CopyMemory(&Val, &pBits[Count + 4], 4); + c3 = GetRValue(Val); + + CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4l))], 4); + c4 = GetRValue(Val); + + CopyMemory(&Val, &pBits[Count-4], 4); + c5 = GetRValue(Val); + + b = (c1 + c2 + c3 + c4 + c5) / 5; + } + + Val = RGB(b, g, r); + + CopyMemory(&pBitsTemp[Count], + &Val, + 4); + + Count+=4; + } + } + + /* Set the new pixel bits */ + SetDIBits(hdcMem, + hBitmap, + 0, + bRes, + pBitsTemp, + &bi, + DIB_RGB_COLORS); + + HeapFree(ProcessHeap, + 0, + pBits); + HeapFree(ProcessHeap, + 0, + pBitsTemp); + + GetClientRect(hwnd, + &rc); + + InvalidateRect(hwnd, + &rc, + FALSE); + + return TRUE; +} + + + +BOOL +DisplaySharpness(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap) +{ + BITMAPINFO bi; + BITMAP bitmap; + BOOL bRes; + DWORD Count = 0; + INT i, j; + PBYTE pBits, pBitsTemp; + RECT rc; + + GetObject(hBitmap, + sizeof(BITMAP), + &bitmap); + + /* Bitmap header */ + bi.bmiHeader.biSize = sizeof(bi.bmiHeader); + bi.bmiHeader.biWidth = bitmap.bmWidth; + bi.bmiHeader.biHeight = bitmap.bmHeight; + bi.bmiHeader.biPlanes = 1; + bi.bmiHeader.biBitCount = 32; + bi.bmiHeader.biCompression = BI_RGB; + bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; + bi.bmiHeader.biClrUsed = 0; + bi.bmiHeader.biClrImportant = 0; + + /* Buffer */ + pBits = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + pBitsTemp = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + if (!pBits || !pBitsTemp) + return FALSE; + + /* get the bits from the original bitmap */ + bRes = GetDIBits(hdcMem, + hBitmap, + 0, + bitmap.bmHeight, + pBits, + &bi, + DIB_RGB_COLORS); + + for (i = 0; i < bitmap.bmHeight; i++) + { + for (j = 0; j < bitmap.bmWidth; j++) + { + LONG Val = 0; + INT b, g, r; + INT c1, c2, c3, c4, c5; + + CopyMemory(&Val, + &pBits[Count], + 4); + + b = GetRValue(Val); + g = GetGValue(Val); + r = GetBValue(Val); + + c1 = r; + /* Red */ + if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && + (Count > (bitmap.bmWidth * 4lu))) + { + CopyMemory(&Val, &pBits[Count - (bitmap.bmWidth * 4l)], 4); + c2 = GetBValue(Val); + + CopyMemory(&Val, &pBits[Count + 4], 4); + c3 = GetBValue(Val); + + CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4l))], 4); + c4 = GetBValue(Val); + + CopyMemory(&Val, &pBits[Count - 4], 4); + c5 = GetBValue(Val); + + r = (c1 * 5) - (c2 + c3 + c4 + c5); + } + + /* Green */ + c1 = g; + if ((Count < ((bitmap.bmHeight - 1)* bitmap.bmWidth * 4lu)) && + (Count > (bitmap.bmWidth * 4lu))) + { + CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4l))], 4); + c2 = GetGValue(Val); + + CopyMemory(&Val, &pBits[Count + 4], 4); + c3 = GetGValue(Val); + + CopyMemory(&Val, &pBits[(Count + (bitmap.bmWidth * 4l))], 4); + c4 = GetGValue(Val); + + CopyMemory(&Val, &pBits[Count - 4], 4); + c5 = GetGValue(Val); + + g = (c1 * 5) - (c2 + c3 + c4 + c5); + } + + /* Blue */ + c1 = b; + if ((Count < ((bitmap.bmHeight - 1) * bitmap.bmWidth * 4lu)) && + (Count > (bitmap.bmWidth * 4lu))) + { + CopyMemory(&Val, &pBits[(Count - (bitmap.bmWidth * 4l))], 4); + c2 = GetRValue(Val); + + CopyMemory(&Val, &pBits[Count + 4], 4); + c3 = GetRValue(Val); + + CopyMemory(&Val, &pBits[(Count+(bitmap.bmWidth * 4l))], 4); + c4 = GetRValue(Val); + + CopyMemory(&Val, &pBits[Count - 4], 4); + c5 = GetRValue(Val); + + b = (c1 * 5) - (c2 + c3 + c4 + c5); + } + + /* Red */ + if (r > 255) r = 255; + if (r < 0) r = 0; + + /* Green */ + if (g > 255) g = 255; + if (g < 0)g = 0; + + /* Blue */ + if (b > 255) b = 255; + if (b < 0) b = 0; + + Val = RGB(b, g, r); + + CopyMemory(&pBitsTemp[Count], + &Val, + 4); + + Count+=4; + } + } + + /* Set the new pixel bits */ + SetDIBits(hdcMem, + hBitmap, + 0, + bRes, + pBitsTemp, + &bi, + DIB_RGB_COLORS); + + HeapFree(ProcessHeap, + 0, + pBits); + HeapFree(ProcessHeap, + 0, + pBitsTemp); + + GetClientRect(hwnd, + &rc); + + InvalidateRect(hwnd, + &rc, + FALSE); + + return TRUE; +} diff --git a/modules/rosapps/applications/imagesoft/brightness.c b/modules/rosapps/applications/imagesoft/brightness.c index 59b2398f33c..265237ea446 100644 --- a/modules/rosapps/applications/imagesoft/brightness.c +++ b/modules/rosapps/applications/imagesoft/brightness.c @@ -1,379 +1,379 @@ -#include "precomp.h" - -#define BASECOLOUR 100 - - -VOID -AdjustBrightness(HBITMAP hOrigBitmap, - HBITMAP hNewBitmap, - HWND hwnd, - HDC hdcMem, - INT RedVal, - INT GreenVal, - INT BlueVal) -{ - BITMAPINFO bi; - BITMAP bitmap; - BOOL bRes; - DWORD Count = 0; - INT i, j; - PBYTE pBits; - RECT rc; - - GetObject(hNewBitmap, - sizeof(BITMAP), - &bitmap); - - /* Bitmap header */ - bi.bmiHeader.biSize = sizeof(bi.bmiHeader); - bi.bmiHeader.biWidth = bitmap.bmWidth; - bi.bmiHeader.biHeight = bitmap.bmHeight; - bi.bmiHeader.biPlanes = 1; - bi.bmiHeader.biBitCount = 32; - bi.bmiHeader.biCompression = BI_RGB; - bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; - bi.bmiHeader.biClrUsed = 0; - bi.bmiHeader.biClrImportant = 0; - - /* Buffer */ - pBits = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - if (!pBits) - return; - - /* get the bits from the original bitmap */ - bRes = GetDIBits(hdcMem, - hOrigBitmap, - 0, - bitmap.bmHeight, - pBits, - &bi, - DIB_RGB_COLORS); - - for (i = 0; i < bitmap.bmHeight; i++) - { - for (j = 0; j < bitmap.bmWidth; j++) - { - DWORD Val = 0; - INT b, g, r; - - CopyMemory(&Val, - &pBits[Count], - 4); - - /* Get pixels in reverse order */ - b = GetRValue(Val); - g = GetGValue(Val); - r = GetBValue(Val); - - /* Red */ - r += RedVal; - if (r > 255) r = 255; - else if (r < 0) r = 0; - - /* Green */ - g += GreenVal; - if (g > 255) g = 255; - else if (g < 0) g = 0; - - /* Blue */ - b += BlueVal; - if (b > 255) b = 255; - else if (b < 0) b = 0; - - /* Store in reverse order */ - Val = RGB(b, g, r); - CopyMemory(&pBits[Count], - &Val, - 4); - - /* RGB color take 4 bytes.The high-order byte must be zero */ - Count += 4; - } - } - - /* Set the new pixel bits */ - SetDIBits(hdcMem, - hNewBitmap, - 0, - bRes, - pBits, - &bi, - DIB_RGB_COLORS); - - HeapFree(ProcessHeap, - 0, - pBits); - - GetClientRect(hwnd, - &rc); - - InvalidateRect(hwnd, - &rc, - FALSE); -} - - -static PIMAGEADJUST -Bri_OnInitDialog(PIMAGEADJUST pImgAdj, - HWND hDlg, - LPARAM lParam) -{ - pImgAdj = (IMAGEADJUST*) HeapAlloc(ProcessHeap, - 0, - sizeof(IMAGEADJUST)); - if (!pImgAdj) - return NULL; - - - pImgAdj->Info = (PMAIN_WND_INFO)lParam; - if (!pImgAdj->Info->ImageEditors) - goto fail; - - - pImgAdj->hPicPrev = GetDlgItem(hDlg, IDC_PICPREVIEW); - GetClientRect(pImgAdj->hPicPrev, - &pImgAdj->ImageRect); - - /* Make a static copy of the main image */ - pImgAdj->hBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, - IMAGE_BITMAP, - pImgAdj->ImageRect.right, - pImgAdj->ImageRect.bottom, - LR_CREATEDIBSECTION); - if (!pImgAdj->hBitmap) - goto fail; - - /* Make a copy which will be updated */ - pImgAdj->hPreviewBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, - IMAGE_BITMAP, - pImgAdj->ImageRect.right, - pImgAdj->ImageRect.bottom, - LR_CREATEDIBSECTION); - if (!pImgAdj->hPreviewBitmap) - goto fail; - - - pImgAdj->RedVal = pImgAdj->BlueVal = pImgAdj->GreenVal = 0; - - /* setup dialog */ - SendDlgItemMessage(hDlg, - IDC_BRI_FULL, - BM_SETCHECK, - BST_CHECKED, - 0); - SendDlgItemMessage(hDlg, - IDC_BRI_TRACKBAR, - TBM_SETRANGE, - TRUE, - (LPARAM)MAKELONG(0, 200)); - SendDlgItemMessage(hDlg, - IDC_BRI_TRACKBAR, - TBM_SETPOS, - TRUE, - (LPARAM)BASECOLOUR); - SetDlgItemText(hDlg, - IDC_BRI_EDIT, - _T("100")); - - return pImgAdj; - -fail: - HeapFree(ProcessHeap, - 0, - pImgAdj); - return NULL; -} - - -static VOID -Bri_OnDrawItem(PIMAGEADJUST pImgAdj, - LPARAM lParam) -{ - LPDRAWITEMSTRUCT lpDrawItem; - HDC hdcMem; - - lpDrawItem = (LPDRAWITEMSTRUCT)lParam; - - hdcMem = CreateCompatibleDC(lpDrawItem->hDC); - - if(lpDrawItem->CtlID == IDC_PICPREVIEW) - { - SelectObject(hdcMem, - pImgAdj->hPreviewBitmap); - - BitBlt(lpDrawItem->hDC, - pImgAdj->ImageRect.left, - pImgAdj->ImageRect.top, - pImgAdj->ImageRect.right, - pImgAdj->ImageRect.bottom, - hdcMem, - 0, - 0, - SRCCOPY); - - DeleteDC(hdcMem); - } -} - - -static VOID -Bri_OnTrackBar(PIMAGEADJUST pImgAdj, - HWND hDlg) -{ - HDC hdcMem; - DWORD TrackPos; - - TrackPos = (DWORD)SendDlgItemMessage(hDlg, - IDC_BRI_TRACKBAR, - TBM_GETPOS, - 0, - 0); - - SetDlgItemInt(hDlg, - IDC_BRI_EDIT, - TrackPos, - FALSE); - - if (IsDlgButtonChecked(hDlg, IDC_BRI_FULL) == BST_CHECKED) - { - pImgAdj->RedVal = pImgAdj->GreenVal = pImgAdj->BlueVal = TrackPos - BASECOLOUR; - } - else if (IsDlgButtonChecked(hDlg, IDC_BRI_RED) == BST_CHECKED) - { - pImgAdj->RedVal = TrackPos - BASECOLOUR; - } - else if (IsDlgButtonChecked(hDlg, IDC_BRI_GREEN) == BST_CHECKED) - { - pImgAdj->GreenVal = TrackPos - BASECOLOUR; - } - else if (IsDlgButtonChecked(hDlg, IDC_BRI_BLUE) == BST_CHECKED) - { - pImgAdj->BlueVal = TrackPos - BASECOLOUR; - } - - hdcMem = GetDC(pImgAdj->hPicPrev); - - AdjustBrightness(pImgAdj->hBitmap, - pImgAdj->hPreviewBitmap, - pImgAdj->hPicPrev, - hdcMem, - pImgAdj->RedVal, - pImgAdj->GreenVal, - pImgAdj->BlueVal); - - ReleaseDC(pImgAdj->hPicPrev, hdcMem); -} - - -static BOOL -Bri_OnCommand(PIMAGEADJUST pImgAdj, - HWND hDlg, - UINT uID) -{ - switch (uID) - { - case IDOK: - { - HDC hdcMem; - - hdcMem = GetDC(pImgAdj->Info->ImageEditors->hSelf); - - AdjustBrightness(pImgAdj->Info->ImageEditors->hBitmap, - pImgAdj->Info->ImageEditors->hBitmap, - pImgAdj->Info->ImageEditors->hSelf, - hdcMem, - pImgAdj->RedVal, - pImgAdj->GreenVal, - pImgAdj->BlueVal); - - ReleaseDC(pImgAdj->Info->ImageEditors->hSelf, - hdcMem); - - EndDialog(hDlg, - uID); - - return TRUE; - } - - case IDCANCEL: - { - EndDialog(hDlg, - uID); - return TRUE; - } - } - - return FALSE; -} - - -INT_PTR CALLBACK -BrightnessProc(HWND hDlg, - UINT message, - WPARAM wParam, - LPARAM lParam) -{ - static PIMAGEADJUST pImgAdj = NULL; - - switch (message) - { - case WM_INITDIALOG: - { - pImgAdj = Bri_OnInitDialog(pImgAdj, - hDlg, - lParam); - if (!pImgAdj) - { - EndDialog(hDlg, -1); - return FALSE; - } - - return TRUE; - } - - case WM_DRAWITEM: - { - Bri_OnDrawItem(pImgAdj, - lParam); - return TRUE; - } - - case WM_HSCROLL: - { - if (LOWORD(wParam) == TB_THUMBTRACK || - LOWORD(wParam) == TB_ENDTRACK) - { - Bri_OnTrackBar(pImgAdj, - hDlg); - } - - return TRUE; - } - - case WM_COMMAND: - { - return Bri_OnCommand(pImgAdj, - hDlg, - LOWORD(wParam)); - } - - case WM_DESTROY: - { - if (pImgAdj) - { - if (pImgAdj->hBitmap) - DeleteObject(pImgAdj->hBitmap); - if (pImgAdj->hPreviewBitmap) - DeleteObject(pImgAdj->hPreviewBitmap); - - HeapFree(ProcessHeap, - 0, - pImgAdj); - } - } - } - - return FALSE; -} +#include "precomp.h" + +#define BASECOLOUR 100 + + +VOID +AdjustBrightness(HBITMAP hOrigBitmap, + HBITMAP hNewBitmap, + HWND hwnd, + HDC hdcMem, + INT RedVal, + INT GreenVal, + INT BlueVal) +{ + BITMAPINFO bi; + BITMAP bitmap; + BOOL bRes; + DWORD Count = 0; + INT i, j; + PBYTE pBits; + RECT rc; + + GetObject(hNewBitmap, + sizeof(BITMAP), + &bitmap); + + /* Bitmap header */ + bi.bmiHeader.biSize = sizeof(bi.bmiHeader); + bi.bmiHeader.biWidth = bitmap.bmWidth; + bi.bmiHeader.biHeight = bitmap.bmHeight; + bi.bmiHeader.biPlanes = 1; + bi.bmiHeader.biBitCount = 32; + bi.bmiHeader.biCompression = BI_RGB; + bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; + bi.bmiHeader.biClrUsed = 0; + bi.bmiHeader.biClrImportant = 0; + + /* Buffer */ + pBits = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + if (!pBits) + return; + + /* get the bits from the original bitmap */ + bRes = GetDIBits(hdcMem, + hOrigBitmap, + 0, + bitmap.bmHeight, + pBits, + &bi, + DIB_RGB_COLORS); + + for (i = 0; i < bitmap.bmHeight; i++) + { + for (j = 0; j < bitmap.bmWidth; j++) + { + DWORD Val = 0; + INT b, g, r; + + CopyMemory(&Val, + &pBits[Count], + 4); + + /* Get pixels in reverse order */ + b = GetRValue(Val); + g = GetGValue(Val); + r = GetBValue(Val); + + /* Red */ + r += RedVal; + if (r > 255) r = 255; + else if (r < 0) r = 0; + + /* Green */ + g += GreenVal; + if (g > 255) g = 255; + else if (g < 0) g = 0; + + /* Blue */ + b += BlueVal; + if (b > 255) b = 255; + else if (b < 0) b = 0; + + /* Store in reverse order */ + Val = RGB(b, g, r); + CopyMemory(&pBits[Count], + &Val, + 4); + + /* RGB color take 4 bytes.The high-order byte must be zero */ + Count += 4; + } + } + + /* Set the new pixel bits */ + SetDIBits(hdcMem, + hNewBitmap, + 0, + bRes, + pBits, + &bi, + DIB_RGB_COLORS); + + HeapFree(ProcessHeap, + 0, + pBits); + + GetClientRect(hwnd, + &rc); + + InvalidateRect(hwnd, + &rc, + FALSE); +} + + +static PIMAGEADJUST +Bri_OnInitDialog(PIMAGEADJUST pImgAdj, + HWND hDlg, + LPARAM lParam) +{ + pImgAdj = (IMAGEADJUST*) HeapAlloc(ProcessHeap, + 0, + sizeof(IMAGEADJUST)); + if (!pImgAdj) + return NULL; + + + pImgAdj->Info = (PMAIN_WND_INFO)lParam; + if (!pImgAdj->Info->ImageEditors) + goto fail; + + + pImgAdj->hPicPrev = GetDlgItem(hDlg, IDC_PICPREVIEW); + GetClientRect(pImgAdj->hPicPrev, + &pImgAdj->ImageRect); + + /* Make a static copy of the main image */ + pImgAdj->hBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, + IMAGE_BITMAP, + pImgAdj->ImageRect.right, + pImgAdj->ImageRect.bottom, + LR_CREATEDIBSECTION); + if (!pImgAdj->hBitmap) + goto fail; + + /* Make a copy which will be updated */ + pImgAdj->hPreviewBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, + IMAGE_BITMAP, + pImgAdj->ImageRect.right, + pImgAdj->ImageRect.bottom, + LR_CREATEDIBSECTION); + if (!pImgAdj->hPreviewBitmap) + goto fail; + + + pImgAdj->RedVal = pImgAdj->BlueVal = pImgAdj->GreenVal = 0; + + /* setup dialog */ + SendDlgItemMessage(hDlg, + IDC_BRI_FULL, + BM_SETCHECK, + BST_CHECKED, + 0); + SendDlgItemMessage(hDlg, + IDC_BRI_TRACKBAR, + TBM_SETRANGE, + TRUE, + (LPARAM)MAKELONG(0, 200)); + SendDlgItemMessage(hDlg, + IDC_BRI_TRACKBAR, + TBM_SETPOS, + TRUE, + (LPARAM)BASECOLOUR); + SetDlgItemText(hDlg, + IDC_BRI_EDIT, + _T("100")); + + return pImgAdj; + +fail: + HeapFree(ProcessHeap, + 0, + pImgAdj); + return NULL; +} + + +static VOID +Bri_OnDrawItem(PIMAGEADJUST pImgAdj, + LPARAM lParam) +{ + LPDRAWITEMSTRUCT lpDrawItem; + HDC hdcMem; + + lpDrawItem = (LPDRAWITEMSTRUCT)lParam; + + hdcMem = CreateCompatibleDC(lpDrawItem->hDC); + + if(lpDrawItem->CtlID == IDC_PICPREVIEW) + { + SelectObject(hdcMem, + pImgAdj->hPreviewBitmap); + + BitBlt(lpDrawItem->hDC, + pImgAdj->ImageRect.left, + pImgAdj->ImageRect.top, + pImgAdj->ImageRect.right, + pImgAdj->ImageRect.bottom, + hdcMem, + 0, + 0, + SRCCOPY); + + DeleteDC(hdcMem); + } +} + + +static VOID +Bri_OnTrackBar(PIMAGEADJUST pImgAdj, + HWND hDlg) +{ + HDC hdcMem; + DWORD TrackPos; + + TrackPos = (DWORD)SendDlgItemMessage(hDlg, + IDC_BRI_TRACKBAR, + TBM_GETPOS, + 0, + 0); + + SetDlgItemInt(hDlg, + IDC_BRI_EDIT, + TrackPos, + FALSE); + + if (IsDlgButtonChecked(hDlg, IDC_BRI_FULL) == BST_CHECKED) + { + pImgAdj->RedVal = pImgAdj->GreenVal = pImgAdj->BlueVal = TrackPos - BASECOLOUR; + } + else if (IsDlgButtonChecked(hDlg, IDC_BRI_RED) == BST_CHECKED) + { + pImgAdj->RedVal = TrackPos - BASECOLOUR; + } + else if (IsDlgButtonChecked(hDlg, IDC_BRI_GREEN) == BST_CHECKED) + { + pImgAdj->GreenVal = TrackPos - BASECOLOUR; + } + else if (IsDlgButtonChecked(hDlg, IDC_BRI_BLUE) == BST_CHECKED) + { + pImgAdj->BlueVal = TrackPos - BASECOLOUR; + } + + hdcMem = GetDC(pImgAdj->hPicPrev); + + AdjustBrightness(pImgAdj->hBitmap, + pImgAdj->hPreviewBitmap, + pImgAdj->hPicPrev, + hdcMem, + pImgAdj->RedVal, + pImgAdj->GreenVal, + pImgAdj->BlueVal); + + ReleaseDC(pImgAdj->hPicPrev, hdcMem); +} + + +static BOOL +Bri_OnCommand(PIMAGEADJUST pImgAdj, + HWND hDlg, + UINT uID) +{ + switch (uID) + { + case IDOK: + { + HDC hdcMem; + + hdcMem = GetDC(pImgAdj->Info->ImageEditors->hSelf); + + AdjustBrightness(pImgAdj->Info->ImageEditors->hBitmap, + pImgAdj->Info->ImageEditors->hBitmap, + pImgAdj->Info->ImageEditors->hSelf, + hdcMem, + pImgAdj->RedVal, + pImgAdj->GreenVal, + pImgAdj->BlueVal); + + ReleaseDC(pImgAdj->Info->ImageEditors->hSelf, + hdcMem); + + EndDialog(hDlg, + uID); + + return TRUE; + } + + case IDCANCEL: + { + EndDialog(hDlg, + uID); + return TRUE; + } + } + + return FALSE; +} + + +INT_PTR CALLBACK +BrightnessProc(HWND hDlg, + UINT message, + WPARAM wParam, + LPARAM lParam) +{ + static PIMAGEADJUST pImgAdj = NULL; + + switch (message) + { + case WM_INITDIALOG: + { + pImgAdj = Bri_OnInitDialog(pImgAdj, + hDlg, + lParam); + if (!pImgAdj) + { + EndDialog(hDlg, -1); + return FALSE; + } + + return TRUE; + } + + case WM_DRAWITEM: + { + Bri_OnDrawItem(pImgAdj, + lParam); + return TRUE; + } + + case WM_HSCROLL: + { + if (LOWORD(wParam) == TB_THUMBTRACK || + LOWORD(wParam) == TB_ENDTRACK) + { + Bri_OnTrackBar(pImgAdj, + hDlg); + } + + return TRUE; + } + + case WM_COMMAND: + { + return Bri_OnCommand(pImgAdj, + hDlg, + LOWORD(wParam)); + } + + case WM_DESTROY: + { + if (pImgAdj) + { + if (pImgAdj->hBitmap) + DeleteObject(pImgAdj->hBitmap); + if (pImgAdj->hPreviewBitmap) + DeleteObject(pImgAdj->hPreviewBitmap); + + HeapFree(ProcessHeap, + 0, + pImgAdj); + } + } + } + + return FALSE; +} diff --git a/modules/rosapps/applications/imagesoft/contrast.c b/modules/rosapps/applications/imagesoft/contrast.c index aaa1933ff49..7a885358d99 100644 --- a/modules/rosapps/applications/imagesoft/contrast.c +++ b/modules/rosapps/applications/imagesoft/contrast.c @@ -1,380 +1,380 @@ -#include "precomp.h" - -#define BASECOLOUR 100 - - -VOID -AdjustContrast(HBITMAP hOrigBitmap, - HBITMAP hNewBitmap, - HWND hwnd, - HDC hdcMem, - INT RedVal, - INT GreenVal, - INT BlueVal) -{ - BITMAPINFO bi; - BITMAP bitmap; - BOOL bRes; - DWORD Count = 0; - INT i, j; - PBYTE pBits; - RECT rc; - - GetObject(hNewBitmap, - sizeof(BITMAP), - &bitmap); - - /* Bitmap header */ - bi.bmiHeader.biSize = sizeof(bi.bmiHeader); - bi.bmiHeader.biWidth = bitmap.bmWidth; - bi.bmiHeader.biHeight = bitmap.bmHeight; - bi.bmiHeader.biPlanes = 1; - bi.bmiHeader.biBitCount = 32; - bi.bmiHeader.biCompression = BI_RGB; - bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; - bi.bmiHeader.biClrUsed = 0; - bi.bmiHeader.biClrImportant = 0; - - /* Buffer */ - pBits = (PBYTE)HeapAlloc(ProcessHeap, - 0, - bitmap.bmWidth * bitmap.bmHeight * 4); - if (!pBits) - return; - - /* get the bits from the original bitmap */ - bRes = GetDIBits(hdcMem, - hOrigBitmap, - 0, - bitmap.bmHeight, - pBits, - &bi, - DIB_RGB_COLORS); - - for (i = 0; i < bitmap.bmHeight; i++) - { - for (j = 0; j < bitmap.bmWidth; j++) - { - DWORD Val = 0; - INT b, g, r; - - CopyMemory(&Val, - &pBits[Count], - 4); - - /* Get pixels in reverse order */ - b = GetRValue(Val); - g = GetGValue(Val); - r = GetBValue(Val); - - r = ((r - 128) * RedVal) / 100 + 128; - g = ((g - 128) * GreenVal) / 100 + 128; - b = ((b - 128) * BlueVal) / 100 + 128; - - /* Red */ - if (r > 255) r = 255; - else if (r < 0) r = 0; - - /* Green */ - if (g > 255) g = 255; - else if (g < 0) g = 0; - - /* Blue */ - if (b > 255) b = 255; - else if (b < 0) b = 0; - - /* Store in reverse order */ - Val = RGB(b, g, r); - CopyMemory(&pBits[Count], - &Val, - 4); - - /* RGB color take 4 bytes.The high-order byte must be zero */ - Count += 4; - } - } - - /* Set the new pixel bits */ - SetDIBits(hdcMem, - hNewBitmap, - 0, - bRes, - pBits, - &bi, - DIB_RGB_COLORS); - - HeapFree(ProcessHeap, - 0, - pBits); - - GetClientRect(hwnd, - &rc); - - InvalidateRect(hwnd, - &rc, - FALSE); -} - - -static PIMAGEADJUST -Cont_OnInitDialog(PIMAGEADJUST pImgAdj, - HWND hDlg, - LPARAM lParam) -{ - pImgAdj = (IMAGEADJUST*) HeapAlloc(ProcessHeap, - 0, - sizeof(IMAGEADJUST)); - if (!pImgAdj) - return NULL; - - - pImgAdj->Info = (PMAIN_WND_INFO)lParam; - if (!pImgAdj->Info->ImageEditors) - goto fail; - - - pImgAdj->hPicPrev = GetDlgItem(hDlg, IDC_PICPREVIEW); - GetClientRect(pImgAdj->hPicPrev, - &pImgAdj->ImageRect); - - /* Make a static copy of the main image */ - pImgAdj->hBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, - IMAGE_BITMAP, - pImgAdj->ImageRect.right, - pImgAdj->ImageRect.bottom, - LR_CREATEDIBSECTION); - if (!pImgAdj->hBitmap) - goto fail; - - /* Make a copy which will be updated */ - pImgAdj->hPreviewBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, - IMAGE_BITMAP, - pImgAdj->ImageRect.right, - pImgAdj->ImageRect.bottom, - LR_CREATEDIBSECTION); - if (!pImgAdj->hPreviewBitmap) - goto fail; - - - pImgAdj->RedVal = pImgAdj->BlueVal = pImgAdj->GreenVal = 100; - - /* setup dialog */ - SendDlgItemMessage(hDlg, - IDC_BRI_FULL, - BM_SETCHECK, - BST_CHECKED, - 0); - SendDlgItemMessage(hDlg, - IDC_BRI_TRACKBAR, - TBM_SETRANGE, - TRUE, - (LPARAM)MAKELONG(0, 200)); - SendDlgItemMessage(hDlg, - IDC_BRI_TRACKBAR, - TBM_SETPOS, - TRUE, - (LPARAM)BASECOLOUR); - SetDlgItemText(hDlg, - IDC_BRI_EDIT, - _T("100")); - - return pImgAdj; - -fail: - HeapFree(ProcessHeap, - 0, - pImgAdj); - return NULL; -} - - -static VOID -Cont_OnDrawItem(PIMAGEADJUST pImgAdj, - LPARAM lParam) -{ - LPDRAWITEMSTRUCT lpDrawItem; - HDC hdcMem; - - lpDrawItem = (LPDRAWITEMSTRUCT)lParam; - - hdcMem = CreateCompatibleDC(lpDrawItem->hDC); - - if(lpDrawItem->CtlID == IDC_PICPREVIEW) - { - SelectObject(hdcMem, - pImgAdj->hPreviewBitmap); - - BitBlt(lpDrawItem->hDC, - pImgAdj->ImageRect.left, - pImgAdj->ImageRect.top, - pImgAdj->ImageRect.right, - pImgAdj->ImageRect.bottom, - hdcMem, - 0, - 0, - SRCCOPY); - - DeleteDC(hdcMem); - } -} - - -static VOID -Cont_OnTrackBar(PIMAGEADJUST pImgAdj, - HWND hDlg) -{ - HDC hdcMem; - DWORD TrackPos; - - TrackPos = (DWORD)SendDlgItemMessage(hDlg, - IDC_BRI_TRACKBAR, - TBM_GETPOS, - 0, - 0); - - SetDlgItemInt(hDlg, - IDC_BRI_EDIT, - TrackPos, - FALSE); - - if (IsDlgButtonChecked(hDlg, IDC_BRI_FULL) == BST_CHECKED) - { - pImgAdj->RedVal = pImgAdj->GreenVal = pImgAdj->BlueVal = TrackPos - BASECOLOUR + 100; - } - else if (IsDlgButtonChecked(hDlg, IDC_BRI_RED) == BST_CHECKED) - { - pImgAdj->RedVal = TrackPos - BASECOLOUR + 100; - } - else if (IsDlgButtonChecked(hDlg, IDC_BRI_GREEN) == BST_CHECKED) - { - pImgAdj->GreenVal = TrackPos - BASECOLOUR + 100; - } - else if (IsDlgButtonChecked(hDlg, IDC_BRI_BLUE) == BST_CHECKED) - { - pImgAdj->BlueVal = TrackPos - BASECOLOUR + 100; - } - - hdcMem = GetDC(pImgAdj->hPicPrev); - - AdjustContrast(pImgAdj->hBitmap, - pImgAdj->hPreviewBitmap, - pImgAdj->hPicPrev, - hdcMem, - pImgAdj->RedVal, - pImgAdj->GreenVal, - pImgAdj->BlueVal); - - ReleaseDC(pImgAdj->hPicPrev, hdcMem); -} - - -static BOOL -Cont_OnCommand(PIMAGEADJUST pImgAdj, - HWND hDlg, - UINT uID) -{ - switch (uID) - { - case IDOK: - { - HDC hdcMem; - - hdcMem = GetDC(pImgAdj->Info->ImageEditors->hSelf); - - AdjustContrast(pImgAdj->Info->ImageEditors->hBitmap, - pImgAdj->Info->ImageEditors->hBitmap, - pImgAdj->Info->ImageEditors->hSelf, - hdcMem, - pImgAdj->RedVal, - pImgAdj->GreenVal, - pImgAdj->BlueVal); - - ReleaseDC(pImgAdj->Info->ImageEditors->hSelf, - hdcMem); - - EndDialog(hDlg, - uID); - - return TRUE; - } - - case IDCANCEL: - { - EndDialog(hDlg, - uID); - return TRUE; - } - } - - return FALSE; -} - - -INT_PTR CALLBACK -ContrastProc(HWND hDlg, - UINT message, - WPARAM wParam, - LPARAM lParam) -{ - static PIMAGEADJUST pImgAdj = NULL; - - switch (message) - { - case WM_INITDIALOG: - { - pImgAdj = Cont_OnInitDialog(pImgAdj, - hDlg, - lParam); - if (!pImgAdj) - { - EndDialog(hDlg, -1); - return FALSE; - } - - return TRUE; - } - - case WM_DRAWITEM: - { - Cont_OnDrawItem(pImgAdj, - lParam); - return TRUE; - } - - case WM_HSCROLL: - { - if (LOWORD(wParam) == TB_THUMBTRACK || - LOWORD(wParam) == TB_ENDTRACK) - { - Cont_OnTrackBar(pImgAdj, - hDlg); - } - - return TRUE; - } - - case WM_COMMAND: - { - return Cont_OnCommand(pImgAdj, - hDlg, - LOWORD(wParam)); - } - - case WM_DESTROY: - { - if (pImgAdj) - { - if (pImgAdj->hBitmap) - DeleteObject(pImgAdj->hBitmap); - if (pImgAdj->hPreviewBitmap) - DeleteObject(pImgAdj->hPreviewBitmap); - - HeapFree(ProcessHeap, - 0, - pImgAdj); - } - } - } - - return FALSE; -} +#include "precomp.h" + +#define BASECOLOUR 100 + + +VOID +AdjustContrast(HBITMAP hOrigBitmap, + HBITMAP hNewBitmap, + HWND hwnd, + HDC hdcMem, + INT RedVal, + INT GreenVal, + INT BlueVal) +{ + BITMAPINFO bi; + BITMAP bitmap; + BOOL bRes; + DWORD Count = 0; + INT i, j; + PBYTE pBits; + RECT rc; + + GetObject(hNewBitmap, + sizeof(BITMAP), + &bitmap); + + /* Bitmap header */ + bi.bmiHeader.biSize = sizeof(bi.bmiHeader); + bi.bmiHeader.biWidth = bitmap.bmWidth; + bi.bmiHeader.biHeight = bitmap.bmHeight; + bi.bmiHeader.biPlanes = 1; + bi.bmiHeader.biBitCount = 32; + bi.bmiHeader.biCompression = BI_RGB; + bi.bmiHeader.biSizeImage = bitmap.bmWidth * bitmap.bmHeight * 4; + bi.bmiHeader.biClrUsed = 0; + bi.bmiHeader.biClrImportant = 0; + + /* Buffer */ + pBits = (PBYTE)HeapAlloc(ProcessHeap, + 0, + bitmap.bmWidth * bitmap.bmHeight * 4); + if (!pBits) + return; + + /* get the bits from the original bitmap */ + bRes = GetDIBits(hdcMem, + hOrigBitmap, + 0, + bitmap.bmHeight, + pBits, + &bi, + DIB_RGB_COLORS); + + for (i = 0; i < bitmap.bmHeight; i++) + { + for (j = 0; j < bitmap.bmWidth; j++) + { + DWORD Val = 0; + INT b, g, r; + + CopyMemory(&Val, + &pBits[Count], + 4); + + /* Get pixels in reverse order */ + b = GetRValue(Val); + g = GetGValue(Val); + r = GetBValue(Val); + + r = ((r - 128) * RedVal) / 100 + 128; + g = ((g - 128) * GreenVal) / 100 + 128; + b = ((b - 128) * BlueVal) / 100 + 128; + + /* Red */ + if (r > 255) r = 255; + else if (r < 0) r = 0; + + /* Green */ + if (g > 255) g = 255; + else if (g < 0) g = 0; + + /* Blue */ + if (b > 255) b = 255; + else if (b < 0) b = 0; + + /* Store in reverse order */ + Val = RGB(b, g, r); + CopyMemory(&pBits[Count], + &Val, + 4); + + /* RGB color take 4 bytes.The high-order byte must be zero */ + Count += 4; + } + } + + /* Set the new pixel bits */ + SetDIBits(hdcMem, + hNewBitmap, + 0, + bRes, + pBits, + &bi, + DIB_RGB_COLORS); + + HeapFree(ProcessHeap, + 0, + pBits); + + GetClientRect(hwnd, + &rc); + + InvalidateRect(hwnd, + &rc, + FALSE); +} + + +static PIMAGEADJUST +Cont_OnInitDialog(PIMAGEADJUST pImgAdj, + HWND hDlg, + LPARAM lParam) +{ + pImgAdj = (IMAGEADJUST*) HeapAlloc(ProcessHeap, + 0, + sizeof(IMAGEADJUST)); + if (!pImgAdj) + return NULL; + + + pImgAdj->Info = (PMAIN_WND_INFO)lParam; + if (!pImgAdj->Info->ImageEditors) + goto fail; + + + pImgAdj->hPicPrev = GetDlgItem(hDlg, IDC_PICPREVIEW); + GetClientRect(pImgAdj->hPicPrev, + &pImgAdj->ImageRect); + + /* Make a static copy of the main image */ + pImgAdj->hBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, + IMAGE_BITMAP, + pImgAdj->ImageRect.right, + pImgAdj->ImageRect.bottom, + LR_CREATEDIBSECTION); + if (!pImgAdj->hBitmap) + goto fail; + + /* Make a copy which will be updated */ + pImgAdj->hPreviewBitmap = (HBITMAP) CopyImage(pImgAdj->Info->ImageEditors->hBitmap, + IMAGE_BITMAP, + pImgAdj->ImageRect.right, + pImgAdj->ImageRect.bottom, + LR_CREATEDIBSECTION); + if (!pImgAdj->hPreviewBitmap) + goto fail; + + + pImgAdj->RedVal = pImgAdj->BlueVal = pImgAdj->GreenVal = 100; + + /* setup dialog */ + SendDlgItemMessage(hDlg, + IDC_BRI_FULL, + BM_SETCHECK, + BST_CHECKED, + 0); + SendDlgItemMessage(hDlg, + IDC_BRI_TRACKBAR, + TBM_SETRANGE, + TRUE, + (LPARAM)MAKELONG(0, 200)); + SendDlgItemMessage(hDlg, + IDC_BRI_TRACKBAR, + TBM_SETPOS, + TRUE, + (LPARAM)BASECOLOUR); + SetDlgItemText(hDlg, + IDC_BRI_EDIT, + _T("100")); + + return pImgAdj; + +fail: + HeapFree(ProcessHeap, + 0, + pImgAdj); + return NULL; +} + + +static VOID +Cont_OnDrawItem(PIMAGEADJUST pImgAdj, + LPARAM lParam) +{ + LPDRAWITEMSTRUCT lpDrawItem; + HDC hdcMem; + + lpDrawItem = (LPDRAWITEMSTRUCT)lParam; + + hdcMem = CreateCompatibleDC(lpDrawItem->hDC); + + if(lpDrawItem->CtlID == IDC_PICPREVIEW) + { + SelectObject(hdcMem, + pImgAdj->hPreviewBitmap); + + BitBlt(lpDrawItem->hDC, + pImgAdj->ImageRect.left, + pImgAdj->ImageRect.top, + pImgAdj->ImageRect.right, + pImgAdj->ImageRect.bottom, + hdcMem, + 0, + 0, + SRCCOPY); + + DeleteDC(hdcMem); + } +} + + +static VOID +Cont_OnTrackBar(PIMAGEADJUST pImgAdj, + HWND hDlg) +{ + HDC hdcMem; + DWORD TrackPos; + + TrackPos = (DWORD)SendDlgItemMessage(hDlg, + IDC_BRI_TRACKBAR, + TBM_GETPOS, + 0, + 0); + + SetDlgItemInt(hDlg, + IDC_BRI_EDIT, + TrackPos, + FALSE); + + if (IsDlgButtonChecked(hDlg, IDC_BRI_FULL) == BST_CHECKED) + { + pImgAdj->RedVal = pImgAdj->GreenVal = pImgAdj->BlueVal = TrackPos - BASECOLOUR + 100; + } + else if (IsDlgButtonChecked(hDlg, IDC_BRI_RED) == BST_CHECKED) + { + pImgAdj->RedVal = TrackPos - BASECOLOUR + 100; + } + else if (IsDlgButtonChecked(hDlg, IDC_BRI_GREEN) == BST_CHECKED) + { + pImgAdj->GreenVal = TrackPos - BASECOLOUR + 100; + } + else if (IsDlgButtonChecked(hDlg, IDC_BRI_BLUE) == BST_CHECKED) + { + pImgAdj->BlueVal = TrackPos - BASECOLOUR + 100; + } + + hdcMem = GetDC(pImgAdj->hPicPrev); + + AdjustContrast(pImgAdj->hBitmap, + pImgAdj->hPreviewBitmap, + pImgAdj->hPicPrev, + hdcMem, + pImgAdj->RedVal, + pImgAdj->GreenVal, + pImgAdj->BlueVal); + + ReleaseDC(pImgAdj->hPicPrev, hdcMem); +} + + +static BOOL +Cont_OnCommand(PIMAGEADJUST pImgAdj, + HWND hDlg, + UINT uID) +{ + switch (uID) + { + case IDOK: + { + HDC hdcMem; + + hdcMem = GetDC(pImgAdj->Info->ImageEditors->hSelf); + + AdjustContrast(pImgAdj->Info->ImageEditors->hBitmap, + pImgAdj->Info->ImageEditors->hBitmap, + pImgAdj->Info->ImageEditors->hSelf, + hdcMem, + pImgAdj->RedVal, + pImgAdj->GreenVal, + pImgAdj->BlueVal); + + ReleaseDC(pImgAdj->Info->ImageEditors->hSelf, + hdcMem); + + EndDialog(hDlg, + uID); + + return TRUE; + } + + case IDCANCEL: + { + EndDialog(hDlg, + uID); + return TRUE; + } + } + + return FALSE; +} + + +INT_PTR CALLBACK +ContrastProc(HWND hDlg, + UINT message, + WPARAM wParam, + LPARAM lParam) +{ + static PIMAGEADJUST pImgAdj = NULL; + + switch (message) + { + case WM_INITDIALOG: + { + pImgAdj = Cont_OnInitDialog(pImgAdj, + hDlg, + lParam); + if (!pImgAdj) + { + EndDialog(hDlg, -1); + return FALSE; + } + + return TRUE; + } + + case WM_DRAWITEM: + { + Cont_OnDrawItem(pImgAdj, + lParam); + return TRUE; + } + + case WM_HSCROLL: + { + if (LOWORD(wParam) == TB_THUMBTRACK || + LOWORD(wParam) == TB_ENDTRACK) + { + Cont_OnTrackBar(pImgAdj, + hDlg); + } + + return TRUE; + } + + case WM_COMMAND: + { + return Cont_OnCommand(pImgAdj, + hDlg, + LOWORD(wParam)); + } + + case WM_DESTROY: + { + if (pImgAdj) + { + if (pImgAdj->hBitmap) + DeleteObject(pImgAdj->hBitmap); + if (pImgAdj->hPreviewBitmap) + DeleteObject(pImgAdj->hPreviewBitmap); + + HeapFree(ProcessHeap, + 0, + pImgAdj); + } + } + } + + return FALSE; +} diff --git a/modules/rosapps/applications/imagesoft/custcombo.c b/modules/rosapps/applications/imagesoft/custcombo.c index 89fb375d4fb..6ae88e3d0cf 100644 --- a/modules/rosapps/applications/imagesoft/custcombo.c +++ b/modules/rosapps/applications/imagesoft/custcombo.c @@ -1,213 +1,213 @@ -#include - - -LRESULT WINAPI -FlatComboProc(HWND hwnd, - UINT msg, - WPARAM wParam, - LPARAM lParam) -{ - HDC hdc; - PAINTSTRUCT ps; - RECT rect, rect2; - POINT pt; - - WNDPROC OldComboProc = (WNDPROC)GetWindowLongPtr(hwnd, GWLP_USERDATA); - - static BOOL fMouseDown = FALSE; - static BOOL fButtonDown = FALSE; - - switch(msg) - { - case WM_PAINT: - { - if(wParam == 0) hdc = BeginPaint(hwnd, &ps); - else hdc = (HDC)wParam; - - /* mask off the borders and draw ComboBox normally */ - GetClientRect(hwnd, &rect); - - InflateRect(&rect, - -GetSystemMetrics(SM_CXEDGE)*2, - -GetSystemMetrics(SM_CYEDGE)*2); - - rect.right -= GetSystemMetrics(SM_CXVSCROLL); - - IntersectClipRect(hdc, - rect.left, - rect.top, - rect.right, - rect.bottom); - - /* Draw the ComboBox */ - CallWindowProc(OldComboProc, - hwnd, - msg, - (WPARAM)hdc, - lParam); - - /* Now mask off inside and draw the borders */ - SelectClipRgn(hdc, - NULL); - rect.right += GetSystemMetrics(SM_CXVSCROLL); - - ExcludeClipRect(hdc, - rect.left, - rect.top, - rect.right, - rect.bottom); - - /* draw borders */ - GetClientRect(hwnd, - &rect2); - FillRect(hdc, - &rect2, - //CreateSolidBrush(RGB(0,0,0))); - GetSysColorBrush(COLOR_3DFACE)); - - /* now draw the button */ - SelectClipRgn(hdc, - NULL); - rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL); - - if(fButtonDown) - { - HBRUSH oldBrush; - HPEN oldPen; - POINT pt[3]; - - FillRect(hdc, &rect, CreateSolidBrush(RGB(182,189,210))); - rect.top -= 1; - rect.bottom += 1; - FrameRect(hdc, &rect, GetStockBrush(WHITE_BRUSH)); - - pt[0].x = rect.right - ((GetSystemMetrics(SM_CXVSCROLL) / 2) + 2); - pt[0].y = rect.bottom / 2; - pt[1].x = pt[0].x + 4; - pt[1].y = pt[0].y; - pt[2].x = pt[1].x - 2; - pt[2].y = pt[1].y + 2; - - oldPen = (HPEN) SelectObject(hdc, GetStockPen(WHITE_PEN)); - oldBrush = (HBRUSH) SelectObject(hdc, GetStockBrush(WHITE_BRUSH)); - Polygon(hdc, pt, 3); - - SelectObject(hdc, oldPen); - SelectObject(hdc, oldBrush); - } - else - { - HBRUSH oldBrush; - POINT pt[3]; - - FillRect(hdc, &rect, GetSysColorBrush(COLOR_3DFACE)); - rect.top -= 1; - rect.bottom += 1; - FrameRect(hdc, &rect, GetStockBrush(WHITE_BRUSH)); - - pt[0].x = rect.right - ((GetSystemMetrics(SM_CXVSCROLL) / 2) + 2); - pt[0].y = rect.bottom / 2; - pt[1].x = pt[0].x + 4; - pt[1].y = pt[0].y; - pt[2].x = pt[1].x - 2; - pt[2].y = pt[1].y + 2; - - oldBrush = (HBRUSH) SelectObject(hdc, GetStockBrush(BLACK_BRUSH)); - Polygon(hdc, pt, 3); - - SelectObject(hdc, oldBrush); - } - - - if(wParam == 0) - EndPaint(hwnd, &ps); - - return 0; - } - - /* check if mouse is within drop-arrow area, toggle - * a flag to say if the mouse is up/down. Then invalidate - * the window so it redraws to show the changes. */ - case WM_LBUTTONDBLCLK: - case WM_LBUTTONDOWN: - { - - pt.x = (short)LOWORD(lParam); - pt.y = (short)HIWORD(lParam); - - GetClientRect(hwnd, &rect); - - InflateRect(&rect, - -GetSystemMetrics(SM_CXEDGE), - -GetSystemMetrics(SM_CYEDGE)); - rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL); - - if(PtInRect(&rect, pt)) - { - /* we *should* call SetCapture, but the ComboBox does it for us */ - fMouseDown = TRUE; - fButtonDown = TRUE; - InvalidateRect(hwnd, 0, 0); - } - } - break; - - /* mouse has moved. Check to see if it is in/out of the drop-arrow */ - case WM_MOUSEMOVE: - { - - pt.x = (short)LOWORD(lParam); - pt.y = (short)HIWORD(lParam); - - if(fMouseDown && (wParam & MK_LBUTTON)) - { - GetClientRect(hwnd, &rect); - - InflateRect(&rect, -GetSystemMetrics(SM_CXEDGE), -GetSystemMetrics(SM_CYEDGE)); - rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL); - - if(fButtonDown != PtInRect(&rect, pt)) - { - fButtonDown = PtInRect(&rect, pt); - InvalidateRect(hwnd, 0, 0); - } - } - } - break; - - case WM_LBUTTONUP: - { - - if(fMouseDown) - { - /* No need to call ReleaseCapture, the ComboBox does it for us */ - fMouseDown = FALSE; - fButtonDown = FALSE; - InvalidateRect(hwnd, 0, 0); - } - } - break; - } - - return CallWindowProc(OldComboProc, - hwnd, - msg, - wParam, - lParam); -} - -VOID MakeFlatCombo(HWND hwndCombo) -{ - LONG_PTR OldComboProc; - - /* Remember old window procedure */ - OldComboProc = GetWindowLongPtr(hwndCombo, GWLP_WNDPROC); - SetWindowLongPtr(hwndCombo, - GWLP_USERDATA, - OldComboProc); - - /* Perform the subclass */ - SetWindowLongPtr(hwndCombo, - GWLP_WNDPROC, - (LONG_PTR)FlatComboProc); -} +#include + + +LRESULT WINAPI +FlatComboProc(HWND hwnd, + UINT msg, + WPARAM wParam, + LPARAM lParam) +{ + HDC hdc; + PAINTSTRUCT ps; + RECT rect, rect2; + POINT pt; + + WNDPROC OldComboProc = (WNDPROC)GetWindowLongPtr(hwnd, GWLP_USERDATA); + + static BOOL fMouseDown = FALSE; + static BOOL fButtonDown = FALSE; + + switch(msg) + { + case WM_PAINT: + { + if(wParam == 0) hdc = BeginPaint(hwnd, &ps); + else hdc = (HDC)wParam; + + /* mask off the borders and draw ComboBox normally */ + GetClientRect(hwnd, &rect); + + InflateRect(&rect, + -GetSystemMetrics(SM_CXEDGE)*2, + -GetSystemMetrics(SM_CYEDGE)*2); + + rect.right -= GetSystemMetrics(SM_CXVSCROLL); + + IntersectClipRect(hdc, + rect.left, + rect.top, + rect.right, + rect.bottom); + + /* Draw the ComboBox */ + CallWindowProc(OldComboProc, + hwnd, + msg, + (WPARAM)hdc, + lParam); + + /* Now mask off inside and draw the borders */ + SelectClipRgn(hdc, + NULL); + rect.right += GetSystemMetrics(SM_CXVSCROLL); + + ExcludeClipRect(hdc, + rect.left, + rect.top, + rect.right, + rect.bottom); + + /* draw borders */ + GetClientRect(hwnd, + &rect2); + FillRect(hdc, + &rect2, + //CreateSolidBrush(RGB(0,0,0))); + GetSysColorBrush(COLOR_3DFACE)); + + /* now draw the button */ + SelectClipRgn(hdc, + NULL); + rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL); + + if(fButtonDown) + { + HBRUSH oldBrush; + HPEN oldPen; + POINT pt[3]; + + FillRect(hdc, &rect, CreateSolidBrush(RGB(182,189,210))); + rect.top -= 1; + rect.bottom += 1; + FrameRect(hdc, &rect, GetStockBrush(WHITE_BRUSH)); + + pt[0].x = rect.right - ((GetSystemMetrics(SM_CXVSCROLL) / 2) + 2); + pt[0].y = rect.bottom / 2; + pt[1].x = pt[0].x + 4; + pt[1].y = pt[0].y; + pt[2].x = pt[1].x - 2; + pt[2].y = pt[1].y + 2; + + oldPen = (HPEN) SelectObject(hdc, GetStockPen(WHITE_PEN)); + oldBrush = (HBRUSH) SelectObject(hdc, GetStockBrush(WHITE_BRUSH)); + Polygon(hdc, pt, 3); + + SelectObject(hdc, oldPen); + SelectObject(hdc, oldBrush); + } + else + { + HBRUSH oldBrush; + POINT pt[3]; + + FillRect(hdc, &rect, GetSysColorBrush(COLOR_3DFACE)); + rect.top -= 1; + rect.bottom += 1; + FrameRect(hdc, &rect, GetStockBrush(WHITE_BRUSH)); + + pt[0].x = rect.right - ((GetSystemMetrics(SM_CXVSCROLL) / 2) + 2); + pt[0].y = rect.bottom / 2; + pt[1].x = pt[0].x + 4; + pt[1].y = pt[0].y; + pt[2].x = pt[1].x - 2; + pt[2].y = pt[1].y + 2; + + oldBrush = (HBRUSH) SelectObject(hdc, GetStockBrush(BLACK_BRUSH)); + Polygon(hdc, pt, 3); + + SelectObject(hdc, oldBrush); + } + + + if(wParam == 0) + EndPaint(hwnd, &ps); + + return 0; + } + + /* check if mouse is within drop-arrow area, toggle + * a flag to say if the mouse is up/down. Then invalidate + * the window so it redraws to show the changes. */ + case WM_LBUTTONDBLCLK: + case WM_LBUTTONDOWN: + { + + pt.x = (short)LOWORD(lParam); + pt.y = (short)HIWORD(lParam); + + GetClientRect(hwnd, &rect); + + InflateRect(&rect, + -GetSystemMetrics(SM_CXEDGE), + -GetSystemMetrics(SM_CYEDGE)); + rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL); + + if(PtInRect(&rect, pt)) + { + /* we *should* call SetCapture, but the ComboBox does it for us */ + fMouseDown = TRUE; + fButtonDown = TRUE; + InvalidateRect(hwnd, 0, 0); + } + } + break; + + /* mouse has moved. Check to see if it is in/out of the drop-arrow */ + case WM_MOUSEMOVE: + { + + pt.x = (short)LOWORD(lParam); + pt.y = (short)HIWORD(lParam); + + if(fMouseDown && (wParam & MK_LBUTTON)) + { + GetClientRect(hwnd, &rect); + + InflateRect(&rect, -GetSystemMetrics(SM_CXEDGE), -GetSystemMetrics(SM_CYEDGE)); + rect.left = rect.right - GetSystemMetrics(SM_CXVSCROLL); + + if(fButtonDown != PtInRect(&rect, pt)) + { + fButtonDown = PtInRect(&rect, pt); + InvalidateRect(hwnd, 0, 0); + } + } + } + break; + + case WM_LBUTTONUP: + { + + if(fMouseDown) + { + /* No need to call ReleaseCapture, the ComboBox does it for us */ + fMouseDown = FALSE; + fButtonDown = FALSE; + InvalidateRect(hwnd, 0, 0); + } + } + break; + } + + return CallWindowProc(OldComboProc, + hwnd, + msg, + wParam, + lParam); +} + +VOID MakeFlatCombo(HWND hwndCombo) +{ + LONG_PTR OldComboProc; + + /* Remember old window procedure */ + OldComboProc = GetWindowLongPtr(hwndCombo, GWLP_WNDPROC); + SetWindowLongPtr(hwndCombo, + GWLP_USERDATA, + OldComboProc); + + /* Perform the subclass */ + SetWindowLongPtr(hwndCombo, + GWLP_WNDPROC, + (LONG_PTR)FlatComboProc); +} diff --git a/modules/rosapps/applications/imagesoft/font.c b/modules/rosapps/applications/imagesoft/font.c index 1f696cbddc6..e8540f65310 100644 --- a/modules/rosapps/applications/imagesoft/font.c +++ b/modules/rosapps/applications/imagesoft/font.c @@ -1,179 +1,179 @@ -#include - -int CALLBACK -EnumFontSizes(ENUMLOGFONTEX *lpelfe, - NEWTEXTMETRICEX *lpntme, - DWORD FontType, - LPARAM lParam) -{ - static int ttsizes[] = { 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 }; - TCHAR ach[100]; - - BOOL fTrueType = (lpelfe->elfLogFont.lfOutPrecision == OUT_STROKE_PRECIS) ? TRUE : FALSE; - - HWND hwndCombo = (HWND)lParam; - INT i, idx; - - if (fTrueType) - { - for (i = 0; i < (sizeof(ttsizes) / sizeof(ttsizes[0])); i++) - { - wsprintf(ach, _T("%d"), ttsizes[i]); - - idx = (INT)SendMessage(hwndCombo, - CB_ADDSTRING, - 0, - (LPARAM)ach); - - SendMessage(hwndCombo, - CB_SETITEMDATA, - idx, - ttsizes[i]); - } - - return 0; - } - - return 1; -} - - -/* Font-enumeration callback */ -int CALLBACK -EnumFontNames(ENUMLOGFONTEX *lpelfe, - NEWTEXTMETRICEX *lpntme, - DWORD FontType, - LPARAM lParam) -{ - HWND hwndCombo = (HWND)lParam; - TCHAR *pszName = lpelfe->elfLogFont.lfFaceName; - - /* make sure font doesn't already exist in our list */ - if(SendMessage(hwndCombo, - CB_FINDSTRINGEXACT, - 0, - (LPARAM)pszName) == CB_ERR) - { - INT idx; - BOOL fFixed; - BOOL fTrueType; - - /* add the font */ - idx = (INT)SendMessage(hwndCombo, - CB_ADDSTRING, - 0, - (LPARAM)pszName); - - /* record the font's attributes (Fixedwidth and Truetype) */ - fFixed = (lpelfe->elfLogFont.lfPitchAndFamily & FIXED_PITCH) ? TRUE : FALSE; - fTrueType = (lpelfe->elfLogFont.lfOutPrecision == OUT_STROKE_PRECIS) ? TRUE : FALSE; - - /* store this information in the list-item's userdata area */ - SendMessage(hwndCombo, - CB_SETITEMDATA, - idx, - MAKEWPARAM(fFixed, fTrueType)); - } - - return 1; -} - - -VOID -FillFontSizeComboList(HWND hwndCombo) -{ - LOGFONT lf = { 0 }; - HDC hdc = GetDC(hwndCombo); - - /* default size */ - INT cursize = 12; - INT i, count, nearest = 0; - - HFONT hFont = (HFONT) GetStockObject(DEFAULT_GUI_FONT); - - SendMessage(hwndCombo, - WM_SETFONT, - (WPARAM)hFont, - 0); - - lf.lfCharSet = DEFAULT_CHARSET; - lf.lfPitchAndFamily = 0; - - /* empty the list */ - SendMessage(hwndCombo, - CB_RESETCONTENT, - 0, - 0); - - /* enumerate font sizes */ - EnumFontFamiliesEx(hdc, - &lf, - (FONTENUMPROC)EnumFontSizes, - (LPARAM)hwndCombo, - 0); - - /* set selection to first item */ - count = (INT)SendMessage(hwndCombo, - CB_GETCOUNT, - 0, - 0); - - for(i = 0; i < count; i++) - { - INT n = (INT)SendMessage(hwndCombo, - CB_GETITEMDATA, - i, - 0); - - if (n <= cursize) - nearest = i; - } - - SendMessage(hwndCombo, - CB_SETCURSEL, - nearest, - 0); - - ReleaseDC(hwndCombo, - hdc); -} - - -/* Initialize the font-list by enumeration all system fonts */ -VOID -FillFontStyleComboList(HWND hwndCombo) -{ - HDC hdc = GetDC(hwndCombo); - LOGFONT lf; - - /* FIXME: draw each font in its own style */ - HFONT hFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT); - SendMessage(hwndCombo, - WM_SETFONT, - (WPARAM)hFont, - 0); - - /* FIXME: set this in relation to the widest string */ - SendMessage(hwndCombo, CB_SETDROPPEDWIDTH, 150, 0); - - lf.lfCharSet = ANSI_CHARSET; // DEFAULT_CHARSET; - lf.lfFaceName[0] = _T('\0'); // all fonts - lf.lfPitchAndFamily = 0; - - /* store the list of fonts in the combo */ - EnumFontFamiliesEx(hdc, - &lf, - (FONTENUMPROC)EnumFontNames, - (LPARAM)hwndCombo, 0); - - ReleaseDC(hwndCombo, - hdc); - - /* set default to Arial */ - SendMessage(hwndCombo, - CB_SELECTSTRING, - -1, - (LPARAM)_T("Arial")); - - -} +#include + +int CALLBACK +EnumFontSizes(ENUMLOGFONTEX *lpelfe, + NEWTEXTMETRICEX *lpntme, + DWORD FontType, + LPARAM lParam) +{ + static int ttsizes[] = { 8, 9, 10, 11, 12, 14, 16, 18, 20, 22, 24, 26, 28, 36, 48, 72 }; + TCHAR ach[100]; + + BOOL fTrueType = (lpelfe->elfLogFont.lfOutPrecision == OUT_STROKE_PRECIS) ? TRUE : FALSE; + + HWND hwndCombo = (HWND)lParam; + INT i, idx; + + if (fTrueType) + { + for (i = 0; i < (sizeof(ttsizes) / sizeof(ttsizes[0])); i++) + { + wsprintf(ach, _T("%d"), ttsizes[i]); + + idx = (INT)SendMessage(hwndCombo, + CB_ADDSTRING, + 0, + (LPARAM)ach); + + SendMessage(hwndCombo, + CB_SETITEMDATA, + idx, + ttsizes[i]); + } + + return 0; + } + + return 1; +} + + +/* Font-enumeration callback */ +int CALLBACK +EnumFontNames(ENUMLOGFONTEX *lpelfe, + NEWTEXTMETRICEX *lpntme, + DWORD FontType, + LPARAM lParam) +{ + HWND hwndCombo = (HWND)lParam; + TCHAR *pszName = lpelfe->elfLogFont.lfFaceName; + + /* make sure font doesn't already exist in our list */ + if(SendMessage(hwndCombo, + CB_FINDSTRINGEXACT, + 0, + (LPARAM)pszName) == CB_ERR) + { + INT idx; + BOOL fFixed; + BOOL fTrueType; + + /* add the font */ + idx = (INT)SendMessage(hwndCombo, + CB_ADDSTRING, + 0, + (LPARAM)pszName); + + /* record the font's attributes (Fixedwidth and Truetype) */ + fFixed = (lpelfe->elfLogFont.lfPitchAndFamily & FIXED_PITCH) ? TRUE : FALSE; + fTrueType = (lpelfe->elfLogFont.lfOutPrecision == OUT_STROKE_PRECIS) ? TRUE : FALSE; + + /* store this information in the list-item's userdata area */ + SendMessage(hwndCombo, + CB_SETITEMDATA, + idx, + MAKEWPARAM(fFixed, fTrueType)); + } + + return 1; +} + + +VOID +FillFontSizeComboList(HWND hwndCombo) +{ + LOGFONT lf = { 0 }; + HDC hdc = GetDC(hwndCombo); + + /* default size */ + INT cursize = 12; + INT i, count, nearest = 0; + + HFONT hFont = (HFONT) GetStockObject(DEFAULT_GUI_FONT); + + SendMessage(hwndCombo, + WM_SETFONT, + (WPARAM)hFont, + 0); + + lf.lfCharSet = DEFAULT_CHARSET; + lf.lfPitchAndFamily = 0; + + /* empty the list */ + SendMessage(hwndCombo, + CB_RESETCONTENT, + 0, + 0); + + /* enumerate font sizes */ + EnumFontFamiliesEx(hdc, + &lf, + (FONTENUMPROC)EnumFontSizes, + (LPARAM)hwndCombo, + 0); + + /* set selection to first item */ + count = (INT)SendMessage(hwndCombo, + CB_GETCOUNT, + 0, + 0); + + for(i = 0; i < count; i++) + { + INT n = (INT)SendMessage(hwndCombo, + CB_GETITEMDATA, + i, + 0); + + if (n <= cursize) + nearest = i; + } + + SendMessage(hwndCombo, + CB_SETCURSEL, + nearest, + 0); + + ReleaseDC(hwndCombo, + hdc); +} + + +/* Initialize the font-list by enumeration all system fonts */ +VOID +FillFontStyleComboList(HWND hwndCombo) +{ + HDC hdc = GetDC(hwndCombo); + LOGFONT lf; + + /* FIXME: draw each font in its own style */ + HFONT hFont = (HFONT)GetStockObject(DEFAULT_GUI_FONT); + SendMessage(hwndCombo, + WM_SETFONT, + (WPARAM)hFont, + 0); + + /* FIXME: set this in relation to the widest string */ + SendMessage(hwndCombo, CB_SETDROPPEDWIDTH, 150, 0); + + lf.lfCharSet = ANSI_CHARSET; // DEFAULT_CHARSET; + lf.lfFaceName[0] = _T('\0'); // all fonts + lf.lfPitchAndFamily = 0; + + /* store the list of fonts in the combo */ + EnumFontFamiliesEx(hdc, + &lf, + (FONTENUMPROC)EnumFontNames, + (LPARAM)hwndCombo, 0); + + ReleaseDC(hwndCombo, + hdc); + + /* set default to Arial */ + SendMessage(hwndCombo, + CB_SELECTSTRING, + -1, + (LPARAM)_T("Arial")); + + +} diff --git a/modules/rosapps/applications/imagesoft/imageprop.h b/modules/rosapps/applications/imagesoft/imageprop.h index 2baafb75344..ac0246479a0 100644 --- a/modules/rosapps/applications/imagesoft/imageprop.h +++ b/modules/rosapps/applications/imagesoft/imageprop.h @@ -1,49 +1,49 @@ - -typedef struct _IMAGEADJUST -{ - PMAIN_WND_INFO Info; - HWND hPicPrev; - HBITMAP hBitmap; - HBITMAP hPreviewBitmap; - RECT ImageRect; - INT RedVal; - INT GreenVal; - INT BlueVal; -} IMAGEADJUST, *PIMAGEADJUST; - - -INT_PTR CALLBACK ImagePropDialogProc(HWND hDlg, - UINT message, - WPARAM wParam, - LPARAM lParam); - -INT_PTR CALLBACK BrightnessProc(HWND hDlg, - UINT message, - WPARAM wParam, - LPARAM lParam); - -INT_PTR CALLBACK ContrastProc(HWND hDlg, - UINT message, - WPARAM wParam, - LPARAM lParam); - -VOID AdjustBrightness(HBITMAP hOrigBitmap, - HBITMAP hNewBitmap, - HWND hwnd, - HDC hdcMem, - INT RedVal, - INT GreenVal, - INT BlueVal); - -BOOL DisplayBlackAndWhite(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap); -BOOL DisplayInvertedColors(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap); -BOOL DisplayBlur(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap); -BOOL DisplaySharpness(HWND hwnd, - HDC hdcMem, - HBITMAP hBitmap); + +typedef struct _IMAGEADJUST +{ + PMAIN_WND_INFO Info; + HWND hPicPrev; + HBITMAP hBitmap; + HBITMAP hPreviewBitmap; + RECT ImageRect; + INT RedVal; + INT GreenVal; + INT BlueVal; +} IMAGEADJUST, *PIMAGEADJUST; + + +INT_PTR CALLBACK ImagePropDialogProc(HWND hDlg, + UINT message, + WPARAM wParam, + LPARAM lParam); + +INT_PTR CALLBACK BrightnessProc(HWND hDlg, + UINT message, + WPARAM wParam, + LPARAM lParam); + +INT_PTR CALLBACK ContrastProc(HWND hDlg, + UINT message, + WPARAM wParam, + LPARAM lParam); + +VOID AdjustBrightness(HBITMAP hOrigBitmap, + HBITMAP hNewBitmap, + HWND hwnd, + HDC hdcMem, + INT RedVal, + INT GreenVal, + INT BlueVal); + +BOOL DisplayBlackAndWhite(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap); +BOOL DisplayInvertedColors(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap); +BOOL DisplayBlur(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap); +BOOL DisplaySharpness(HWND hwnd, + HDC hdcMem, + HBITMAP hBitmap); diff --git a/modules/rosapps/applications/imagesoft/imgedwnd.h b/modules/rosapps/applications/imagesoft/imgedwnd.h index 1e8b322b893..55b203fef4f 100644 --- a/modules/rosapps/applications/imagesoft/imgedwnd.h +++ b/modules/rosapps/applications/imagesoft/imgedwnd.h @@ -1,94 +1,94 @@ -#define MONOCHROMEBITS 1 -#define GREYSCALEBITS 8 -#define PALLETEBITS 8 -#define TRUECOLORBITS 24 - -#define PIXELS 0 -#define CENTIMETERS 1 -#define INCHES 2 - - -/* generic definitions and forward declarations */ -struct _MAIN_WND_INFO; -struct _EDIT_WND_INFO; - - -typedef enum _MDI_EDITOR_TYPE { - metUnknown = 0, - metImageEditor, -} MDI_EDITOR_TYPE, *PMDI_EDITOR_TYPE; - -typedef enum -{ - tSelect = 0, - tMove, - tLasso, - tZoom, - tMagicWand, - tBrush, - tEraser, - tPencil, - tColorPick, - tStamp, - tFill, - tLine, - tPolyline, - tRectangle, - tRoundRectangle, - tPolygon, - tElipse, -} TOOL; - -typedef struct _OPEN_IMAGE_EDIT_INFO -{ - BOOL CreateNew; - union - { - struct - { - LONG Width; - LONG Height; - } New; - struct - { - LPTSTR lpImagePath; - } Open; - }; - LPTSTR lpImageName; - USHORT Type; - LONG Resolution; -} OPEN_IMAGE_EDIT_INFO, *POPEN_IMAGE_EDIT_INFO; - -typedef struct _EDIT_WND_INFO -{ - MDI_EDITOR_TYPE MdiEditorType; /* Must be first member! */ - - HWND hSelf; - HBITMAP hBitmap; - HDC hDCMem; - PBITMAPINFO pbmi; - PBYTE pBits; - struct _MAIN_WND_INFO *MainWnd; - struct _EDIT_WND_INFO *Next; - POINT ScrollPos; - USHORT Zoom; - DWORD Tool; - - POPEN_IMAGE_EDIT_INFO OpenInfo; /* Only valid during initialization */ - - /* Canvas properties */ - USHORT Type; - LONG Resolution; - /* size of drawing area */ - LONG Width; - LONG Height; - -} EDIT_WND_INFO, *PEDIT_WND_INFO; - - -BOOL CreateImageEditWindow(struct _MAIN_WND_INFO *MainWnd, - POPEN_IMAGE_EDIT_INFO OpenInfo); -VOID SetImageEditorEnvironment(PEDIT_WND_INFO Info, - BOOL Setup); -BOOL InitImageEditWindowImpl(VOID); -VOID UninitImageEditWindowImpl(VOID); +#define MONOCHROMEBITS 1 +#define GREYSCALEBITS 8 +#define PALLETEBITS 8 +#define TRUECOLORBITS 24 + +#define PIXELS 0 +#define CENTIMETERS 1 +#define INCHES 2 + + +/* generic definitions and forward declarations */ +struct _MAIN_WND_INFO; +struct _EDIT_WND_INFO; + + +typedef enum _MDI_EDITOR_TYPE { + metUnknown = 0, + metImageEditor, +} MDI_EDITOR_TYPE, *PMDI_EDITOR_TYPE; + +typedef enum +{ + tSelect = 0, + tMove, + tLasso, + tZoom, + tMagicWand, + tBrush, + tEraser, + tPencil, + tColorPick, + tStamp, + tFill, + tLine, + tPolyline, + tRectangle, + tRoundRectangle, + tPolygon, + tElipse, +} TOOL; + +typedef struct _OPEN_IMAGE_EDIT_INFO +{ + BOOL CreateNew; + union + { + struct + { + LONG Width; + LONG Height; + } New; + struct + { + LPTSTR lpImagePath; + } Open; + }; + LPTSTR lpImageName; + USHORT Type; + LONG Resolution; +} OPEN_IMAGE_EDIT_INFO, *POPEN_IMAGE_EDIT_INFO; + +typedef struct _EDIT_WND_INFO +{ + MDI_EDITOR_TYPE MdiEditorType; /* Must be first member! */ + + HWND hSelf; + HBITMAP hBitmap; + HDC hDCMem; + PBITMAPINFO pbmi; + PBYTE pBits; + struct _MAIN_WND_INFO *MainWnd; + struct _EDIT_WND_INFO *Next; + POINT ScrollPos; + USHORT Zoom; + DWORD Tool; + + POPEN_IMAGE_EDIT_INFO OpenInfo; /* Only valid during initialization */ + + /* Canvas properties */ + USHORT Type; + LONG Resolution; + /* size of drawing area */ + LONG Width; + LONG Height; + +} EDIT_WND_INFO, *PEDIT_WND_INFO; + + +BOOL CreateImageEditWindow(struct _MAIN_WND_INFO *MainWnd, + POPEN_IMAGE_EDIT_INFO OpenInfo); +VOID SetImageEditorEnvironment(PEDIT_WND_INFO Info, + BOOL Setup); +BOOL InitImageEditWindowImpl(VOID); +VOID UninitImageEditWindowImpl(VOID); diff --git a/modules/rosapps/applications/imagesoft/mainwnd.h b/modules/rosapps/applications/imagesoft/mainwnd.h index e19656456fb..84262f8d86d 100644 --- a/modules/rosapps/applications/imagesoft/mainwnd.h +++ b/modules/rosapps/applications/imagesoft/mainwnd.h @@ -1,41 +1,41 @@ - -typedef struct _MENU_HINT -{ - WORD CmdId; - UINT HintId; -} MENU_HINT, *PMENU_HINT; - -typedef struct _MAIN_WND_INFO -{ - HWND hSelf; - HWND hMdiClient; - HWND hStatus; - int nCmdShow; - - struct _FLT_WND *fltTools; - struct _FLT_WND *fltColors; - struct _FLT_WND *fltHistory; - - struct _TOOLBAR_DOCKS ToolDocks; - - /* Editors */ - PEDIT_WND_INFO ImageEditors; - UINT ImagesCreated; - - PVOID ActiveEditor; - - /* status flags */ - BOOL InMenuLoop : 1; -} MAIN_WND_INFO, *PMAIN_WND_INFO; - -BOOL InitMainWindowImpl(VOID); -VOID UninitMainWindowImpl(VOID); -HWND CreateMainWindow(LPCTSTR lpCaption, - int nCmdShow); -BOOL MainWndTranslateMDISysAccel(HWND hwnd, - LPMSG lpMsg); -VOID MainWndSwitchEditorContext(PMAIN_WND_INFO Info, - HWND hDeactivate, - HWND hActivate); -MDI_EDITOR_TYPE MainWndGetCurrentEditor(PMAIN_WND_INFO MainWnd, - PVOID *Info); + +typedef struct _MENU_HINT +{ + WORD CmdId; + UINT HintId; +} MENU_HINT, *PMENU_HINT; + +typedef struct _MAIN_WND_INFO +{ + HWND hSelf; + HWND hMdiClient; + HWND hStatus; + int nCmdShow; + + struct _FLT_WND *fltTools; + struct _FLT_WND *fltColors; + struct _FLT_WND *fltHistory; + + struct _TOOLBAR_DOCKS ToolDocks; + + /* Editors */ + PEDIT_WND_INFO ImageEditors; + UINT ImagesCreated; + + PVOID ActiveEditor; + + /* status flags */ + BOOL InMenuLoop : 1; +} MAIN_WND_INFO, *PMAIN_WND_INFO; + +BOOL InitMainWindowImpl(VOID); +VOID UninitMainWindowImpl(VOID); +HWND CreateMainWindow(LPCTSTR lpCaption, + int nCmdShow); +BOOL MainWndTranslateMDISysAccel(HWND hwnd, + LPMSG lpMsg); +VOID MainWndSwitchEditorContext(PMAIN_WND_INFO Info, + HWND hDeactivate, + HWND hActivate); +MDI_EDITOR_TYPE MainWndGetCurrentEditor(PMAIN_WND_INFO MainWnd, + PVOID *Info); diff --git a/modules/rosapps/applications/imagesoft/misc.h b/modules/rosapps/applications/imagesoft/misc.h index ab0c4ae7e08..05d48307963 100644 --- a/modules/rosapps/applications/imagesoft/misc.h +++ b/modules/rosapps/applications/imagesoft/misc.h @@ -1,44 +1,44 @@ - -INT AllocAndLoadString(OUT LPTSTR *lpTarget, - IN HINSTANCE hInst, - IN UINT uID); - -DWORD LoadAndFormatString(IN HINSTANCE hInstance, - IN UINT uID, - OUT LPTSTR *lpTarget, - ...); - -BOOL StatusBarLoadAndFormatString(IN HWND hStatusBar, - IN INT PartId, - IN HINSTANCE hInstance, - IN UINT uID, - ...); - -BOOL StatusBarLoadString(IN HWND hStatusBar, - IN INT PartId, - IN HINSTANCE hInstance, - IN UINT uID); - -INT GetTextFromEdit(OUT LPTSTR lpString, - IN HWND hDlg, - IN UINT Res); - -VOID GetError(DWORD err); - -BOOL ToolbarDeleteControlSpace(HWND hWndToolbar, - const TBBUTTON *ptbButton); - -typedef VOID (*ToolbarChangeControlCallback)(HWND hWndToolbar, - HWND hWndControl, - BOOL Vert); -VOID ToolbarUpdateControlSpaces(HWND hWndToolbar, - ToolbarChangeControlCallback ChangeCallback); - -BOOL ToolbarInsertSpaceForControl(HWND hWndToolbar, - HWND hWndControl, - INT Index, - INT iCmd, - BOOL HideVertical); - -HIMAGELIST InitImageList(UINT NumButtons, - UINT StartResource); + +INT AllocAndLoadString(OUT LPTSTR *lpTarget, + IN HINSTANCE hInst, + IN UINT uID); + +DWORD LoadAndFormatString(IN HINSTANCE hInstance, + IN UINT uID, + OUT LPTSTR *lpTarget, + ...); + +BOOL StatusBarLoadAndFormatString(IN HWND hStatusBar, + IN INT PartId, + IN HINSTANCE hInstance, + IN UINT uID, + ...); + +BOOL StatusBarLoadString(IN HWND hStatusBar, + IN INT PartId, + IN HINSTANCE hInstance, + IN UINT uID); + +INT GetTextFromEdit(OUT LPTSTR lpString, + IN HWND hDlg, + IN UINT Res); + +VOID GetError(DWORD err); + +BOOL ToolbarDeleteControlSpace(HWND hWndToolbar, + const TBBUTTON *ptbButton); + +typedef VOID (*ToolbarChangeControlCallback)(HWND hWndToolbar, + HWND hWndControl, + BOOL Vert); +VOID ToolbarUpdateControlSpaces(HWND hWndToolbar, + ToolbarChangeControlCallback ChangeCallback); + +BOOL ToolbarInsertSpaceForControl(HWND hWndToolbar, + HWND hWndControl, + INT Index, + INT iCmd, + BOOL HideVertical); + +HIMAGELIST InitImageList(UINT NumButtons, + UINT StartResource); diff --git a/modules/rosapps/applications/imagesoft/tooldock.h b/modules/rosapps/applications/imagesoft/tooldock.h index 9cf4221f22f..f96c8c7257c 100644 --- a/modules/rosapps/applications/imagesoft/tooldock.h +++ b/modules/rosapps/applications/imagesoft/tooldock.h @@ -1,115 +1,115 @@ - -typedef enum -{ - TOP_DOCK = 0, - LEFT_DOCK, - RIGHT_DOCK, - BOTTOM_DOCK, - NO_DOCK -} DOCK_POSITION; - -typedef struct _DOCKBAR -{ - UINT BarId; - LPCTSTR lpName; - UINT DisplayTextId; - DOCK_POSITION Position; -} DOCKBAR, *PDOCKBAR; - -struct _TOOLBAR_DOCKS; - -typedef BOOL (CALLBACK *PDOCKBAR_CREATECLIENT)(struct _TOOLBAR_DOCKS *TbDocks, - const DOCKBAR *Dockbar, - PVOID Context, - HWND hParent, - HWND *hwnd); -typedef BOOL (CALLBACK *PDOCKBAR_DESTROYCLIENT)(struct _TOOLBAR_DOCKS *TbDocks, - const DOCKBAR *Dockbar, - PVOID Context, - HWND hwnd); -typedef BOOL (CALLBACK *PDOCKBAR_INSERTBAND)(struct _TOOLBAR_DOCKS *TbDocks, - const DOCKBAR *Dockbar, - PVOID Context, - UINT *Index, - LPREBARBANDINFO rbi); -typedef VOID (CALLBACK *PDOCKBAR_DOCKBAND)(struct _TOOLBAR_DOCKS *TbDocks, - const DOCKBAR *Dockbar, - PVOID Context, - DOCK_POSITION DockFrom, - DOCK_POSITION DockTo, - LPREBARBANDINFO rbi); -typedef VOID (CALLBACK *PDOCKBAR_CHEVRONPUSHED)(struct _TOOLBAR_DOCKS *TbDocks, - const DOCKBAR *Dockbar, - PVOID Context, - HWND hwndChild, - LPNMREBARCHEVRON lpnm); - -typedef struct _DOCKBAR_ITEM_CALLBACKS -{ - PDOCKBAR_CREATECLIENT CreateClient; - PDOCKBAR_DESTROYCLIENT DestroyClient; - PDOCKBAR_INSERTBAND InsertBand; - PDOCKBAR_DOCKBAND DockBand; - PDOCKBAR_CHEVRONPUSHED ChevronPushed; -} DOCKBAR_ITEM_CALLBACKS, *PDOCKBAR_ITEM_CALLBACKS; - -typedef struct _DOCKBAR_ITEM -{ - struct _DOCKBAR_ITEM *Next; - DOCKBAR DockBar; - PVOID Context; - HWND hWndTool; - HWND hWndClient; - DOCK_POSITION PrevDock; - UINT PrevBandIndex; - const DOCKBAR_ITEM_CALLBACKS *Callbacks; -} DOCKBAR_ITEM, *PDOCKBAR_ITEM; - -typedef VOID (CALLBACK *PDOCKBAR_PARENTRESIZE)(PVOID Context, - LONG cx, - LONG cy); - -#define DOCKS_COUNT 4 -typedef struct _TOOLBAR_DOCKS -{ - HWND hParent; - PVOID Context; - HWND hRebar[DOCKS_COUNT]; - RECT rcRebar[DOCKS_COUNT]; - RECT rcClient; - PDOCKBAR_ITEM Items; - PDOCKBAR_PARENTRESIZE ParentResize; - PDOCKBAR_ITEM Dragging; - UINT DraggingBandId; - TCHAR szTempText[255]; -} TOOLBAR_DOCKS, *PTOOLBAR_DOCKS; - -VOID TbdInitializeDocks(PTOOLBAR_DOCKS TbDocks, - HWND hWndParent, - PVOID Context, - PDOCKBAR_PARENTRESIZE ParentResizeProc); -INT TbdAdjustUpdateClientRect(PTOOLBAR_DOCKS TbDocks, - PRECT rcClient); -HDWP TbdDeferDocks(HDWP hWinPosInfo, - PTOOLBAR_DOCKS TbDocks); -BOOL TbdAddToolbar(PTOOLBAR_DOCKS TbDocks, - const DOCKBAR *Dockbar, - PVOID Context, - const DOCKBAR_ITEM_CALLBACKS *DockbarCallbacks); -BOOL TbdDockBarIdFromClientWindow(PTOOLBAR_DOCKS TbDocks, - HWND hWndClient, - UINT *Id); -BOOL TbdHandleNotifications(PTOOLBAR_DOCKS TbDocks, - LPNMHDR pnmh, - LRESULT *Result); -VOID TbdHandleEnabling(PTOOLBAR_DOCKS TbDocks, - HWND hWnd, - BOOL Enable); -VOID TbdHandleActivation(PTOOLBAR_DOCKS TbDocks, - HWND hWnd, - WPARAM *wParam, - LPARAM *lParam); -VOID TbdShowFloatingToolbars(PTOOLBAR_DOCKS TbDocks, - BOOL Show); -BOOL TbdInitImpl(VOID); -VOID TbdUninitImpl(VOID); + +typedef enum +{ + TOP_DOCK = 0, + LEFT_DOCK, + RIGHT_DOCK, + BOTTOM_DOCK, + NO_DOCK +} DOCK_POSITION; + +typedef struct _DOCKBAR +{ + UINT BarId; + LPCTSTR lpName; + UINT DisplayTextId; + DOCK_POSITION Position; +} DOCKBAR, *PDOCKBAR; + +struct _TOOLBAR_DOCKS; + +typedef BOOL (CALLBACK *PDOCKBAR_CREATECLIENT)(struct _TOOLBAR_DOCKS *TbDocks, + const DOCKBAR *Dockbar, + PVOID Context, + HWND hParent, + HWND *hwnd); +typedef BOOL (CALLBACK *PDOCKBAR_DESTROYCLIENT)(struct _TOOLBAR_DOCKS *TbDocks, + const DOCKBAR *Dockbar, + PVOID Context, + HWND hwnd); +typedef BOOL (CALLBACK *PDOCKBAR_INSERTBAND)(struct _TOOLBAR_DOCKS *TbDocks, + const DOCKBAR *Dockbar, + PVOID Context, + UINT *Index, + LPREBARBANDINFO rbi); +typedef VOID (CALLBACK *PDOCKBAR_DOCKBAND)(struct _TOOLBAR_DOCKS *TbDocks, + const DOCKBAR *Dockbar, + PVOID Context, + DOCK_POSITION DockFrom, + DOCK_POSITION DockTo, + LPREBARBANDINFO rbi); +typedef VOID (CALLBACK *PDOCKBAR_CHEVRONPUSHED)(struct _TOOLBAR_DOCKS *TbDocks, + const DOCKBAR *Dockbar, + PVOID Context, + HWND hwndChild, + LPNMREBARCHEVRON lpnm); + +typedef struct _DOCKBAR_ITEM_CALLBACKS +{ + PDOCKBAR_CREATECLIENT CreateClient; + PDOCKBAR_DESTROYCLIENT DestroyClient; + PDOCKBAR_INSERTBAND InsertBand; + PDOCKBAR_DOCKBAND DockBand; + PDOCKBAR_CHEVRONPUSHED ChevronPushed; +} DOCKBAR_ITEM_CALLBACKS, *PDOCKBAR_ITEM_CALLBACKS; + +typedef struct _DOCKBAR_ITEM +{ + struct _DOCKBAR_ITEM *Next; + DOCKBAR DockBar; + PVOID Context; + HWND hWndTool; + HWND hWndClient; + DOCK_POSITION PrevDock; + UINT PrevBandIndex; + const DOCKBAR_ITEM_CALLBACKS *Callbacks; +} DOCKBAR_ITEM, *PDOCKBAR_ITEM; + +typedef VOID (CALLBACK *PDOCKBAR_PARENTRESIZE)(PVOID Context, + LONG cx, + LONG cy); + +#define DOCKS_COUNT 4 +typedef struct _TOOLBAR_DOCKS +{ + HWND hParent; + PVOID Context; + HWND hRebar[DOCKS_COUNT]; + RECT rcRebar[DOCKS_COUNT]; + RECT rcClient; + PDOCKBAR_ITEM Items; + PDOCKBAR_PARENTRESIZE ParentResize; + PDOCKBAR_ITEM Dragging; + UINT DraggingBandId; + TCHAR szTempText[255]; +} TOOLBAR_DOCKS, *PTOOLBAR_DOCKS; + +VOID TbdInitializeDocks(PTOOLBAR_DOCKS TbDocks, + HWND hWndParent, + PVOID Context, + PDOCKBAR_PARENTRESIZE ParentResizeProc); +INT TbdAdjustUpdateClientRect(PTOOLBAR_DOCKS TbDocks, + PRECT rcClient); +HDWP TbdDeferDocks(HDWP hWinPosInfo, + PTOOLBAR_DOCKS TbDocks); +BOOL TbdAddToolbar(PTOOLBAR_DOCKS TbDocks, + const DOCKBAR *Dockbar, + PVOID Context, + const DOCKBAR_ITEM_CALLBACKS *DockbarCallbacks); +BOOL TbdDockBarIdFromClientWindow(PTOOLBAR_DOCKS TbDocks, + HWND hWndClient, + UINT *Id); +BOOL TbdHandleNotifications(PTOOLBAR_DOCKS TbDocks, + LPNMHDR pnmh, + LRESULT *Result); +VOID TbdHandleEnabling(PTOOLBAR_DOCKS TbDocks, + HWND hWnd, + BOOL Enable); +VOID TbdHandleActivation(PTOOLBAR_DOCKS TbDocks, + HWND hWnd, + WPARAM *wParam, + LPARAM *lParam); +VOID TbdShowFloatingToolbars(PTOOLBAR_DOCKS TbDocks, + BOOL Show); +BOOL TbdInitImpl(VOID); +VOID TbdUninitImpl(VOID); diff --git a/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsp b/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsp index c42666c7e43..0b2bcf18fb9 100644 --- a/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsp +++ b/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsp @@ -1,160 +1,160 @@ -# Microsoft Developer Studio Project File - Name="libncftp" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Static Library" 0x0104 - -CFG=libncftp - 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 "libncftp.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 "libncftp.mak" CFG="libncftp - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "libncftp - Win32 Release" (based on "Win32 (x86) Static Library") -!MESSAGE "libncftp - Win32 Debug" (based on "Win32 (x86) Static Library") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -RSC=rc.exe - -!IF "$(CFG)" == "libncftp - 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 "_MBCS" /D "_LIB" /YX /FD /c -# ADD CPP /nologo /W4 /GX /O2 /Ob1 /I "..\Strn" /I "..\sio" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /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 -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo - -!ELSEIF "$(CFG)" == "libncftp - 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 "_MBCS" /D "_LIB" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\Strn" /I "..\sio" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /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 -LIB32=link.exe -lib -# ADD BASE LIB32 /nologo -# ADD LIB32 /nologo - -!ENDIF - -# Begin Target - -# Name "libncftp - Win32 Release" -# Name "libncftp - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\cmds.c -# End Source File -# Begin Source File - -SOURCE=.\errno.c -# End Source File -# Begin Source File - -SOURCE=.\ftp.c -# End Source File -# Begin Source File - -SOURCE=.\glob.c -# End Source File -# Begin Source File - -SOURCE=.\io.c -# End Source File -# Begin Source File - -SOURCE=.\linelist.c -# End Source File -# Begin Source File - -SOURCE=.\mksrczip.bat -# End Source File -# Begin Source File - -SOURCE=.\open.c -# End Source File -# Begin Source File - -SOURCE=.\rcmd.c -# End Source File -# Begin Source File - -SOURCE=.\util.c -# End Source File -# Begin Source File - -SOURCE=.\util2.cpp -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\ftp.h -# End Source File -# Begin Source File - -SOURCE=.\ncftp.h -# End Source File -# Begin Source File - -SOURCE=.\ncftp_errno.h -# End Source File -# Begin Source File - -SOURCE=.\syshdrs.h -# End Source File -# Begin Source File - -SOURCE=.\util.h -# End Source File -# Begin Source File - -SOURCE=.\wincfg.h -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="libncftp" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Static Library" 0x0104 + +CFG=libncftp - 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 "libncftp.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 "libncftp.mak" CFG="libncftp - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "libncftp - Win32 Release" (based on "Win32 (x86) Static Library") +!MESSAGE "libncftp - Win32 Debug" (based on "Win32 (x86) Static Library") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +RSC=rc.exe + +!IF "$(CFG)" == "libncftp - 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 "_MBCS" /D "_LIB" /YX /FD /c +# ADD CPP /nologo /W4 /GX /O2 /Ob1 /I "..\Strn" /I "..\sio" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /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 +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ELSEIF "$(CFG)" == "libncftp - 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 "_MBCS" /D "_LIB" /YX /FD /GZ /c +# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "..\Strn" /I "..\sio" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /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 +LIB32=link.exe -lib +# ADD BASE LIB32 /nologo +# ADD LIB32 /nologo + +!ENDIF + +# Begin Target + +# Name "libncftp - Win32 Release" +# Name "libncftp - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=.\cmds.c +# End Source File +# Begin Source File + +SOURCE=.\errno.c +# End Source File +# Begin Source File + +SOURCE=.\ftp.c +# End Source File +# Begin Source File + +SOURCE=.\glob.c +# End Source File +# Begin Source File + +SOURCE=.\io.c +# End Source File +# Begin Source File + +SOURCE=.\linelist.c +# End Source File +# Begin Source File + +SOURCE=.\mksrczip.bat +# End Source File +# Begin Source File + +SOURCE=.\open.c +# End Source File +# Begin Source File + +SOURCE=.\rcmd.c +# End Source File +# Begin Source File + +SOURCE=.\util.c +# End Source File +# Begin Source File + +SOURCE=.\util2.cpp +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=.\ftp.h +# End Source File +# Begin Source File + +SOURCE=.\ncftp.h +# End Source File +# Begin Source File + +SOURCE=.\ncftp_errno.h +# End Source File +# Begin Source File + +SOURCE=.\syshdrs.h +# End Source File +# Begin Source File + +SOURCE=.\util.h +# End Source File +# Begin Source File + +SOURCE=.\wincfg.h +# End Source File +# End Group +# End Target +# End Project diff --git a/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsw b/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsw index 73dea0c41cf..d02da5713cb 100644 --- a/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsw +++ b/modules/rosapps/applications/net/ncftp/libncftp/libncftp.dsw @@ -1,29 +1,29 @@ -Microsoft Developer Studio Workspace File, Format Version 6.00 -# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE! - -############################################################################### - -Project: "libncftp"=.\libncftp.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: "libncftp"=.\libncftp.dsp - Package Owner=<4> + +Package=<5> +{{{ +}}} + +Package=<4> +{{{ +}}} + +############################################################################### + +Global: + +Package=<5> +{{{ +}}} + +Package=<3> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/applications/net/tsclient/mstsc/mstsc.vcproj b/modules/rosapps/applications/net/tsclient/mstsc/mstsc.vcproj index a6d58a9cc1c..a992a2dd97c 100644 --- a/modules/rosapps/applications/net/tsclient/mstsc/mstsc.vcproj +++ b/modules/rosapps/applications/net/tsclient/mstsc/mstsc.vcproj @@ -1,223 +1,223 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/rosapps/applications/net/tsclient/mstscax/mstscax.vcproj b/modules/rosapps/applications/net/tsclient/mstscax/mstscax.vcproj index 7b3b3b0144f..8bcb326864a 100644 --- a/modules/rosapps/applications/net/tsclient/mstscax/mstscax.vcproj +++ b/modules/rosapps/applications/net/tsclient/mstscax/mstscax.vcproj @@ -1,223 +1,223 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.sln b/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.sln index 2abaf3db1b1..ca875311dfb 100644 --- a/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.sln +++ b/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.sln @@ -1,20 +1,20 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual C++ Express 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mstscax", "mstscax.vcproj", "{933B2293-F12F-4B01-98B4-BF635B8B4F36}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Debug|Win32.ActiveCfg = Debug|Win32 - {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Debug|Win32.Build.0 = Debug|Win32 - {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Release|Win32.ActiveCfg = Release|Win32 - {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual C++ Express 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mstscax", "mstscax.vcproj", "{933B2293-F12F-4B01-98B4-BF635B8B4F36}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Debug|Win32.ActiveCfg = Debug|Win32 + {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Debug|Win32.Build.0 = Debug|Win32 + {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Release|Win32.ActiveCfg = Release|Win32 + {933B2293-F12F-4B01-98B4-BF635B8B4F36}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.vcproj b/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.vcproj index 7e3def8edf7..faedc3958a1 100644 --- a/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.vcproj +++ b/modules/rosapps/applications/net/tsclient/porting-tools/mstscax/mstscax.vcproj @@ -1,229 +1,229 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/rosapps/applications/net/tsclient/rdesktop/rdesktop-core.vcproj b/modules/rosapps/applications/net/tsclient/rdesktop/rdesktop-core.vcproj index 80dbfd2eebf..a14669cf27c 100644 --- a/modules/rosapps/applications/net/tsclient/rdesktop/rdesktop-core.vcproj +++ b/modules/rosapps/applications/net/tsclient/rdesktop/rdesktop-core.vcproj @@ -1,251 +1,251 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/rosapps/applications/screensavers/blankscr/lang/de-DE.rc b/modules/rosapps/applications/screensavers/blankscr/lang/de-DE.rc index 49fcfcbde66..7c0d2452389 100644 --- a/modules/rosapps/applications/screensavers/blankscr/lang/de-DE.rc +++ b/modules/rosapps/applications/screensavers/blankscr/lang/de-DE.rc @@ -1,7 +1,7 @@ -LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Schwarzer Bildschirm" - IDS_TEXT "Keine Einstellungen notwendig." -END +LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Schwarzer Bildschirm" + IDS_TEXT "Keine Einstellungen notwendig." +END diff --git a/modules/rosapps/applications/screensavers/blankscr/lang/fr-FR.rc b/modules/rosapps/applications/screensavers/blankscr/lang/fr-FR.rc index d447aa93281..71b013f1a1b 100644 --- a/modules/rosapps/applications/screensavers/blankscr/lang/fr-FR.rc +++ b/modules/rosapps/applications/screensavers/blankscr/lang/fr-FR.rc @@ -1,7 +1,7 @@ -LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Vide" - IDS_TEXT "Il n'y a aucune option à définir." -END +LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Vide" + IDS_TEXT "Il n'y a aucune option à définir." +END diff --git a/modules/rosapps/applications/screensavers/blankscr/lang/lt-LT.rc b/modules/rosapps/applications/screensavers/blankscr/lang/lt-LT.rc index 1388448a30e..713e3c80b0c 100644 --- a/modules/rosapps/applications/screensavers/blankscr/lang/lt-LT.rc +++ b/modules/rosapps/applications/screensavers/blankscr/lang/lt-LT.rc @@ -1,16 +1,16 @@ -/* - * PROJECT: ReactOS Blank ScreenSaver - * LICENSE: GPL - See COPYING in the top level directory - * FILE: rosapps/applications/screensavers/blankscr/lang/lt-LT.rc - * PURPOSE: Lithuanian Language File - * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) - * DATE: 2007-12-02 - */ - -LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Tuščias" - IDS_TEXT "Nėra keičiamų parametrų." -END +/* + * PROJECT: ReactOS Blank ScreenSaver + * LICENSE: GPL - See COPYING in the top level directory + * FILE: rosapps/applications/screensavers/blankscr/lang/lt-LT.rc + * PURPOSE: Lithuanian Language File + * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) + * DATE: 2007-12-02 + */ + +LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Tuščias" + IDS_TEXT "Nėra keičiamų parametrų." +END diff --git a/modules/rosapps/applications/screensavers/blankscr/lang/nl-NL.rc b/modules/rosapps/applications/screensavers/blankscr/lang/nl-NL.rc index 90dbfcdce65..6008bd7c4eb 100644 --- a/modules/rosapps/applications/screensavers/blankscr/lang/nl-NL.rc +++ b/modules/rosapps/applications/screensavers/blankscr/lang/nl-NL.rc @@ -1,7 +1,7 @@ -LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Blank" - IDS_TEXT "Geen dingen om in te stellen." -END +LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Blank" + IDS_TEXT "Geen dingen om in te stellen." +END diff --git a/modules/rosapps/applications/screensavers/blankscr/lang/sk-SK.rc b/modules/rosapps/applications/screensavers/blankscr/lang/sk-SK.rc index 383d6a0857a..ec1ae29a99c 100644 --- a/modules/rosapps/applications/screensavers/blankscr/lang/sk-SK.rc +++ b/modules/rosapps/applications/screensavers/blankscr/lang/sk-SK.rc @@ -1,11 +1,11 @@ -/* TRANSLATOR: Kario (kario@szm.sk) - * DATE OF TR: 22-09-2007 - */ - -LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Blank" - IDS_TEXT "Nie sú potrebné žiadne nastavenia." -END +/* TRANSLATOR: Kario (kario@szm.sk) + * DATE OF TR: 22-09-2007 + */ + +LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Blank" + IDS_TEXT "Nie sú potrebné žiadne nastavenia." +END diff --git a/modules/rosapps/applications/screensavers/blankscr/lang/uk-UA.rc b/modules/rosapps/applications/screensavers/blankscr/lang/uk-UA.rc index dc91c9c0cde..bab25b297f5 100644 --- a/modules/rosapps/applications/screensavers/blankscr/lang/uk-UA.rc +++ b/modules/rosapps/applications/screensavers/blankscr/lang/uk-UA.rc @@ -1,15 +1,15 @@ -/* - * PROJECT: Default ScreenSaver - * LICENSE: Public Domain - * FILE: rosapps/applications/screensavers/blankscr/lang/uk-UA.rc - * PURPOSE: Ukraianian Language File for Default ScreenSaver - * TRANSLATOR: Artem Reznikov - */ - -LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Порожньо" - IDS_TEXT "Ця заставка не має налаштовуваних параметрів." -END +/* + * PROJECT: Default ScreenSaver + * LICENSE: Public Domain + * FILE: rosapps/applications/screensavers/blankscr/lang/uk-UA.rc + * PURPOSE: Ukraianian Language File for Default ScreenSaver + * TRANSLATOR: Artem Reznikov + */ + +LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Порожньо" + IDS_TEXT "Ця заставка не має налаштовуваних параметрів." +END diff --git a/modules/rosapps/applications/screensavers/blankscr/resource.h b/modules/rosapps/applications/screensavers/blankscr/resource.h index ed255005438..7d201a84a0e 100644 --- a/modules/rosapps/applications/screensavers/blankscr/resource.h +++ b/modules/rosapps/applications/screensavers/blankscr/resource.h @@ -1,4 +1,4 @@ -#pragma once - -#define IDS_TEXT 3 -#define IDI_ICON 101 +#pragma once + +#define IDS_TEXT 3 +#define IDI_ICON 101 diff --git a/modules/rosapps/applications/screensavers/cylfrac/lang/de-DE.rc b/modules/rosapps/applications/screensavers/cylfrac/lang/de-DE.rc index 0eb24f5fcc1..99b0cbf849c 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/lang/de-DE.rc +++ b/modules/rosapps/applications/screensavers/cylfrac/lang/de-DE.rc @@ -1,8 +1,8 @@ -LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Cylinders Fractal" - IDS_TITLE "Über" - IDS_TEXT "Cylinders Fractal von unC0Rr.\nSpeziell für ReactOS." -END +LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Cylinders Fractal" + IDS_TITLE "Über" + IDS_TEXT "Cylinders Fractal von unC0Rr.\nSpeziell für ReactOS." +END diff --git a/modules/rosapps/applications/screensavers/cylfrac/lang/fr-FR.rc b/modules/rosapps/applications/screensavers/cylfrac/lang/fr-FR.rc index 935b8065e50..c5a3ef84bfe 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/lang/fr-FR.rc +++ b/modules/rosapps/applications/screensavers/cylfrac/lang/fr-FR.rc @@ -1,8 +1,8 @@ -LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Fractale de cylindres" - IDS_TITLE "À propos de" - IDS_TEXT "Fractale de cylindres par unC0Rr.\nSpécial pour ReactOS." -END +LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Fractale de cylindres" + IDS_TITLE "À propos de" + IDS_TEXT "Fractale de cylindres par unC0Rr.\nSpécial pour ReactOS." +END diff --git a/modules/rosapps/applications/screensavers/cylfrac/lang/lt-LT.rc b/modules/rosapps/applications/screensavers/cylfrac/lang/lt-LT.rc index c00ffc6a9bc..6be189e584d 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/lang/lt-LT.rc +++ b/modules/rosapps/applications/screensavers/cylfrac/lang/lt-LT.rc @@ -1,17 +1,17 @@ -/* - * PROJECT: ReactOS Cylinders fractal - * LICENSE: GPL - See COPYING in the top level directory - * FILE: rosapps/applications/screensavers/cylfrac/lang/lt-LT.rc - * PURPOSE: Lithuanian Language File - * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) - * DATE: 2007-12-02 - */ - -LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Cilindrinis fraktalas" - IDS_TITLE "Apie" - IDS_TEXT "Ekrano užsklanda sukurta unC0Rr.\nSpecialiai ReactOS." -END +/* + * PROJECT: ReactOS Cylinders fractal + * LICENSE: GPL - See COPYING in the top level directory + * FILE: rosapps/applications/screensavers/cylfrac/lang/lt-LT.rc + * PURPOSE: Lithuanian Language File + * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) + * DATE: 2007-12-02 + */ + +LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Cilindrinis fraktalas" + IDS_TITLE "Apie" + IDS_TEXT "Ekrano užsklanda sukurta unC0Rr.\nSpecialiai ReactOS." +END diff --git a/modules/rosapps/applications/screensavers/cylfrac/lang/nl-NL.rc b/modules/rosapps/applications/screensavers/cylfrac/lang/nl-NL.rc index 01f4aa65921..5f3ccde36ee 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/lang/nl-NL.rc +++ b/modules/rosapps/applications/screensavers/cylfrac/lang/nl-NL.rc @@ -1,8 +1,8 @@ -LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Cylinders fractal" - IDS_TITLE "Informatie" - IDS_TEXT "Cylinders fractal door unC0Rr.\nSpeciaal voor ReactOS." -END +LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Cylinders fractal" + IDS_TITLE "Informatie" + IDS_TEXT "Cylinders fractal door unC0Rr.\nSpeciaal voor ReactOS." +END diff --git a/modules/rosapps/applications/screensavers/cylfrac/lang/sk-SK.rc b/modules/rosapps/applications/screensavers/cylfrac/lang/sk-SK.rc index 4c877b5dc70..c51d15ec1c4 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/lang/sk-SK.rc +++ b/modules/rosapps/applications/screensavers/cylfrac/lang/sk-SK.rc @@ -1,12 +1,12 @@ -/* TRANSLATOR: Kario (kario@szm.sk) - * DATE OF TR: 22-09-2007 - */ - -LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Cylinders fractal" - IDS_TITLE "Čo je ..." - IDS_TEXT "Cylinders fractal od unC0Rr.\nŠpeciálne pre systém ReactOS." -END +/* TRANSLATOR: Kario (kario@szm.sk) + * DATE OF TR: 22-09-2007 + */ + +LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Cylinders fractal" + IDS_TITLE "Čo je ..." + IDS_TEXT "Cylinders fractal od unC0Rr.\nŠpeciálne pre systém ReactOS." +END diff --git a/modules/rosapps/applications/screensavers/cylfrac/lang/uk-UA.rc b/modules/rosapps/applications/screensavers/cylfrac/lang/uk-UA.rc index c7c5841bbba..2f08a0f2ddd 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/lang/uk-UA.rc +++ b/modules/rosapps/applications/screensavers/cylfrac/lang/uk-UA.rc @@ -1,16 +1,16 @@ -/* - * PROJECT: Cylinders fractal ScreenSaver - * LICENSE: Public Domain - * FILE: base/applications/screensavers/cylfrac/lang/uk-UA.rc - * PURPOSE: Ukraianian Language File for Cylinders fractal ScreenSaver - * TRANSLATOR: Artem Reznikov - */ - -LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Заставка ""Cylinders fractal""" - IDS_TITLE "Про" - IDS_TEXT "Cylinders fractal від unC0Rr.\nСпеціально для ReactOS." -END +/* + * PROJECT: Cylinders fractal ScreenSaver + * LICENSE: Public Domain + * FILE: base/applications/screensavers/cylfrac/lang/uk-UA.rc + * PURPOSE: Ukraianian Language File for Cylinders fractal ScreenSaver + * TRANSLATOR: Artem Reznikov + */ + +LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Заставка ""Cylinders fractal""" + IDS_TITLE "Про" + IDS_TEXT "Cylinders fractal від unC0Rr.\nСпеціально для ReactOS." +END diff --git a/modules/rosapps/applications/screensavers/cylfrac/resource.h b/modules/rosapps/applications/screensavers/cylfrac/resource.h index b3e624368f2..4b748e5fe41 100644 --- a/modules/rosapps/applications/screensavers/cylfrac/resource.h +++ b/modules/rosapps/applications/screensavers/cylfrac/resource.h @@ -1,6 +1,6 @@ -#pragma once - -#define IDS_DESCRIPTION 1 -#define IDS_TITLE 2 -#define IDS_TEXT 3 -#define IDI_ICON 101 +#pragma once + +#define IDS_DESCRIPTION 1 +#define IDS_TITLE 2 +#define IDS_TEXT 3 +#define IDI_ICON 101 diff --git a/modules/rosapps/applications/screensavers/matrix/lang/lt-LT.rc b/modules/rosapps/applications/screensavers/matrix/lang/lt-LT.rc index 032cd727230..3e0208f4d6c 100644 --- a/modules/rosapps/applications/screensavers/matrix/lang/lt-LT.rc +++ b/modules/rosapps/applications/screensavers/matrix/lang/lt-LT.rc @@ -1,62 +1,62 @@ -/* - * PROJECT: ReactOS Matrix ScreenSaver - * LICENSE: GPL - See COPYING in the top level directory - * FILE: base/applications/screensavers/matrix/lang/lt-LT.rc - * PURPOSE: Lithuanian Language File - * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) - * DATE: 2007-12-02 - */ - -#include "resource.h" - -LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT - -IDD_CONFIG DIALOGEX DISCARDABLE 0, 0, 340, 183 -STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Ekrano užsklandos nustatymai" -FONT 8, "MS Shell Dlg" -BEGIN - GROUPBOX "Dekodavimo &greitis",IDC_STATIC,7,7,128,36 - LTEXT "Lėtas",IDC_STATIC,13,24,22,8 - CONTROL "Slider1",IDC_SLIDER1,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,17,62,22 - LTEXT "Greitas",IDC_STATIC,104,24,29,8 - GROUPBOX "Šifro &tankumas",IDC_STATIC,7,50,128,36 - LTEXT "Mažas",IDC_STATIC,13,67,28,8 - CONTROL "Slider1",IDC_SLIDER2,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,60,62,22 - LTEXT "Didelis",IDC_STATIC,104,67,29,8 - GROUPBOX "&Pranešimo vaizdavimo greitis",IDC_MSGSPEEDGRP,7,93,127,36 - LTEXT "Lėtas",IDC_STATIC,13,110,22,8 - CONTROL "Slider3",IDC_SLIDER3,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,103,62,22 - LTEXT "Greitas",IDC_STATIC,104,110,27,8 - GROUPBOX "Šrifto &dydis",IDC_STATIC,7,137,127,36 - LTEXT "Mažas",IDC_STATIC,13,153,24,8 - CONTROL "Slider3",IDC_SLIDER4,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,146,62,22 - LTEXT "Didelis",IDC_STATIC,104,153,25,8 - GROUPBOX "&Koduoti pranešimai",IDC_STATIC,145,7,188,142 - COMBOBOX IDC_COMBO1,153,22,172,62,CBS_DROPDOWN | WS_VSCROLL | - WS_TABSTOP - CONTROL "",IDC_PREVIEW,"Static",SS_LEFTNOWORDWRAP | - SS_CENTERIMAGE | WS_GROUP,154,39,116,72 - PUSHBUTTON "&Įtraukti",IDC_ADD,280,41,44,18 - PUSHBUTTON "&Pašalinti",IDC_REMOVE,280,66,44,18 - CONTROL "Atsitiktiniai pranešimai",IDC_RANDOM,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,151,134,91,10 - DEFPUSHBUTTON "OK",IDOK,222,162,50,14 - PUSHBUTTON "Atšaukti",IDCANCEL,283,162,50,14 - LTEXT "&Šriftas:",IDC_STATIC,151,118,38,8 - COMBOBOX IDC_COMBO2,195,116,130,71,CBS_DROPDOWNLIST | CBS_SORT | - WS_VSCROLL | WS_TABSTOP - CONTROL "Pus&juodis šriftas",IDC_BOLD,"Button",BS_AUTOCHECKBOX | - BS_MULTILINE | WS_TABSTOP,247,134,77,10 - CTEXT "Ekrano užsklanda Matrica www.catch22.org.uk",IDC_ABOUT,140, - 151,75,25 -END - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Matrica" -END +/* + * PROJECT: ReactOS Matrix ScreenSaver + * LICENSE: GPL - See COPYING in the top level directory + * FILE: base/applications/screensavers/matrix/lang/lt-LT.rc + * PURPOSE: Lithuanian Language File + * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) + * DATE: 2007-12-02 + */ + +#include "resource.h" + +LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT + +IDD_CONFIG DIALOGEX DISCARDABLE 0, 0, 340, 183 +STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Ekrano užsklandos nustatymai" +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX "Dekodavimo &greitis",IDC_STATIC,7,7,128,36 + LTEXT "Lėtas",IDC_STATIC,13,24,22,8 + CONTROL "Slider1",IDC_SLIDER1,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,17,62,22 + LTEXT "Greitas",IDC_STATIC,104,24,29,8 + GROUPBOX "Šifro &tankumas",IDC_STATIC,7,50,128,36 + LTEXT "Mažas",IDC_STATIC,13,67,28,8 + CONTROL "Slider1",IDC_SLIDER2,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,60,62,22 + LTEXT "Didelis",IDC_STATIC,104,67,29,8 + GROUPBOX "&Pranešimo vaizdavimo greitis",IDC_MSGSPEEDGRP,7,93,127,36 + LTEXT "Lėtas",IDC_STATIC,13,110,22,8 + CONTROL "Slider3",IDC_SLIDER3,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,103,62,22 + LTEXT "Greitas",IDC_STATIC,104,110,27,8 + GROUPBOX "Šrifto &dydis",IDC_STATIC,7,137,127,36 + LTEXT "Mažas",IDC_STATIC,13,153,24,8 + CONTROL "Slider3",IDC_SLIDER4,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,146,62,22 + LTEXT "Didelis",IDC_STATIC,104,153,25,8 + GROUPBOX "&Koduoti pranešimai",IDC_STATIC,145,7,188,142 + COMBOBOX IDC_COMBO1,153,22,172,62,CBS_DROPDOWN | WS_VSCROLL | + WS_TABSTOP + CONTROL "",IDC_PREVIEW,"Static",SS_LEFTNOWORDWRAP | + SS_CENTERIMAGE | WS_GROUP,154,39,116,72 + PUSHBUTTON "&Įtraukti",IDC_ADD,280,41,44,18 + PUSHBUTTON "&Pašalinti",IDC_REMOVE,280,66,44,18 + CONTROL "Atsitiktiniai pranešimai",IDC_RANDOM,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,151,134,91,10 + DEFPUSHBUTTON "OK",IDOK,222,162,50,14 + PUSHBUTTON "Atšaukti",IDCANCEL,283,162,50,14 + LTEXT "&Šriftas:",IDC_STATIC,151,118,38,8 + COMBOBOX IDC_COMBO2,195,116,130,71,CBS_DROPDOWNLIST | CBS_SORT | + WS_VSCROLL | WS_TABSTOP + CONTROL "Pus&juodis šriftas",IDC_BOLD,"Button",BS_AUTOCHECKBOX | + BS_MULTILINE | WS_TABSTOP,247,134,77,10 + CTEXT "Ekrano užsklanda Matrica www.catch22.org.uk",IDC_ABOUT,140, + 151,75,25 +END + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Matrica" +END diff --git a/modules/rosapps/applications/screensavers/matrix/lang/nl-NL.rc b/modules/rosapps/applications/screensavers/matrix/lang/nl-NL.rc index 2bb4e49677c..e2ba43ff3b8 100644 --- a/modules/rosapps/applications/screensavers/matrix/lang/nl-NL.rc +++ b/modules/rosapps/applications/screensavers/matrix/lang/nl-NL.rc @@ -1,53 +1,53 @@ -#include "resource.h" - -LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL - -IDD_CONFIG DIALOGEX DISCARDABLE 0, 0, 340, 183 -STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU -CAPTION "Matrix Schermbeveiliging Configuratie" -FONT 8, "MS Shell Dlg" -BEGIN - GROUPBOX "Decodeer &Snelheid",IDC_STATIC,7,7,128,36 - LTEXT "Langzamer",IDC_STATIC,13,24,22,8 - CONTROL "Slider1",IDC_SLIDER1,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,17,62,22 - LTEXT "Sneller",IDC_STATIC,104,24,20,8 - GROUPBOX "Cypher &Dichtheid",IDC_STATIC,7,50,128,36 - LTEXT "Minder",IDC_STATIC,13,67,19,8 - CONTROL "Slider1",IDC_SLIDER2,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,60,62,22 - LTEXT "Meer",IDC_STATIC,104,67,23,8 - GROUPBOX "Snel&heid van het bericht",IDC_MSGSPEEDGRP,7,93,127,36 - LTEXT "Langzamer",IDC_STATIC,13,110,22,8 - CONTROL "Slider3",IDC_SLIDER3,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,103,62,22 - LTEXT "Sneller",IDC_STATIC,104,110,22,8 - GROUPBOX "&Lettertype Grootte",IDC_STATIC,7,137,127,36 - LTEXT "Kleiner",IDC_STATIC,13,153,24,8 - CONTROL "Slider3",IDC_SLIDER4,"msctls_trackbar32",TBS_AUTOTICKS | - TBS_BOTH | WS_TABSTOP,38,146,62,22 - LTEXT "Groter",IDC_STATIC,104,153,25,8 - GROUPBOX "&Gecodeerde berichten",IDC_STATIC,145,7,188,142 - COMBOBOX IDC_COMBO1,153,22,172,62,CBS_DROPDOWN | WS_VSCROLL | - WS_TABSTOP - CONTROL "",IDC_PREVIEW,"Static",SS_LEFTNOWORDWRAP | - SS_CENTERIMAGE | WS_GROUP,154,39,116,72 - PUSHBUTTON "&Toevoegen",IDC_ADD,280,41,44,18 - PUSHBUTTON "&Verwijderen",IDC_REMOVE,280,66,44,18 - CONTROL "Willekeurige &Berichten",IDC_RANDOM,"Button",BS_AUTOCHECKBOX | - WS_TABSTOP,151,134,85,10 - DEFPUSHBUTTON "OK",IDOK,222,162,50,14 - PUSHBUTTON "&Annuleren",IDCANCEL,283,162,50,14 - LTEXT "&Lettertype:",IDC_STATIC,151,118,38,8 - COMBOBOX IDC_COMBO2,195,116,130,71,CBS_DROPDOWNLIST | CBS_SORT | - WS_VSCROLL | WS_TABSTOP - CONTROL "&Vetgedrukt",IDC_BOLD,"Button",BS_AUTOCHECKBOX | - BS_MULTILINE | WS_TABSTOP,247,134,46,10 - CTEXT "Matrix Schermbeveiliging www.catch22.org.uk",IDC_ABOUT,140, - 158,75,18 -END - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Matrix Schermbeveiliging" -END +#include "resource.h" + +LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL + +IDD_CONFIG DIALOGEX DISCARDABLE 0, 0, 340, 183 +STYLE DS_SHELLFONT | DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU +CAPTION "Matrix Schermbeveiliging Configuratie" +FONT 8, "MS Shell Dlg" +BEGIN + GROUPBOX "Decodeer &Snelheid",IDC_STATIC,7,7,128,36 + LTEXT "Langzamer",IDC_STATIC,13,24,22,8 + CONTROL "Slider1",IDC_SLIDER1,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,17,62,22 + LTEXT "Sneller",IDC_STATIC,104,24,20,8 + GROUPBOX "Cypher &Dichtheid",IDC_STATIC,7,50,128,36 + LTEXT "Minder",IDC_STATIC,13,67,19,8 + CONTROL "Slider1",IDC_SLIDER2,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,60,62,22 + LTEXT "Meer",IDC_STATIC,104,67,23,8 + GROUPBOX "Snel&heid van het bericht",IDC_MSGSPEEDGRP,7,93,127,36 + LTEXT "Langzamer",IDC_STATIC,13,110,22,8 + CONTROL "Slider3",IDC_SLIDER3,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,103,62,22 + LTEXT "Sneller",IDC_STATIC,104,110,22,8 + GROUPBOX "&Lettertype Grootte",IDC_STATIC,7,137,127,36 + LTEXT "Kleiner",IDC_STATIC,13,153,24,8 + CONTROL "Slider3",IDC_SLIDER4,"msctls_trackbar32",TBS_AUTOTICKS | + TBS_BOTH | WS_TABSTOP,38,146,62,22 + LTEXT "Groter",IDC_STATIC,104,153,25,8 + GROUPBOX "&Gecodeerde berichten",IDC_STATIC,145,7,188,142 + COMBOBOX IDC_COMBO1,153,22,172,62,CBS_DROPDOWN | WS_VSCROLL | + WS_TABSTOP + CONTROL "",IDC_PREVIEW,"Static",SS_LEFTNOWORDWRAP | + SS_CENTERIMAGE | WS_GROUP,154,39,116,72 + PUSHBUTTON "&Toevoegen",IDC_ADD,280,41,44,18 + PUSHBUTTON "&Verwijderen",IDC_REMOVE,280,66,44,18 + CONTROL "Willekeurige &Berichten",IDC_RANDOM,"Button",BS_AUTOCHECKBOX | + WS_TABSTOP,151,134,85,10 + DEFPUSHBUTTON "OK",IDOK,222,162,50,14 + PUSHBUTTON "&Annuleren",IDCANCEL,283,162,50,14 + LTEXT "&Lettertype:",IDC_STATIC,151,118,38,8 + COMBOBOX IDC_COMBO2,195,116,130,71,CBS_DROPDOWNLIST | CBS_SORT | + WS_VSCROLL | WS_TABSTOP + CONTROL "&Vetgedrukt",IDC_BOLD,"Button",BS_AUTOCHECKBOX | + BS_MULTILINE | WS_TABSTOP,247,134,46,10 + CTEXT "Matrix Schermbeveiliging www.catch22.org.uk",IDC_ABOUT,140, + 158,75,18 +END + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Matrix Schermbeveiliging" +END diff --git a/modules/rosapps/applications/screensavers/matrix/matrix.dsp b/modules/rosapps/applications/screensavers/matrix/matrix.dsp index 658f8187d13..84edc90ce48 100644 --- a/modules/rosapps/applications/screensavers/matrix/matrix.dsp +++ b/modules/rosapps/applications/screensavers/matrix/matrix.dsp @@ -1,158 +1,158 @@ -# Microsoft Developer Studio Project File - Name="matrix" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Application" 0x0101 - -CFG=matrix - 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 "matrix.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 "matrix.mak" CFG="matrix - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "matrix - Win32 Release" (based on "Win32 (x86) Application") -!MESSAGE "matrix - Win32 Debug" (based on "Win32 (x86) Application") -!MESSAGE - -# Begin Project -# PROP AllowPerConfigDependencies 0 -# PROP Scc_ProjName "" -# PROP Scc_LocalPath "" -CPP=cl.exe -MTL=midl.exe -RSC=rc.exe - -!IF "$(CFG)" == "matrix - 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 Ignore_Export_Lib 0 -# PROP Target_Dir "" -# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD CPP /nologo /W3 /GX- /Zi /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c -# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "NDEBUG" -# ADD RSC /l 0x809 /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:windows /machine:I386 -# ADD LINK32 libctiny.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:windows /map /debug /machine:I386 - -!ELSEIF "$(CFG)" == "matrix - 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 "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c -# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 -# ADD BASE RSC /l 0x809 /d "_DEBUG" -# ADD RSC /l 0x809 /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:windows /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:windows /debug /machine:I386 /pdbtype:sept - -!ENDIF - -# Begin Target - -# Name "matrix - Win32 Release" -# Name "matrix - Win32 Debug" -# Begin Group "Source Files" - -# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" -# Begin Source File - -SOURCE=.\config.c -# End Source File -# Begin Source File - -SOURCE=.\matrix.c -# End Source File -# Begin Source File - -SOURCE=.\rsrc.rc -# End Source File -# Begin Source File - -SOURCE=.\message.c -# End Source File -# Begin Source File - -SOURCE=.\password.c -# End Source File -# Begin Source File - -SOURCE=.\screensave.c -# End Source File -# Begin Source File - -SOURCE=.\settings.c -# End Source File -# End Group -# Begin Group "Header Files" - -# PROP Default_Filter "h;hpp;hxx;hm;inl" -# Begin Source File - -SOURCE=.\globals.h -# End Source File -# Begin Source File - -SOURCE=.\matrix.h -# End Source File -# Begin Source File - -SOURCE=.\message.h -# End Source File -# End Group -# Begin Group "Resource Files" - -# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" -# Begin Source File - -SOURCE=.\cursor1.cur -# End Source File -# Begin Source File - -SOURCE=.\icon1.ico -# End Source File -# Begin Source File - -SOURCE=.\matrix.bmp -# End Source File -# Begin Source File - -SOURCE=.\matrix2.bmp -# End Source File -# End Group -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="matrix" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Application" 0x0101 + +CFG=matrix - 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 "matrix.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 "matrix.mak" CFG="matrix - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "matrix - Win32 Release" (based on "Win32 (x86) Application") +!MESSAGE "matrix - Win32 Debug" (based on "Win32 (x86) Application") +!MESSAGE + +# Begin Project +# PROP AllowPerConfigDependencies 0 +# PROP Scc_ProjName "" +# PROP Scc_LocalPath "" +CPP=cl.exe +MTL=midl.exe +RSC=rc.exe + +!IF "$(CFG)" == "matrix - 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 Ignore_Export_Lib 0 +# PROP Target_Dir "" +# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD CPP /nologo /W3 /GX- /Zi /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /c +# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x809 /d "NDEBUG" +# ADD RSC /l 0x809 /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:windows /machine:I386 +# ADD LINK32 libctiny.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:windows /map /debug /machine:I386 + +!ELSEIF "$(CFG)" == "matrix - 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 "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /YX /FD /GZ /c +# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 +# ADD BASE RSC /l 0x809 /d "_DEBUG" +# ADD RSC /l 0x809 /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:windows /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:windows /debug /machine:I386 /pdbtype:sept + +!ENDIF + +# Begin Target + +# Name "matrix - Win32 Release" +# Name "matrix - Win32 Debug" +# Begin Group "Source Files" + +# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" +# Begin Source File + +SOURCE=.\config.c +# End Source File +# Begin Source File + +SOURCE=.\matrix.c +# End Source File +# Begin Source File + +SOURCE=.\rsrc.rc +# End Source File +# Begin Source File + +SOURCE=.\message.c +# End Source File +# Begin Source File + +SOURCE=.\password.c +# End Source File +# Begin Source File + +SOURCE=.\screensave.c +# End Source File +# Begin Source File + +SOURCE=.\settings.c +# End Source File +# End Group +# Begin Group "Header Files" + +# PROP Default_Filter "h;hpp;hxx;hm;inl" +# Begin Source File + +SOURCE=.\globals.h +# End Source File +# Begin Source File + +SOURCE=.\matrix.h +# End Source File +# Begin Source File + +SOURCE=.\message.h +# End Source File +# End Group +# Begin Group "Resource Files" + +# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" +# Begin Source File + +SOURCE=.\cursor1.cur +# End Source File +# Begin Source File + +SOURCE=.\icon1.ico +# End Source File +# Begin Source File + +SOURCE=.\matrix.bmp +# End Source File +# Begin Source File + +SOURCE=.\matrix2.bmp +# End Source File +# End Group +# End Target +# End Project diff --git a/modules/rosapps/applications/screensavers/starfield/lang/de-DE.rc b/modules/rosapps/applications/screensavers/starfield/lang/de-DE.rc index 82ed03a3ad0..0581b8d298b 100644 --- a/modules/rosapps/applications/screensavers/starfield/lang/de-DE.rc +++ b/modules/rosapps/applications/screensavers/starfield/lang/de-DE.rc @@ -1,8 +1,8 @@ -LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Starfield Bildschirmschoner" - IDS_TITLE "Über" - IDS_TEXT "Keinerlei Einstellungen notwendig." -END +LANGUAGE LANG_GERMAN, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Starfield Bildschirmschoner" + IDS_TITLE "Über" + IDS_TEXT "Keinerlei Einstellungen notwendig." +END diff --git a/modules/rosapps/applications/screensavers/starfield/lang/fr-FR.rc b/modules/rosapps/applications/screensavers/starfield/lang/fr-FR.rc index 331cdf3fefa..9440ea462df 100644 --- a/modules/rosapps/applications/screensavers/starfield/lang/fr-FR.rc +++ b/modules/rosapps/applications/screensavers/starfield/lang/fr-FR.rc @@ -1,8 +1,8 @@ -LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Écran de veille Champ d'étoile" - IDS_TITLE "À propos de" - IDS_TEXT "Il n'y a aucune option à définir." -END +LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Écran de veille Champ d'étoile" + IDS_TITLE "À propos de" + IDS_TEXT "Il n'y a aucune option à définir." +END diff --git a/modules/rosapps/applications/screensavers/starfield/lang/lt-LT.rc b/modules/rosapps/applications/screensavers/starfield/lang/lt-LT.rc index a0a7ddc57a9..ad6d9b98c18 100644 --- a/modules/rosapps/applications/screensavers/starfield/lang/lt-LT.rc +++ b/modules/rosapps/applications/screensavers/starfield/lang/lt-LT.rc @@ -1,17 +1,17 @@ -/* - * PROJECT: ReactOS Starfield ScreenSaver - * LICENSE: GPL - See COPYING in the top level directory - * FILE: rosapps/applications/screensavers/starfield/lang/lt-LT.rc - * PURPOSE: Lithuanian Language File - * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) - * DATE: 2007-09-24 - */ - -LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Žvaigždžių laukas" - IDS_TITLE "Apie" - IDS_TEXT "Nėra keičiamų parametrų." -END +/* + * PROJECT: ReactOS Starfield ScreenSaver + * LICENSE: GPL - See COPYING in the top level directory + * FILE: rosapps/applications/screensavers/starfield/lang/lt-LT.rc + * PURPOSE: Lithuanian Language File + * TRANSLATOR: Vytis "CMan" Girdžijauskas (cman@cman.us) + * DATE: 2007-09-24 + */ + +LANGUAGE LANG_LITHUANIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Žvaigždžių laukas" + IDS_TITLE "Apie" + IDS_TEXT "Nėra keičiamų parametrų." +END diff --git a/modules/rosapps/applications/screensavers/starfield/lang/nl-NL.rc b/modules/rosapps/applications/screensavers/starfield/lang/nl-NL.rc index eb9f9dcadae..67e77c1e1bb 100644 --- a/modules/rosapps/applications/screensavers/starfield/lang/nl-NL.rc +++ b/modules/rosapps/applications/screensavers/starfield/lang/nl-NL.rc @@ -1,8 +1,8 @@ -LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Sterren Schermbeveiliging" - IDS_TITLE "Informatie" - IDS_TEXT "Geen dingen om in te stellen." -END +LANGUAGE LANG_DUTCH, SUBLANG_NEUTRAL + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Sterren Schermbeveiliging" + IDS_TITLE "Informatie" + IDS_TEXT "Geen dingen om in te stellen." +END diff --git a/modules/rosapps/applications/screensavers/starfield/lang/sk-SK.rc b/modules/rosapps/applications/screensavers/starfield/lang/sk-SK.rc index f1406a06a25..30777798a45 100644 --- a/modules/rosapps/applications/screensavers/starfield/lang/sk-SK.rc +++ b/modules/rosapps/applications/screensavers/starfield/lang/sk-SK.rc @@ -1,12 +1,12 @@ -/* TRANSLATOR: Kario (kario@szm.sk) - * DATE OF TR: 22-09-2007 - */ - -LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Hviezdne pole - šetrič obrazovky" - IDS_TITLE "Čo je ..." - IDS_TEXT "Nie sú potrebné žiadne nastavenia." -END +/* TRANSLATOR: Kario (kario@szm.sk) + * DATE OF TR: 22-09-2007 + */ + +LANGUAGE LANG_SLOVAK, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Hviezdne pole - šetrič obrazovky" + IDS_TITLE "Čo je ..." + IDS_TEXT "Nie sú potrebné žiadne nastavenia." +END diff --git a/modules/rosapps/applications/screensavers/starfield/lang/uk-UA.rc b/modules/rosapps/applications/screensavers/starfield/lang/uk-UA.rc index 0ba4392f5fb..beed22b4b88 100644 --- a/modules/rosapps/applications/screensavers/starfield/lang/uk-UA.rc +++ b/modules/rosapps/applications/screensavers/starfield/lang/uk-UA.rc @@ -1,16 +1,16 @@ -/* - * PROJECT: Default ScreenSaver - * LICENSE: Public Domain - * FILE: base/applications/screensavers/starfield/lang/uk-UA.rc - * PURPOSE: Ukraianian Language File for Default ScreenSaver - * TRANSLATOR: Artem Reznikov - */ - -LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT - -STRINGTABLE DISCARDABLE -BEGIN - IDS_DESCRIPTION "Заставка ""Зоряне поле""" - IDS_TITLE "Про" - IDS_TEXT "Ця заставка не має налаштовуваних параметрів." -END +/* + * PROJECT: Default ScreenSaver + * LICENSE: Public Domain + * FILE: base/applications/screensavers/starfield/lang/uk-UA.rc + * PURPOSE: Ukraianian Language File for Default ScreenSaver + * TRANSLATOR: Artem Reznikov + */ + +LANGUAGE LANG_UKRAINIAN, SUBLANG_DEFAULT + +STRINGTABLE DISCARDABLE +BEGIN + IDS_DESCRIPTION "Заставка ""Зоряне поле""" + IDS_TITLE "Про" + IDS_TEXT "Ця заставка не має налаштовуваних параметрів." +END diff --git a/modules/rosapps/applications/screensavers/starfield/resource.h b/modules/rosapps/applications/screensavers/starfield/resource.h index b3e624368f2..4b748e5fe41 100644 --- a/modules/rosapps/applications/screensavers/starfield/resource.h +++ b/modules/rosapps/applications/screensavers/starfield/resource.h @@ -1,6 +1,6 @@ -#pragma once - -#define IDS_DESCRIPTION 1 -#define IDS_TITLE 2 -#define IDS_TEXT 3 -#define IDI_ICON 101 +#pragma once + +#define IDS_DESCRIPTION 1 +#define IDS_TITLE 2 +#define IDS_TEXT 3 +#define IDI_ICON 101 diff --git a/modules/rosapps/applications/sysutils/logevent/logevent.c b/modules/rosapps/applications/sysutils/logevent/logevent.c index a3231069afe..1dc0d24ddfd 100644 --- a/modules/rosapps/applications/sysutils/logevent/logevent.c +++ b/modules/rosapps/applications/sysutils/logevent/logevent.c @@ -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 -#include -#include -#include -#include -#include -#include - -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 +#include +#include +#include +#include +#include +#include + +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; +} diff --git a/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsp b/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsp index 60c88816d13..afdee8ee1bf 100644 --- a/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsp +++ b/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsp @@ -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 diff --git a/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsw b/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsw index abc4fb05151..4e62b4600b2 100644 --- a/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsw +++ b/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.dsw @@ -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> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.plg b/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.plg index cc807431f79..44d211e3f62 100644 --- a/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.plg +++ b/modules/rosapps/applications/sysutils/mkdosfs/mkdosfs.plg @@ -1,49 +1,49 @@ - - -
-

Build Log

-

---------------------Configuration: mkdosfs - Win32 Release-------------------- -

-

Command Lines

-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"" -

Output Window

-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... - - - -

Results

-mkdosfs.exe - 0 error(s), 16 warning(s) -
- - + + +
+

Build Log

+

+--------------------Configuration: mkdosfs - Win32 Release-------------------- +

+

Command Lines

+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"" +

Output Window

+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... + + + +

Results

+mkdosfs.exe - 0 error(s), 16 warning(s) +
+ + diff --git a/modules/rosapps/applications/sysutils/rosddt/hw.php b/modules/rosapps/applications/sysutils/rosddt/hw.php index f16e92b44d0..2d636e0f4e8 100644 --- a/modules/rosapps/applications/sysutils/rosddt/hw.php +++ b/modules/rosapps/applications/sysutils/rosddt/hw.php @@ -1,10 +1,10 @@ -Unable to open file for writing.\n"; - exit; -} -fputs ($file, $_POST['data']. "\n"); -fclose ($file); -echo "_ok_"; +Unable to open file for writing.\n"; + exit; +} +fputs ($file, $_POST['data']. "\n"); +fclose ($file); +echo "_ok_"; ?> \ No newline at end of file diff --git a/modules/rosapps/applications/sysutils/rosddt/rosddt.ini b/modules/rosapps/applications/sysutils/rosddt/rosddt.ini index 518ec174e07..ea851cc83d1 100644 --- a/modules/rosapps/applications/sysutils/rosddt/rosddt.ini +++ b/modules/rosapps/applications/sysutils/rosddt/rosddt.ini @@ -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 \ No newline at end of file diff --git a/modules/rosapps/applications/sysutils/systeminfo/lang/fr-FR.rc b/modules/rosapps/applications/sysutils/systeminfo/lang/fr-FR.rc index 37c5b437b32..cc751f12f96 100644 --- a/modules/rosapps/applications/sysutils/systeminfo/lang/fr-FR.rc +++ b/modules/rosapps/applications/sysutils/systeminfo/lang/fr-FR.rc @@ -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 diff --git a/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsp b/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsp index 8e17e73fa92..d46550fb584 100644 --- a/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsp +++ b/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsp @@ -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 diff --git a/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsw b/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsw index 6966888c193..f1116917ed3 100644 --- a/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsw +++ b/modules/rosapps/applications/sysutils/utils/sdkparse/sdkparse.dsw @@ -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> +{{{ +}}} + +############################################################################### + diff --git a/modules/rosapps/rosapps_shortcuts.inf b/modules/rosapps/rosapps_shortcuts.inf index 3276dfbb6d4..a18333a33d8 100644 --- a/modules/rosapps/rosapps_shortcuts.inf +++ b/modules/rosapps/rosapps_shortcuts.inf @@ -1,341 +1,341 @@ -[Version] -Signature = $Windows NT$ -ClassGUID = {00000000-0000-0000-0000-000000000000} - -[ShortcutFolders] -DesktopShortcuts=0, -ProgramShortcuts=2, -AdminToolsShortcuts=47, -AccessoriesShortcuts=2, %ACCESSORIES% -SystemToolsShortcuts=2, %ACCESSORIES%\%SYSTOOLS% -AccessibilityShortcuts=2, %ACCESSORIES%\%ACCESSIBILITY% -EntertainmentShortcuts=2, %ACCESSORIES%\%ENTERTAINMENT% -CommunicationsShortcuts=2, %ACCESSORIES%\%COMMUNICATIONS% -GamesShortcuts=2, %GAMES% - -[SystemToolsShortcuts] -%SystemRoot%\system32\fontsub.exe, %FONTSUB_TITLE%, %FONTSUB_DESC%, 0 -%SystemRoot%\system32\screenshot.exe, %SCREENSHOT_TITLE%, %SCREENSHOT_DESC%, 0, %HOMEDRIVE%%HOMEPATH% - -;-------------------------------- STRINGS ------------------------------- - -[Strings] -ACCESSORIES=Accessories -SYSTOOLS=System Tools -ACCESSIBILITY=Accessibility -ENTERTAINMENT=Entertainment -COMMUNICATIONS=Communications -GAMES=Games - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Take screenshot - -; Bulgarian -[Strings.0402] -ACCESSORIES=Принадлежности -SYSTOOLS=Системни средства -ACCESSIBILITY=Достъпност -ENTERTAINMENT=Забавление -COMMUNICATIONS=Communications -GAMES=Игри - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Снимка -SCREENSHOT_DESC=Заснемане на екрана - -; Czech -[Strings.0405] -ACCESSORIES=Příslušenství -SYSTOOLS=Systémové nástroje -ACCESSIBILITY=Usnadnění -ENTERTAINMENT=Zábava -COMMUNICATIONS=Communications -GAMES=Hry - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Sejmout obrazovku -SCREENSHOT_DESC=Sejmout obrazovku - -; German -[Strings.0407] -ACCESSORIES=Zubehör -SYSTOOLS=Systemprogramme -ACCESSIBILITY=Eingabehilfen -ENTERTAINMENT=Unterhaltung -COMMUNICATIONS=Kommunikation -GAMES=Spiele - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Screenshot erstellen - -; Greek -[Strings.0408] -ACCESSORIES=Βοηθήματα -SYSTOOLS=Εργαλεία Συστήματος -ACCESSIBILITY=Για άτομα με ειδικές ανάγκες -ENTERTAINMENT=Διασκέδαση -COMMUNICATIONS=Communications -GAMES=Παιχνίδια - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Take screenshot - -; Spanish -[Strings.0a] -ACCESSORIES=Accesorios -SYSTOOLS=Herramientas del sistema -ACCESSIBILITY=Accesibilidad -ENTERTAINMENT=Entretenimiento -COMMUNICATIONS=Comunicaciones -GAMES=Juegos - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Captura de pantalla -SCREENSHOT_DESC=Guarda secciones de la pantalla como un archivo de imagen. - -; Estonian -[Strings.0425] -ACCESSORIES=Tarvikud -SYSTOOLS=Süsteemi tööriistad -ACCESSIBILITY=Ligipääsetavus -ENTERTAINMENT=Meelelahutus -COMMUNICATIONS=Communications -GAMES=Mängud - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Tee ekraanitõmmis - -; French -[Strings.040C] -ACCESSORIES=Accessoires -SYSTOOLS=Outils système -ACCESSIBILITY=Accessibilité -ENTERTAINMENT=Divertissement -COMMUNICATIONS=Communications -GAMES=Jeux - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Capture d'écran -SCREENSHOT_DESC=Faire une capture d'écran - -; Hebrew -[Strings.040D] -ACCESSORIES=עזרים -SYSTOOLS=כלי מערכת -ACCESSIBILITY=נגישות -ENTERTAINMENT=בידור -COMMUNICATIONS=Communications -GAMES=משחקים - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=צילום מסך - -; Hungarian -[Strings.040E] -ACCESSORIES=Accessories -SYSTOOLS=System Tools -ACCESSIBILITY=Accessibility -ENTERTAINMENT=Entertainment -COMMUNICATIONS=Communications -GAMES=Játékok - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Take screenshot - -; Indonesian -[Strings.0421] -ACCESSORIES=Aksesoris -SYSTOOLS=System Tools -ACCESSIBILITY=Accessibility -ENTERTAINMENT=Entertainment -COMMUNICATIONS=Communications -GAMES=Games - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Ambil foto layar - -; Italian -[Strings.0410] -ACCESSORIES=Accessori -SYSTOOLS=Strumenti di sistema -ACCESSIBILITY=Accessibilità -ENTERTAINMENT=Divertimento -COMMUNICATIONS=Comunicazioni -GAMES=Giochi - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Salva una schermata - -; Japanese -[Strings.0411] -ACCESSORIES=アクセサリ -SYSTOOLS=システムツール -ACCESSIBILITY=アクセシビリティ -ENTERTAINMENT=エンターテイメント -COMMUNICATIONS=Communications -GAMES=ゲーム - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=フォント代替エディタ -SCREENSHOT_TITLE=スナップショット -SCREENSHOT_DESC=スクリーンショットを撮ります - -; Dutch -[Strings.0413] -ACCESSORIES=Accessories -SYSTOOLS=System Tools -ACCESSIBILITY=Accessibility -ENTERTAINMENT=Entertainment -COMMUNICATIONS=Communications -GAMES=Games - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Take screenshot - -; Norwegian -[Strings.0414] -ACCESSORIES=Tilbehør -SYSTOOLS=Systemverktøy -ACCESSIBILITY=Tilgjengelighet -ENTERTAINMENT=Underholdning -COMMUNICATIONS=Communications -GAMES=Spill - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Ta skjermbilde - -; Polish -[Strings.0415] -ACCESSORIES=Akcesoria -SYSTOOLS=Narzędzia systemowe -ACCESSIBILITY=Ułatwienia dostępu -ENTERTAINMENT=Rozrywka -COMMUNICATIONS=Komunikacja -GAMES=Gry - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Zrzut ekranu -SCREENSHOT_DESC=Zrób zrzut ekranu - -; Portuguese - Brazil -[Strings.0416] -ACCESSORIES=Acessórios -SYSTOOLS=Ferramentas de Sistema -ACCESSIBILITY=Acessibilidade -ENTERTAINMENT=Entretenimento -COMMUNICATIONS=Communications -GAMES=Jogos - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=SnapShot -SCREENSHOT_DESC=Capturar Tela - -; Romanian -[Strings.0418] -ACCESSORIES=Accesorii -SYSTOOLS=Instrumente de sistem -ACCESSIBILITY=Accesibilitate -ENTERTAINMENT=Divertisment -COMMUNICATIONS=Communicații -GAMES=Jocuri - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Captură de ecran -SCREENSHOT_DESC=Program pentru executarea de capturi de ecran. - -; Russian -[Strings.0419] -ACCESSORIES=Стандартные -SYSTOOLS=Служебные -ACCESSIBILITY=Специальные возможности -ENTERTAINMENT=Развлечения -COMMUNICATIONS=Связь -GAMES=Игры - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Скриншот -SCREENSHOT_DESC=Сделать снимок экрана - -; Slovak -[Strings.041B] -ACCESSORIES=Príslušenstvo -SYSTOOLS=Systémové nástroje -ACCESSIBILITY=Zjednodušenie ovládania -ENTERTAINMENT=Zábava -COMMUNICATIONS=Communications -GAMES=Hry - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Momentka //SnapShot -SCREENSHOT_DESC=Uložiť obrazovku - -; Turkish -[Strings.041f] -ACCESSORIES=Donatılar -SYSTOOLS=Dizge Araçları -ACCESSIBILITY=Erişilebilirlik -ENTERTAINMENT=Eğlence -COMMUNICATIONS=İletişim -GAMES=Oyunlar - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Ekran Görüntüsü -SCREENSHOT_DESC=Ekran görüntüsü al - -; Ukrainian -[Strings.0422] -ACCESSORIES=Допоміжні програми -SYSTOOLS=Службові -ACCESSIBILITY=Спеціальні можливості -ENTERTAINMENT=Розваги -COMMUNICATIONS=Communications -GAMES=Ігри - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=Знімок екрану -SCREENSHOT_DESC=Зробити знімок екрана - -; Chinese -[Strings.0804] -ACCESSORIES=附件 -SYSTOOLS=系统工具 -ACCESSIBILITY=辅助功能 -ENTERTAINMENT=娱乐 -COMMUNICATIONS=通信 -GAMES=游戏 - -FONTSUB_TITLE=FontSub -FONTSUB_DESC=Font Substitutes Editor -SCREENSHOT_TITLE=屏幕截图 -SCREENSHOT_DESC=屏幕截图 +[Version] +Signature = $Windows NT$ +ClassGUID = {00000000-0000-0000-0000-000000000000} + +[ShortcutFolders] +DesktopShortcuts=0, +ProgramShortcuts=2, +AdminToolsShortcuts=47, +AccessoriesShortcuts=2, %ACCESSORIES% +SystemToolsShortcuts=2, %ACCESSORIES%\%SYSTOOLS% +AccessibilityShortcuts=2, %ACCESSORIES%\%ACCESSIBILITY% +EntertainmentShortcuts=2, %ACCESSORIES%\%ENTERTAINMENT% +CommunicationsShortcuts=2, %ACCESSORIES%\%COMMUNICATIONS% +GamesShortcuts=2, %GAMES% + +[SystemToolsShortcuts] +%SystemRoot%\system32\fontsub.exe, %FONTSUB_TITLE%, %FONTSUB_DESC%, 0 +%SystemRoot%\system32\screenshot.exe, %SCREENSHOT_TITLE%, %SCREENSHOT_DESC%, 0, %HOMEDRIVE%%HOMEPATH% + +;-------------------------------- STRINGS ------------------------------- + +[Strings] +ACCESSORIES=Accessories +SYSTOOLS=System Tools +ACCESSIBILITY=Accessibility +ENTERTAINMENT=Entertainment +COMMUNICATIONS=Communications +GAMES=Games + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Take screenshot + +; Bulgarian +[Strings.0402] +ACCESSORIES=Принадлежности +SYSTOOLS=Системни средства +ACCESSIBILITY=Достъпност +ENTERTAINMENT=Забавление +COMMUNICATIONS=Communications +GAMES=Игри + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Снимка +SCREENSHOT_DESC=Заснемане на екрана + +; Czech +[Strings.0405] +ACCESSORIES=Příslušenství +SYSTOOLS=Systémové nástroje +ACCESSIBILITY=Usnadnění +ENTERTAINMENT=Zábava +COMMUNICATIONS=Communications +GAMES=Hry + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Sejmout obrazovku +SCREENSHOT_DESC=Sejmout obrazovku + +; German +[Strings.0407] +ACCESSORIES=Zubehör +SYSTOOLS=Systemprogramme +ACCESSIBILITY=Eingabehilfen +ENTERTAINMENT=Unterhaltung +COMMUNICATIONS=Kommunikation +GAMES=Spiele + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Screenshot erstellen + +; Greek +[Strings.0408] +ACCESSORIES=Βοηθήματα +SYSTOOLS=Εργαλεία Συστήματος +ACCESSIBILITY=Για άτομα με ειδικές ανάγκες +ENTERTAINMENT=Διασκέδαση +COMMUNICATIONS=Communications +GAMES=Παιχνίδια + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Take screenshot + +; Spanish +[Strings.0a] +ACCESSORIES=Accesorios +SYSTOOLS=Herramientas del sistema +ACCESSIBILITY=Accesibilidad +ENTERTAINMENT=Entretenimiento +COMMUNICATIONS=Comunicaciones +GAMES=Juegos + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Captura de pantalla +SCREENSHOT_DESC=Guarda secciones de la pantalla como un archivo de imagen. + +; Estonian +[Strings.0425] +ACCESSORIES=Tarvikud +SYSTOOLS=Süsteemi tööriistad +ACCESSIBILITY=Ligipääsetavus +ENTERTAINMENT=Meelelahutus +COMMUNICATIONS=Communications +GAMES=Mängud + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Tee ekraanitõmmis + +; French +[Strings.040C] +ACCESSORIES=Accessoires +SYSTOOLS=Outils système +ACCESSIBILITY=Accessibilité +ENTERTAINMENT=Divertissement +COMMUNICATIONS=Communications +GAMES=Jeux + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Capture d'écran +SCREENSHOT_DESC=Faire une capture d'écran + +; Hebrew +[Strings.040D] +ACCESSORIES=עזרים +SYSTOOLS=כלי מערכת +ACCESSIBILITY=נגישות +ENTERTAINMENT=בידור +COMMUNICATIONS=Communications +GAMES=משחקים + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=צילום מסך + +; Hungarian +[Strings.040E] +ACCESSORIES=Accessories +SYSTOOLS=System Tools +ACCESSIBILITY=Accessibility +ENTERTAINMENT=Entertainment +COMMUNICATIONS=Communications +GAMES=Játékok + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Take screenshot + +; Indonesian +[Strings.0421] +ACCESSORIES=Aksesoris +SYSTOOLS=System Tools +ACCESSIBILITY=Accessibility +ENTERTAINMENT=Entertainment +COMMUNICATIONS=Communications +GAMES=Games + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Ambil foto layar + +; Italian +[Strings.0410] +ACCESSORIES=Accessori +SYSTOOLS=Strumenti di sistema +ACCESSIBILITY=Accessibilità +ENTERTAINMENT=Divertimento +COMMUNICATIONS=Comunicazioni +GAMES=Giochi + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Salva una schermata + +; Japanese +[Strings.0411] +ACCESSORIES=アクセサリ +SYSTOOLS=システムツール +ACCESSIBILITY=アクセシビリティ +ENTERTAINMENT=エンターテイメント +COMMUNICATIONS=Communications +GAMES=ゲーム + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=フォント代替エディタ +SCREENSHOT_TITLE=スナップショット +SCREENSHOT_DESC=スクリーンショットを撮ります + +; Dutch +[Strings.0413] +ACCESSORIES=Accessories +SYSTOOLS=System Tools +ACCESSIBILITY=Accessibility +ENTERTAINMENT=Entertainment +COMMUNICATIONS=Communications +GAMES=Games + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Take screenshot + +; Norwegian +[Strings.0414] +ACCESSORIES=Tilbehør +SYSTOOLS=Systemverktøy +ACCESSIBILITY=Tilgjengelighet +ENTERTAINMENT=Underholdning +COMMUNICATIONS=Communications +GAMES=Spill + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Ta skjermbilde + +; Polish +[Strings.0415] +ACCESSORIES=Akcesoria +SYSTOOLS=Narzędzia systemowe +ACCESSIBILITY=Ułatwienia dostępu +ENTERTAINMENT=Rozrywka +COMMUNICATIONS=Komunikacja +GAMES=Gry + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Zrzut ekranu +SCREENSHOT_DESC=Zrób zrzut ekranu + +; Portuguese - Brazil +[Strings.0416] +ACCESSORIES=Acessórios +SYSTOOLS=Ferramentas de Sistema +ACCESSIBILITY=Acessibilidade +ENTERTAINMENT=Entretenimento +COMMUNICATIONS=Communications +GAMES=Jogos + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=SnapShot +SCREENSHOT_DESC=Capturar Tela + +; Romanian +[Strings.0418] +ACCESSORIES=Accesorii +SYSTOOLS=Instrumente de sistem +ACCESSIBILITY=Accesibilitate +ENTERTAINMENT=Divertisment +COMMUNICATIONS=Communicații +GAMES=Jocuri + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Captură de ecran +SCREENSHOT_DESC=Program pentru executarea de capturi de ecran. + +; Russian +[Strings.0419] +ACCESSORIES=Стандартные +SYSTOOLS=Служебные +ACCESSIBILITY=Специальные возможности +ENTERTAINMENT=Развлечения +COMMUNICATIONS=Связь +GAMES=Игры + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Скриншот +SCREENSHOT_DESC=Сделать снимок экрана + +; Slovak +[Strings.041B] +ACCESSORIES=Príslušenstvo +SYSTOOLS=Systémové nástroje +ACCESSIBILITY=Zjednodušenie ovládania +ENTERTAINMENT=Zábava +COMMUNICATIONS=Communications +GAMES=Hry + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Momentka //SnapShot +SCREENSHOT_DESC=Uložiť obrazovku + +; Turkish +[Strings.041f] +ACCESSORIES=Donatılar +SYSTOOLS=Dizge Araçları +ACCESSIBILITY=Erişilebilirlik +ENTERTAINMENT=Eğlence +COMMUNICATIONS=İletişim +GAMES=Oyunlar + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Ekran Görüntüsü +SCREENSHOT_DESC=Ekran görüntüsü al + +; Ukrainian +[Strings.0422] +ACCESSORIES=Допоміжні програми +SYSTOOLS=Службові +ACCESSIBILITY=Спеціальні можливості +ENTERTAINMENT=Розваги +COMMUNICATIONS=Communications +GAMES=Ігри + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=Знімок екрану +SCREENSHOT_DESC=Зробити знімок екрана + +; Chinese +[Strings.0804] +ACCESSORIES=附件 +SYSTOOLS=系统工具 +ACCESSIBILITY=辅助功能 +ENTERTAINMENT=娱乐 +COMMUNICATIONS=通信 +GAMES=游戏 + +FONTSUB_TITLE=FontSub +FONTSUB_DESC=Font Substitutes Editor +SCREENSHOT_TITLE=屏幕截图 +SCREENSHOT_DESC=屏幕截图 diff --git a/modules/rostests/apitests/atl/CImage_WIP.txt b/modules/rostests/apitests/atl/CImage_WIP.txt index ea2671239b8..7cc02b77afe 100644 --- a/modules/rostests/apitests/atl/CImage_WIP.txt +++ b/modules/rostests/apitests/atl/CImage_WIP.txt @@ -1,86 +1,86 @@ -Test files: - -atl_apitest: CImage class from reactos -CImage.exe : CImage class from microsoft - -================================================================================================================ -Windows Server 2003 SP2: -================================================================================================================ ->atl_apitest.exe CImage -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(234): Test failed: Expected bpp to be 8, was: 32 -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 0) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 1) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 2) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(260): Test failed: Expected bpp to be 24, was: 32 (for 3) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 4) - -CImage: 79 tests executed (0 marked as todo, 6 failures), 0 skipped. -================================================================================================================ ->CImage.exe -CImage: 79 tests executed (0 marked as todo, 0 failures), 0 skipped. -================================================================================================================ -================================================================================================================ -Windows 10: -================================================================================================================ ->atl_apitest.exe CImage -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(234): Test failed: Expected bpp to be 8, was: 32 -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 0) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 1) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 2) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(260): Test failed: Expected bpp to be 24, was: 32 (for 3) -R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 4) - -CImage: 79 tests executed (0 marked as todo, 6 failures), 0 skipped. -================================================================================================================ ->CImage.exe -CImage: 79 tests executed (0 marked as todo, 0 failures), 0 skipped. -================================================================================================================ -================================================================================================================ -ReactOS: -================================================================================================================ ->atl_apitest.exe CImage -CImage.cpp:234: Test failed: Expected bpp to be 8, was: 32 -CImage.cpp:265: Test failed: Expected bpp to be 8, was: 32 (for 0) -CImage.cpp:245: Test failed: Expected hr to be S_OK, was: 80004005 (for 1) -CImage.cpp:251: Test failed: Expected hr to be S_OK, was: 80004005 (for 1) -CImage.cpp:254: Test failed: Expected width to be 48, was: 0 (for 1) -CImage.cpp:256: Test failed: Expected height to be 48, was: 0 (for 1) -CImage.cpp:265: Test failed: Expected bpp to be 8, was: 0 (for 1) -CImage.cpp:148: Test failed: Expected status to be 0, was: 1 -CImage.cpp:149: Test failed: Expected a valid bitmap -CImage.cpp:245: Test failed: Expected hr to be S_OK, was: 80004005 (for 2) -CImage.cpp:251: Test failed: Expected hr to be S_OK, was: 80004005 (for 2) -CImage.cpp:254: Test failed: Expected width to be 48, was: 0 (for 2) -CImage.cpp:256: Test failed: Expected height to be 48, was: 0 (for 2) -CImage.cpp:265: Test failed: Expected bpp to be 8, was: 0 (for 2) -CImage.cpp:148: Test failed: Expected status to be 0, was: 1 -CImage.cpp:149: Test failed: Expected a valid bitmap -CImage.cpp:260: Test failed: Expected bpp to be 24, was: 32 (for 3) -CImage.cpp:154: Test failed: Expected PixelFormat to be 0x21808, was: 0x30803 -CImage.cpp:265: Test failed: Expected bpp to be 8, was: 32 (for 4) -CImage.cpp:154: Test failed: Expected PixelFormat to be 0x30803, was: 0x21808 - -CImage: 77 tests executed (0 marked as todo, 20 failures), 0 skipped. -================================================================================================================ ->CImage.exe -../CImage.cpp (245): Expected hr to be S_OK, was: 80004005 (for 1) -../CImage.cpp (251): Expected hr to be S_OK, was: 80004005 (for 1) -../CImage.cpp (254): Expected width to be 48, was: 0 (for 1) -../CImage.cpp (256): Expected height to be 48, was: 0 (for 1) -../CImage.cpp (265): Expected bpp to be 8, was: 0 (for 1) -../CImage.cpp (148): Expected status to be 0, was: 1 -../CImage.cpp (149): Expected a valid bitmap -../CImage.cpp (245): Expected hr to be S_OK, was: 80004005 (for 2) -../CImage.cpp (251): Expected hr to be S_OK, was: 80004005 (for 2) -../CImage.cpp (254): Expected width to be 48, was: 0 (for 2) -../CImage.cpp (256): Expected height to be 48, was: 0 (for 2) -../CImage.cpp (265): Expected bpp to be 8, was: 0 (for 2) -../CImage.cpp (148): Expected status to be 0, was: 1 -../CImage.cpp (149): Expected a valid bitmap -../CImage.cpp (260): Expected bpp to be 24, was: 8 (for 3) -../CImage.cpp (154): Expected PixelFormat to be 0x21808, was: 0x30803 -../CImage.cpp (265): Expected bpp to be 8, was: 24 (for 4) -../CImage.cpp (154): Expected PixelFormat to be 0x30803, was: 0x21808 -CImage: 77 tests executed (0 marked as todo, 18 failures), 0 skipped. -================================================================================================================ - +Test files: + +atl_apitest: CImage class from reactos +CImage.exe : CImage class from microsoft + +================================================================================================================ +Windows Server 2003 SP2: +================================================================================================================ +>atl_apitest.exe CImage +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(234): Test failed: Expected bpp to be 8, was: 32 +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 0) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 1) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 2) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(260): Test failed: Expected bpp to be 24, was: 32 (for 3) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 4) + +CImage: 79 tests executed (0 marked as todo, 6 failures), 0 skipped. +================================================================================================================ +>CImage.exe +CImage: 79 tests executed (0 marked as todo, 0 failures), 0 skipped. +================================================================================================================ +================================================================================================================ +Windows 10: +================================================================================================================ +>atl_apitest.exe CImage +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(234): Test failed: Expected bpp to be 8, was: 32 +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 0) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 1) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 2) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(260): Test failed: Expected bpp to be 24, was: 32 (for 3) +R:\src\trunk\reactos\modules\rostests\apitests\atl\CImage.cpp(265): Test failed: Expected bpp to be 8, was: 32 (for 4) + +CImage: 79 tests executed (0 marked as todo, 6 failures), 0 skipped. +================================================================================================================ +>CImage.exe +CImage: 79 tests executed (0 marked as todo, 0 failures), 0 skipped. +================================================================================================================ +================================================================================================================ +ReactOS: +================================================================================================================ +>atl_apitest.exe CImage +CImage.cpp:234: Test failed: Expected bpp to be 8, was: 32 +CImage.cpp:265: Test failed: Expected bpp to be 8, was: 32 (for 0) +CImage.cpp:245: Test failed: Expected hr to be S_OK, was: 80004005 (for 1) +CImage.cpp:251: Test failed: Expected hr to be S_OK, was: 80004005 (for 1) +CImage.cpp:254: Test failed: Expected width to be 48, was: 0 (for 1) +CImage.cpp:256: Test failed: Expected height to be 48, was: 0 (for 1) +CImage.cpp:265: Test failed: Expected bpp to be 8, was: 0 (for 1) +CImage.cpp:148: Test failed: Expected status to be 0, was: 1 +CImage.cpp:149: Test failed: Expected a valid bitmap +CImage.cpp:245: Test failed: Expected hr to be S_OK, was: 80004005 (for 2) +CImage.cpp:251: Test failed: Expected hr to be S_OK, was: 80004005 (for 2) +CImage.cpp:254: Test failed: Expected width to be 48, was: 0 (for 2) +CImage.cpp:256: Test failed: Expected height to be 48, was: 0 (for 2) +CImage.cpp:265: Test failed: Expected bpp to be 8, was: 0 (for 2) +CImage.cpp:148: Test failed: Expected status to be 0, was: 1 +CImage.cpp:149: Test failed: Expected a valid bitmap +CImage.cpp:260: Test failed: Expected bpp to be 24, was: 32 (for 3) +CImage.cpp:154: Test failed: Expected PixelFormat to be 0x21808, was: 0x30803 +CImage.cpp:265: Test failed: Expected bpp to be 8, was: 32 (for 4) +CImage.cpp:154: Test failed: Expected PixelFormat to be 0x30803, was: 0x21808 + +CImage: 77 tests executed (0 marked as todo, 20 failures), 0 skipped. +================================================================================================================ +>CImage.exe +../CImage.cpp (245): Expected hr to be S_OK, was: 80004005 (for 1) +../CImage.cpp (251): Expected hr to be S_OK, was: 80004005 (for 1) +../CImage.cpp (254): Expected width to be 48, was: 0 (for 1) +../CImage.cpp (256): Expected height to be 48, was: 0 (for 1) +../CImage.cpp (265): Expected bpp to be 8, was: 0 (for 1) +../CImage.cpp (148): Expected status to be 0, was: 1 +../CImage.cpp (149): Expected a valid bitmap +../CImage.cpp (245): Expected hr to be S_OK, was: 80004005 (for 2) +../CImage.cpp (251): Expected hr to be S_OK, was: 80004005 (for 2) +../CImage.cpp (254): Expected width to be 48, was: 0 (for 2) +../CImage.cpp (256): Expected height to be 48, was: 0 (for 2) +../CImage.cpp (265): Expected bpp to be 8, was: 0 (for 2) +../CImage.cpp (148): Expected status to be 0, was: 1 +../CImage.cpp (149): Expected a valid bitmap +../CImage.cpp (260): Expected bpp to be 24, was: 8 (for 3) +../CImage.cpp (154): Expected PixelFormat to be 0x21808, was: 0x30803 +../CImage.cpp (265): Expected bpp to be 8, was: 24 (for 4) +../CImage.cpp (154): Expected PixelFormat to be 0x30803, was: 0x21808 +CImage: 77 tests executed (0 marked as todo, 18 failures), 0 skipped. +================================================================================================================ + diff --git a/modules/rostests/apitests/atl/devenv/ATLTest.sln b/modules/rostests/apitests/atl/devenv/ATLTest.sln index 9c83ff2ba97..1384c080a6a 100644 --- a/modules/rostests/apitests/atl/devenv/ATLTest.sln +++ b/modules/rostests/apitests/atl/devenv/ATLTest.sln @@ -1,58 +1,58 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.25420.1 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CImage", "CImage.vcxproj", "{AE520E17-2DAE-40FF-B082-F32A7A935FB2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CSimpleArray", "CSimpleArray.vcxproj", "{9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CSimpleMap", "CSimpleMap.vcxproj", "{EC560DE6-6DB3-437D-85CA-582491FE6F95}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CString", "CString.vcxproj", "{FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x64.ActiveCfg = Debug|x64 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x64.Build.0 = Debug|x64 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x86.ActiveCfg = Debug|Win32 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x86.Build.0 = Debug|Win32 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x64.ActiveCfg = Release|x64 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x64.Build.0 = Release|x64 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x86.ActiveCfg = Release|Win32 - {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x86.Build.0 = Release|Win32 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x64.ActiveCfg = Debug|x64 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x64.Build.0 = Debug|x64 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x86.ActiveCfg = Debug|Win32 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x86.Build.0 = Debug|Win32 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x64.ActiveCfg = Release|x64 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x64.Build.0 = Release|x64 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x86.ActiveCfg = Release|Win32 - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x86.Build.0 = Release|Win32 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x64.ActiveCfg = Debug|x64 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x64.Build.0 = Debug|x64 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x86.ActiveCfg = Debug|Win32 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x86.Build.0 = Debug|Win32 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x64.ActiveCfg = Release|x64 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x64.Build.0 = Release|x64 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x86.ActiveCfg = Release|Win32 - {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x86.Build.0 = Release|Win32 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x64.ActiveCfg = Debug|x64 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x64.Build.0 = Debug|x64 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x86.ActiveCfg = Debug|Win32 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x86.Build.0 = Debug|Win32 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x64.ActiveCfg = Release|x64 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x64.Build.0 = Release|x64 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x86.ActiveCfg = Release|Win32 - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x86.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CImage", "CImage.vcxproj", "{AE520E17-2DAE-40FF-B082-F32A7A935FB2}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CSimpleArray", "CSimpleArray.vcxproj", "{9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CSimpleMap", "CSimpleMap.vcxproj", "{EC560DE6-6DB3-437D-85CA-582491FE6F95}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CString", "CString.vcxproj", "{FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x64.ActiveCfg = Debug|x64 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x64.Build.0 = Debug|x64 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x86.ActiveCfg = Debug|Win32 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Debug|x86.Build.0 = Debug|Win32 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x64.ActiveCfg = Release|x64 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x64.Build.0 = Release|x64 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x86.ActiveCfg = Release|Win32 + {AE520E17-2DAE-40FF-B082-F32A7A935FB2}.Release|x86.Build.0 = Release|Win32 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x64.ActiveCfg = Debug|x64 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x64.Build.0 = Debug|x64 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x86.ActiveCfg = Debug|Win32 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Debug|x86.Build.0 = Debug|Win32 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x64.ActiveCfg = Release|x64 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x64.Build.0 = Release|x64 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x86.ActiveCfg = Release|Win32 + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55}.Release|x86.Build.0 = Release|Win32 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x64.ActiveCfg = Debug|x64 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x64.Build.0 = Debug|x64 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x86.ActiveCfg = Debug|Win32 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Debug|x86.Build.0 = Debug|Win32 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x64.ActiveCfg = Release|x64 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x64.Build.0 = Release|x64 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x86.ActiveCfg = Release|Win32 + {EC560DE6-6DB3-437D-85CA-582491FE6F95}.Release|x86.Build.0 = Release|Win32 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x64.ActiveCfg = Debug|x64 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x64.Build.0 = Debug|x64 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x86.ActiveCfg = Debug|Win32 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Debug|x86.Build.0 = Debug|Win32 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x64.ActiveCfg = Release|x64 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x64.Build.0 = Release|x64 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x86.ActiveCfg = Release|Win32 + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/modules/rostests/apitests/atl/devenv/CImage.vcxproj b/modules/rostests/apitests/atl/devenv/CImage.vcxproj index e958b071d37..427a8a371c0 100644 --- a/modules/rostests/apitests/atl/devenv/CImage.vcxproj +++ b/modules/rostests/apitests/atl/devenv/CImage.vcxproj @@ -1,183 +1,183 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - {AE520E17-2DAE-40FF-B082-F32A7A935FB2} - 8.1 - AtlProj - - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - Application - true - Unicode - v120_xp - - - Application - false - v120_xp - Unicode - - - - - - - - - - - - - - - - - - - - - true - true - - - true - true - - - true - false - - - true - false - - - - NotUsing - Level3 - Disabled - WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - Disabled - _WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - MaxSpeed - WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - NotUsing - Level3 - MaxSpeed - _WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - MultiThreaded - MultiThreaded - MultiThreadedDebug - MultiThreadedDebug - NotUsing - NotUsing - NotUsing - NotUsing - - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {AE520E17-2DAE-40FF-B082-F32A7A935FB2} + 8.1 + AtlProj + + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + Application + true + Unicode + v120_xp + + + Application + false + v120_xp + Unicode + + + + + + + + + + + + + + + + + + + + + true + true + + + true + true + + + true + false + + + true + false + + + + NotUsing + Level3 + Disabled + WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + Disabled + _WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + MaxSpeed + WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + NotUsing + Level3 + MaxSpeed + _WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + MultiThreaded + MultiThreaded + MultiThreadedDebug + MultiThreadedDebug + NotUsing + NotUsing + NotUsing + NotUsing + + + + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/atl/devenv/CSimpleArray.vcxproj b/modules/rostests/apitests/atl/devenv/CSimpleArray.vcxproj index 189f4e2a60a..78c9e1de184 100644 --- a/modules/rostests/apitests/atl/devenv/CSimpleArray.vcxproj +++ b/modules/rostests/apitests/atl/devenv/CSimpleArray.vcxproj @@ -1,180 +1,180 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55} - 8.1 - AtlProj - - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - - - - - - - - - - - - - - - - - - - true - true - - - true - true - - - true - false - - - true - false - - - - NotUsing - Level3 - Disabled - WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - Disabled - _WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - MaxSpeed - WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - NotUsing - Level3 - MaxSpeed - _WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - MultiThreaded - MultiThreaded - MultiThreadedDebug - MultiThreadedDebug - NotUsing - NotUsing - NotUsing - NotUsing - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {9F029341-87C2-4BFD-B1FC-D5F5B8D28D55} + 8.1 + AtlProj + + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + + + + + + + + + + + + + + + + + + + true + true + + + true + true + + + true + false + + + true + false + + + + NotUsing + Level3 + Disabled + WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + Disabled + _WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + MaxSpeed + WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + NotUsing + Level3 + MaxSpeed + _WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + MultiThreaded + MultiThreaded + MultiThreadedDebug + MultiThreadedDebug + NotUsing + NotUsing + NotUsing + NotUsing + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/atl/devenv/CSimpleMap.vcxproj b/modules/rostests/apitests/atl/devenv/CSimpleMap.vcxproj index 2ff7f04a3e3..92dd4ef597f 100644 --- a/modules/rostests/apitests/atl/devenv/CSimpleMap.vcxproj +++ b/modules/rostests/apitests/atl/devenv/CSimpleMap.vcxproj @@ -1,180 +1,180 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - {EC560DE6-6DB3-437D-85CA-582491FE6F95} - 8.1 - AtlProj - - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - - - - - - - - - - - - - - - - - - - true - true - - - true - true - - - true - false - - - true - false - - - - NotUsing - Level3 - Disabled - WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - Disabled - _WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - MaxSpeed - WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - NotUsing - Level3 - MaxSpeed - _WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - MultiThreaded - MultiThreaded - MultiThreadedDebug - MultiThreadedDebug - NotUsing - NotUsing - NotUsing - NotUsing - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {EC560DE6-6DB3-437D-85CA-582491FE6F95} + 8.1 + AtlProj + + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + + + + + + + + + + + + + + + + + + + true + true + + + true + true + + + true + false + + + true + false + + + + NotUsing + Level3 + Disabled + WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + Disabled + _WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + MaxSpeed + WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + NotUsing + Level3 + MaxSpeed + _WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + MultiThreaded + MultiThreaded + MultiThreadedDebug + MultiThreadedDebug + NotUsing + NotUsing + NotUsing + NotUsing + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/atl/devenv/CString.vcxproj b/modules/rostests/apitests/atl/devenv/CString.vcxproj index 89cd8d3273d..6a0eeff4187 100644 --- a/modules/rostests/apitests/atl/devenv/CString.vcxproj +++ b/modules/rostests/apitests/atl/devenv/CString.vcxproj @@ -1,189 +1,189 @@ - - - - - Debug - Win32 - - - Release - Win32 - - - Debug - x64 - - - Release - x64 - - - - {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD} - 8.1 - AtlProj - - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - Application - true - v120_xp - Unicode - - - Application - false - v120_xp - Unicode - - - - - - - - - - - - - - - - - - - - - true - true - - - true - true - - - true - false - - - true - false - - - - NotUsing - Level3 - Disabled - WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - Disabled - _WINDOWS;_DEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - _DEBUG;%(PreprocessorDefinitions) - - - Console - true - true - - - - - NotUsing - Level3 - MaxSpeed - WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - NotUsing - Level3 - MaxSpeed - _WINDOWS;NDEBUG;%(PreprocessorDefinitions) - true - - - 0x0409 - $(IntDir);%(AdditionalIncludeDirectories) - NDEBUG;%(PreprocessorDefinitions) - - - Console - true - true - true - true - - - - - MultiThreaded - MultiThreaded - MultiThreadedDebug - MultiThreadedDebug - NotUsing - NotUsing - NotUsing - NotUsing - - - - - - - - - - - - - - + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {FBA6DAE7-7996-4DE1-BD03-9E44F7DB4ABD} + 8.1 + AtlProj + + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + Application + true + v120_xp + Unicode + + + Application + false + v120_xp + Unicode + + + + + + + + + + + + + + + + + + + + + true + true + + + true + true + + + true + false + + + true + false + + + + NotUsing + Level3 + Disabled + WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + Disabled + _WINDOWS;_DEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + _DEBUG;%(PreprocessorDefinitions) + + + Console + true + true + + + + + NotUsing + Level3 + MaxSpeed + WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + NotUsing + Level3 + MaxSpeed + _WINDOWS;NDEBUG;%(PreprocessorDefinitions) + true + + + 0x0409 + $(IntDir);%(AdditionalIncludeDirectories) + NDEBUG;%(PreprocessorDefinitions) + + + Console + true + true + true + true + + + + + MultiThreaded + MultiThreaded + MultiThreadedDebug + MultiThreadedDebug + NotUsing + NotUsing + NotUsing + NotUsing + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/comctl32/comctl32v5.manifest b/modules/rostests/apitests/comctl32/comctl32v5.manifest index 31c5196e716..8b840504bf6 100644 --- a/modules/rostests/apitests/comctl32/comctl32v5.manifest +++ b/modules/rostests/apitests/comctl32/comctl32v5.manifest @@ -1,15 +1,15 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/kernel32/classtest.manifest b/modules/rostests/apitests/kernel32/classtest.manifest index 9f0856cfe3d..902c194a95d 100644 --- a/modules/rostests/apitests/kernel32/classtest.manifest +++ b/modules/rostests/apitests/kernel32/classtest.manifest @@ -1,11 +1,11 @@ - - - - - Button - ButtonListBox - ComboBoxEx32 - ComboLBox - Combobox - - + + + + + Button + ButtonListBox + ComboBoxEx32 + ComboLBox + Combobox + + diff --git a/modules/rostests/apitests/kernel32/classtest2.manifest b/modules/rostests/apitests/kernel32/classtest2.manifest index 8773d12f6f7..dc6dcd1ed12 100644 --- a/modules/rostests/apitests/kernel32/classtest2.manifest +++ b/modules/rostests/apitests/kernel32/classtest2.manifest @@ -1,11 +1,11 @@ - - - - - ButtonListBox - ComboBoxEx32 - ComboLBox - Combobox - MyClass - - + + + + + ButtonListBox + ComboBoxEx32 + ComboLBox + Combobox + MyClass + + diff --git a/modules/rostests/apitests/kernel32/comctl32dep.manifest b/modules/rostests/apitests/kernel32/comctl32dep.manifest index 0da554f8758..b39c4ca21a8 100644 --- a/modules/rostests/apitests/kernel32/comctl32dep.manifest +++ b/modules/rostests/apitests/kernel32/comctl32dep.manifest @@ -1,15 +1,15 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/kernel32/dep1.manifest b/modules/rostests/apitests/kernel32/dep1.manifest index 726a4f2fa2f..64ffd898bc9 100644 --- a/modules/rostests/apitests/kernel32/dep1.manifest +++ b/modules/rostests/apitests/kernel32/dep1.manifest @@ -1,5 +1,5 @@ - - - - - + + + + + diff --git a/modules/rostests/apitests/kernel32/deptest.manifest b/modules/rostests/apitests/kernel32/deptest.manifest index 0e4103d56a2..7c25e19e88f 100644 --- a/modules/rostests/apitests/kernel32/deptest.manifest +++ b/modules/rostests/apitests/kernel32/deptest.manifest @@ -1,15 +1,15 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest b/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest index 8b2054692f9..b9e9ce18f63 100644 --- a/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest +++ b/modules/rostests/apitests/kernel32/redirptest/redir2dep.manifest @@ -1,13 +1,13 @@ - - - - - - - - + + + + + + + + diff --git a/modules/rostests/apitests/kernel32/redirptest/redirtest2.manifest b/modules/rostests/apitests/kernel32/redirptest/redirtest2.manifest index f29a7638d50..21ae9497191 100644 --- a/modules/rostests/apitests/kernel32/redirptest/redirtest2.manifest +++ b/modules/rostests/apitests/kernel32/redirptest/redirtest2.manifest @@ -1,6 +1,6 @@ - - - - - + + + + + \ No newline at end of file diff --git a/modules/rostests/apitests/user32/verclasstest1.manifest b/modules/rostests/apitests/user32/verclasstest1.manifest index b9ece64c723..faba9099f17 100644 --- a/modules/rostests/apitests/user32/verclasstest1.manifest +++ b/modules/rostests/apitests/user32/verclasstest1.manifest @@ -1,9 +1,9 @@ - - - - - VersionTestClass1 - VersionTestClass2 - VersionTestClass4 - - + + + + + VersionTestClass1 + VersionTestClass2 + VersionTestClass4 + + diff --git a/modules/rostests/apitests/user32/verclasstest2.manifest b/modules/rostests/apitests/user32/verclasstest2.manifest index a0757dd29c2..d7a3a2806a6 100644 --- a/modules/rostests/apitests/user32/verclasstest2.manifest +++ b/modules/rostests/apitests/user32/verclasstest2.manifest @@ -1,13 +1,13 @@ - - - - - VersionTestClass1 - VersionTestClass2 - VersionTestClass3 - Button - VersionTestClass7 - VersionTestClass8 - VersionTestClass9 - - + + + + + VersionTestClass1 + VersionTestClass2 + VersionTestClass3 + Button + VersionTestClass7 + VersionTestClass8 + VersionTestClass9 + + diff --git a/modules/rostests/apitests/uxtheme/SetWindowTheme.c b/modules/rostests/apitests/uxtheme/SetWindowTheme.c index ce2b1ad8dc0..f429a0bed1a 100644 --- a/modules/rostests/apitests/uxtheme/SetWindowTheme.c +++ b/modules/rostests/apitests/uxtheme/SetWindowTheme.c @@ -1,80 +1,80 @@ -/* - * PROJECT: ReactOS api tests - * LICENSE: GPL - See COPYING in the top level directory - * PURPOSE: Test for SetWindowTheme - * PROGRAMMERS: Giannis Adamopoulos - */ - -#include -#include -#include -#include - -void TestParams(HWND hwnd) -{ - HRESULT hr; - - hr = SetWindowTheme(0, NULL, NULL); - ok (hr == E_HANDLE, "Expected E_HANDLE got 0x%lx error\n", hr); - - hr = SetWindowTheme((HWND)0xdeaddead, NULL, NULL); - ok (hr == E_HANDLE, "Expected E_HANDLE got 0x%lx error\n", hr); - - hr = SetWindowTheme(hwnd, NULL, NULL); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - hr = SetWindowTheme(hwnd, L"none", L"none"); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - hr = SetWindowTheme(hwnd, NULL, L"none"); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - hr = SetWindowTheme(hwnd, L"none", NULL); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - hr = SetWindowTheme(hwnd, L"", L""); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); -} - -void TestTheme(HWND hwnd) -{ - HRESULT hr; - HTHEME htheme1, htheme2; - - hr = SetWindowTheme(hwnd, NULL, NULL); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - htheme1 = OpenThemeData(hwnd, L"Toolbar"); - ok (htheme1 != NULL, "OpenThemeData failed\n"); - - hr = SetWindowTheme(hwnd, L"", L""); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - htheme2 = OpenThemeData(hwnd, L"Toolbar"); - ok (htheme2 == NULL, "Expected OpenThemeData to fail\n"); - - hr = SetWindowTheme(hwnd, L"TrayNotify", L""); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - htheme2 = OpenThemeData(hwnd, L"Toolbar"); - ok (htheme2 == NULL, "Expected OpenThemeData to fail\n"); - - hr = SetWindowTheme(hwnd, L"TrayNotify", NULL); - ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); - - htheme2 = OpenThemeData(hwnd, L"Toolbar"); - ok (htheme2 != NULL, "OpenThemeData failed\n"); - - ok(htheme1 != htheme2, "Expected different theme data\n"); -} - -START_TEST(SetWindowTheme) -{ - HWND hwnd; - - hwnd = CreateWindowW(L"button", L"Test window", WS_OVERLAPPEDWINDOW | WS_VISIBLE, 100, 100, 200, 200, 0, NULL, NULL, NULL); - ok (hwnd != NULL, "Expected CreateWindowW to succeed\n"); - - TestParams(hwnd); - TestTheme(hwnd); +/* + * PROJECT: ReactOS api tests + * LICENSE: GPL - See COPYING in the top level directory + * PURPOSE: Test for SetWindowTheme + * PROGRAMMERS: Giannis Adamopoulos + */ + +#include +#include +#include +#include + +void TestParams(HWND hwnd) +{ + HRESULT hr; + + hr = SetWindowTheme(0, NULL, NULL); + ok (hr == E_HANDLE, "Expected E_HANDLE got 0x%lx error\n", hr); + + hr = SetWindowTheme((HWND)0xdeaddead, NULL, NULL); + ok (hr == E_HANDLE, "Expected E_HANDLE got 0x%lx error\n", hr); + + hr = SetWindowTheme(hwnd, NULL, NULL); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + hr = SetWindowTheme(hwnd, L"none", L"none"); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + hr = SetWindowTheme(hwnd, NULL, L"none"); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + hr = SetWindowTheme(hwnd, L"none", NULL); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + hr = SetWindowTheme(hwnd, L"", L""); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); +} + +void TestTheme(HWND hwnd) +{ + HRESULT hr; + HTHEME htheme1, htheme2; + + hr = SetWindowTheme(hwnd, NULL, NULL); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + htheme1 = OpenThemeData(hwnd, L"Toolbar"); + ok (htheme1 != NULL, "OpenThemeData failed\n"); + + hr = SetWindowTheme(hwnd, L"", L""); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + htheme2 = OpenThemeData(hwnd, L"Toolbar"); + ok (htheme2 == NULL, "Expected OpenThemeData to fail\n"); + + hr = SetWindowTheme(hwnd, L"TrayNotify", L""); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + htheme2 = OpenThemeData(hwnd, L"Toolbar"); + ok (htheme2 == NULL, "Expected OpenThemeData to fail\n"); + + hr = SetWindowTheme(hwnd, L"TrayNotify", NULL); + ok (hr == S_OK, "Expected S_OK got 0x%lx error\n", hr); + + htheme2 = OpenThemeData(hwnd, L"Toolbar"); + ok (htheme2 != NULL, "OpenThemeData failed\n"); + + ok(htheme1 != htheme2, "Expected different theme data\n"); +} + +START_TEST(SetWindowTheme) +{ + HWND hwnd; + + hwnd = CreateWindowW(L"button", L"Test window", WS_OVERLAPPEDWINDOW | WS_VISIBLE, 100, 100, 200, 200, 0, NULL, NULL, NULL); + ok (hwnd != NULL, "Expected CreateWindowW to succeed\n"); + + TestParams(hwnd); + TestTheme(hwnd); } \ No newline at end of file diff --git a/modules/rostests/win32/advapi32/eventlog/MyEventProvider.mc b/modules/rostests/win32/advapi32/eventlog/MyEventProvider.mc index 4ddb4e6a4d7..ad5e11af0d3 100644 --- a/modules/rostests/win32/advapi32/eventlog/MyEventProvider.mc +++ b/modules/rostests/win32/advapi32/eventlog/MyEventProvider.mc @@ -1,102 +1,102 @@ -; // MyEventProvider.mc - -; // This is the header section. - - -SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS - Informational=0x1:STATUS_SEVERITY_INFORMATIONAL - Warning=0x2:STATUS_SEVERITY_WARNING - Error=0x3:STATUS_SEVERITY_ERROR - ) - - -FacilityNames=(System=0x0:FACILITY_SYSTEM - Runtime=0x2:FACILITY_RUNTIME - Stubs=0x3:FACILITY_STUBS - Io=0x4:FACILITY_IO_ERROR_CODE - ) - -LanguageNames=(English=0x409:MSG00409) - - -; // The following are the categories of events. - -MessageIdTypedef=WORD - -MessageId=0x1 -SymbolicName=NETWORK_CATEGORY -Language=English -Network Events -. - -MessageId=0x2 -SymbolicName=DATABASE_CATEGORY -Language=English -Database Events -. - -MessageId=0x3 -SymbolicName=UI_CATEGORY -Language=English -UI Events -. - - -; // The following are the message definitions. - -MessageIdTypedef=DWORD - -MessageId=0x100 -Severity=Error -Facility=Runtime -SymbolicName=MSG_INVALID_COMMAND -Language=English -The command is not valid. -. - - -MessageId=0x101 -Severity=Error -Facility=System -SymbolicName=MSG_BAD_FILE_CONTENTS -Language=English -File %1 contains content that is not valid. -. - -MessageId=0x102 -Severity=Warning -Facility=System -SymbolicName=MSG_RETRIES -Language=English -There have been %1 retries with %2 success! Disconnect from -the server and try again later. -. - -MessageId=0x103 -Severity=Informational -Facility=System -SymbolicName=MSG_COMPUTE_CONVERSION -Language=English -%1 %%4096 = %2 %%4097. -. - - -; // The following are the parameter strings */ - - -MessageId=0x1000 -Severity=Success -Facility=System -SymbolicName=QUARTS_UNITS -Language=English -quarts%0 -. - -MessageId=0x1001 -Severity=Success -Facility=System -SymbolicName=GALLONS_UNITS -Language=English -gallons%0 -. - +; // MyEventProvider.mc + +; // This is the header section. + + +SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS + Informational=0x1:STATUS_SEVERITY_INFORMATIONAL + Warning=0x2:STATUS_SEVERITY_WARNING + Error=0x3:STATUS_SEVERITY_ERROR + ) + + +FacilityNames=(System=0x0:FACILITY_SYSTEM + Runtime=0x2:FACILITY_RUNTIME + Stubs=0x3:FACILITY_STUBS + Io=0x4:FACILITY_IO_ERROR_CODE + ) + +LanguageNames=(English=0x409:MSG00409) + + +; // The following are the categories of events. + +MessageIdTypedef=WORD + +MessageId=0x1 +SymbolicName=NETWORK_CATEGORY +Language=English +Network Events +. + +MessageId=0x2 +SymbolicName=DATABASE_CATEGORY +Language=English +Database Events +. + +MessageId=0x3 +SymbolicName=UI_CATEGORY +Language=English +UI Events +. + + +; // The following are the message definitions. + +MessageIdTypedef=DWORD + +MessageId=0x100 +Severity=Error +Facility=Runtime +SymbolicName=MSG_INVALID_COMMAND +Language=English +The command is not valid. +. + + +MessageId=0x101 +Severity=Error +Facility=System +SymbolicName=MSG_BAD_FILE_CONTENTS +Language=English +File %1 contains content that is not valid. +. + +MessageId=0x102 +Severity=Warning +Facility=System +SymbolicName=MSG_RETRIES +Language=English +There have been %1 retries with %2 success! Disconnect from +the server and try again later. +. + +MessageId=0x103 +Severity=Informational +Facility=System +SymbolicName=MSG_COMPUTE_CONVERSION +Language=English +%1 %%4096 = %2 %%4097. +. + + +; // The following are the parameter strings */ + + +MessageId=0x1000 +Severity=Success +Facility=System +SymbolicName=QUARTS_UNITS +Language=English +quarts%0 +. + +MessageId=0x1001 +Severity=Success +Facility=System +SymbolicName=GALLONS_UNITS +Language=English +gallons%0 +. + diff --git a/modules/rostests/win32/user32/kbdlayout/kbdlayout.dsp b/modules/rostests/win32/user32/kbdlayout/kbdlayout.dsp index e2d2d804e6d..b62995a2a1b 100644 --- a/modules/rostests/win32/user32/kbdlayout/kbdlayout.dsp +++ b/modules/rostests/win32/user32/kbdlayout/kbdlayout.dsp @@ -1,98 +1,98 @@ -# Microsoft Developer Studio Project File - Name="kbdlayout" - Package Owner=<4> -# Microsoft Developer Studio Generated Build File, Format Version 6.00 -# ** DO NOT EDIT ** - -# TARGTYPE "Win32 (x86) Console Application" 0x0103 - -CFG=kbdlayout - 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 "kbdlayout.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 "kbdlayout.mak" CFG="kbdlayout - Win32 Debug" -!MESSAGE -!MESSAGE Possible choices for configuration are: -!MESSAGE -!MESSAGE "kbdlayout - Win32 Release" (based on "Win32 (x86) Console Application") -!MESSAGE "kbdlayout - 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)" == "kbdlayout - 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 0x419 /d "NDEBUG" -# ADD RSC /l 0x419 /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)" == "kbdlayout - 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 0x419 /d "_DEBUG" -# ADD RSC /l 0x419 /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:windows /debug /machine:I386 /pdbtype:sept -# SUBTRACT LINK32 /pdb:none - -!ENDIF - -# Begin Target - -# Name "kbdlayout - Win32 Release" -# Name "kbdlayout - Win32 Debug" -# Begin Source File - -SOURCE=.\kbdlayout.c -# End Source File -# Begin Source File - -SOURCE=.\kbdlayout.rc -# End Source File -# Begin Source File - -SOURCE=.\resource.h -# End Source File -# End Target -# End Project +# Microsoft Developer Studio Project File - Name="kbdlayout" - Package Owner=<4> +# Microsoft Developer Studio Generated Build File, Format Version 6.00 +# ** DO NOT EDIT ** + +# TARGTYPE "Win32 (x86) Console Application" 0x0103 + +CFG=kbdlayout - 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 "kbdlayout.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 "kbdlayout.mak" CFG="kbdlayout - Win32 Debug" +!MESSAGE +!MESSAGE Possible choices for configuration are: +!MESSAGE +!MESSAGE "kbdlayout - Win32 Release" (based on "Win32 (x86) Console Application") +!MESSAGE "kbdlayout - 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)" == "kbdlayout - 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 0x419 /d "NDEBUG" +# ADD RSC /l 0x419 /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)" == "kbdlayout - 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 0x419 /d "_DEBUG" +# ADD RSC /l 0x419 /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:windows /debug /machine:I386 /pdbtype:sept +# SUBTRACT LINK32 /pdb:none + +!ENDIF + +# Begin Target + +# Name "kbdlayout - Win32 Release" +# Name "kbdlayout - Win32 Debug" +# Begin Source File + +SOURCE=.\kbdlayout.c +# End Source File +# Begin Source File + +SOURCE=.\kbdlayout.rc +# End Source File +# Begin Source File + +SOURCE=.\resource.h +# End Source File +# End Target +# End Project diff --git a/modules/rostests/winetests/mshtml/mshtml_ros.diff b/modules/rostests/winetests/mshtml/mshtml_ros.diff index 04a78da93f8..d3d1a583890 100644 --- a/modules/rostests/winetests/mshtml/mshtml_ros.diff +++ b/modules/rostests/winetests/mshtml/mshtml_ros.diff @@ -1,8 +1,8 @@ -+Index: htmldoc.c -+=================================================================== -+--- htmldoc.c (revision 57539) -++++ htmldoc.c (working copy) -+@@ -23,6 +23,8 @@ ++Index: htmldoc.c ++=================================================================== ++--- htmldoc.c (revision 57539) +++++ htmldoc.c (working copy) ++@@ -23,6 +23,8 @@ + #include + #include + @@ -11,7 +11,7 @@ + #include "windef.h" + #include "winbase.h" + #include "initguid.h" -+@@ -5272,8 +5274,11 @@ ++@@ -5272,8 +5274,11 @@ + ok(ref == 0, "ref=%d, expected 0\n", ref); + } + @@ -23,17 +23,17 @@ + CoInitialize(NULL); + container_hwnd = create_container_window(); + register_protocol(); -+@@ -5299,4 +5304,5 @@ ++@@ -5299,4 +5304,5 @@ + + DestroyWindow(container_hwnd); + CoUninitialize(); ++#endif /* ROSTESTS_81_IS_FIXED*/ + } -Index: htmldoc.c -=================================================================== ---- htmldoc.c (revision 57027) -+++ htmldoc.c (revision 57542) -@@ -23,6 +23,8 @@ +Index: htmldoc.c +=================================================================== +--- htmldoc.c (revision 57027) ++++ htmldoc.c (revision 57542) +@@ -23,6 +23,8 @@ #include #include @@ -42,7 +42,7 @@ Index: htmldoc.c #include "windef.h" #include "winbase.h" #include "initguid.h" -@@ -5272,8 +5274,11 @@ +@@ -5272,8 +5274,11 @@ ok(ref == 0, "ref=%d, expected 0\n", ref); } @@ -54,7 +54,7 @@ Index: htmldoc.c CoInitialize(NULL); container_hwnd = create_container_window(); register_protocol(); -@@ -5299,4 +5304,5 @@ +@@ -5299,4 +5304,5 @@ DestroyWindow(container_hwnd); CoUninitialize(); diff --git a/sdk/include/asm/asm.inc b/sdk/include/asm/asm.inc index fdedfdb1874..3b4dfe14585 100644 --- a/sdk/include/asm/asm.inc +++ b/sdk/include/asm/asm.inc @@ -1,411 +1,411 @@ -/* - * COPYRIGHT: See COPYING in the top level directory - * PROJECT: ReactOS Kernel - * FILE: include/asm/asm.inc - * PURPOSE: ASM macros for GAS and MASM/ML64 - * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) - */ - -#ifndef __ASM_INC__ -#define __ASM_INC__ - -/* Common definitions for FPO macro - see http://msdn.microsoft.com/en-us/library/ms679352%28VS.85%29.aspx */ -#define FRAME_FPO 0 -#define FRAME_TRAP 1 -#define FRAME_TSS 2 -#define FRAME_NONFPO 3 - -#ifdef _USE_ML - -/* Allow ".name" identifiers */ -OPTION DOTNAME - -#ifdef _M_IX86 -.686P -.XMM -.MODEL FLAT -ASSUME CS:NOTHING, DS:NOTHING, ES:NOTHING, FS:NOTHING, GS:NOTHING -#endif - -/* Explicit radix in MASM syntax */ -#define BIN(x) x##y -#define OCT(x) x##q -#define DEC(x) x##t -#define HEX(x) 0##x##h - -/* Macro values need not be marked */ -#define VAL(x) x - -/* MASM/ML doesn't want explicit [rip] addressing */ -rip = 0 - -/* Due to MASM's reverse syntax, we are forced to use a precompiler macro */ -#define MACRO(name, ...) name MACRO __VA_ARGS__ - -/* To avoid reverse syntax we provide a new macro .PROC, replacing PROC... */ -.PROC MACRO name -__current_function_name EQU %name -#ifdef _M_IX86 - %name PROC -#else - %name PROC FRAME -#endif -ENDM -#define FUNC .PROC - -/* ... and .ENDP, replacing ENDP */ -.ENDP MACRO - %__current_function_name ENDP -ENDM -#define ENDFUNC .ENDP - -/* Global labels need an extra colon */ -GLOBAL_LABEL MACRO label - %label:: -ENDM - -/* check http://msdn.microsoft.com/en-us/library/9c9k076y%28VS.80%29.aspx - and http://msdn.microsoft.com/en-us/library/ms679352%28VS.85%29.aspx */ -FPO MACRO cdwLocals, cdwParams, cbProlog, cbRegs, fUseBP, cbFrame - .FPO (cdwLocals, cdwParams, cbProlog, cbRegs, fUseBP, cbFrame) -ENDM - -/* MASM doesn't have an ASCII macro */ -.ASCII MACRO text:VARARG - DB text -ENDM -.ascii MACRO text:VARARG - DB text -ENDM - -/* MASM doesn't have an ASCIZ macro */ -.ASCIZ MACRO text:VARARG - DB text - DB 0 -ENDM -.asciz MACRO text:VARARG - DB text - DB 0 -ENDM - -.code64 MACRO - .code -ENDM - -.code32 MACRO - .code - .586P -ENDM - -.code16 MACRO - ASSUME nothing - .text SEGMENT use16 - .586P -ENDM - -.endcode16 MACRO - .text ENDS -ENDM - -.bss MACRO - .DATA? - ASSUME nothing -ENDM - -//.text MACRO -//ENDM - -.align MACRO alignment - ALIGN alignment -ENDM - -.byte MACRO args:VARARG - db args -ENDM - -.short MACRO args:VARARG - dw args -ENDM - -.word MACRO args:VARARG - dw args -ENDM - -.long MACRO args:VARARG - dd args -ENDM - -.double MACRO args:VARARG - dq args -ENDM - -.org MACRO value - ORG value -ENDM - -.fill MACRO count, size, value - REPEAT count - if (size EQ 1) - DB value - elseif (size EQ 2) - DW value - elseif (size EQ 4) - DD value - endif - ENDM -ENDM - -.skip MACRO size, fill:=<0> - DB size DUP (fill) -ENDM - -.space MACRO size, fill:=<0> - .skip size, fill -ENDM - -ljmp MACRO segment, offset - DB 0EAh - DD offset - DW segment -ENDM - -ljmp16 MACRO segment, offset - DB 0EAh - DW offset - DW segment -ENDM - -data32 MACRO opcode:VARARG - DB 66h - opcode -ENDM - -UNIMPLEMENTED MACRO name -ENDM - -absolute MACRO address - __absolute__address__ = address -ENDM - -resb MACRO name, size - name = __absolute__address__ - __absolute__address__ = __absolute__address__ + size -ENDM - -/* We need this to distinguish repeat from macros */ -#define ENDR ENDM - -#define CR 13 -#define LF 10 -#define NUL 0 - -/* For compatibility with GAS */ -CFI_STARTPROC MACRO start -ENDM -CFI_ENDPROC MACRO -ENDM -CFI_DEF_CFA MACRO reg:REQ, offset:REQ -ENDM -CFI_DEF_CFA_OFFSET MACRO offset:REQ -ENDM -CFI_DEF_CFA_REGISTER MACRO reg:REQ -ENDM -CFI_ADJUST_CFA_OFFSET MACRO offset:REQ -ENDM -CFI_OFFSET MACRO reg:REQ, offset:REQ -ENDM -CFI_REGISTER MACRO reg1:REQ, reg2:REQ -ENDM -CFI_REL_OFFSET MACRO reg:REQ, offset:REQ -ENDM -CFI_SAME_VALUE MACRO reg:REQ -ENDM - -#else /***********************************************************************/ - -/* Force intel syntax */ -.intel_syntax noprefix - -.altmacro - -/* Explicit radix in GAS syntax */ -#define BIN(x) 0b##x -#define OCT(x) 0##x -#define DEC(x) x -#define HEX(x) 0x##x - -/* Macro values need to be marked */ -#define VAL(x) \x - -/* Due to MASM's reverse syntax, we are forced to use a precompiler macro */ -#define MACRO(...) .macro __VA_ARGS__ -#define ENDM .endm - -/* To avoid reverse syntax we provide a new macro .PROC, replacing PROC... */ -.macro .PROC name - .func \name -#ifdef _X86_ - /* x86 GAS expects a label with _ prefix */ - _\name: -#endif - \name: - .cfi_startproc - .equ cfa_current_offset, -8 -.endm -#define FUNC .PROC - -/* ... and .ENDP, replacing ENDP */ -.macro .ENDP - .cfi_endproc - .endfunc -.endm -#define ENDFUNC .ENDP - -/* MASM compatible PUBLIC */ -.macro PUBLIC symbol - .global \symbol -.endm - -/* No special marking of global labels */ -.macro GLOBAL_LABEL label - \label: -.endm - -/* Dummy ASSUME */ -.macro ASSUME p1 p2 p3 p4 p5 p6 p7 p8 -.endm - -/* MASM needs an end tag for segments */ -.macro .endcode16 -.endm - -/* MASM compatible ALIGN */ -#define ALIGN .align - -/* MASM compatible REPEAT, additional ENDR */ -#define REPEAT .rept -#define ENDR .endr - -.macro ljmp segment, offset - jmp far ptr \segment:\offset -.endm - -.macro ljmp16 segment, offset - jmp far ptr \segment:\offset -.endm - -/* MASM compatible EXTERN */ -.macro EXTERN name -.endm - -/* MASM needs an END tag */ -#define END - -.macro .MODEL model -.endm - -.macro .code - .text -.endm - -/* check http://msdn.microsoft.com/en-us/library/9c9k076y%28VS.80%29.aspx - and http://msdn.microsoft.com/en-us/library/ms679352%28VS.85%29.aspx */ -.macro FPO cdwLocals, cdwParams, cbProlog, cbRegs, fUseBP, cbFrame - .if (cbFrame == FRAME_TRAP) - .cfi_signal_frame - .endif -.endm - -/* Macros for x64 stack unwind OPs */ - -.macro .allocstack size - .cfi_adjust_cfa_offset \size - .set cfa_current_offset, cfa_current_offset - \size -.endm - -code = 1 -.macro .pushframe param=0 - .if (\param) - .cfi_adjust_cfa_offset 0x30 - .set cfa_current_offset, cfa_current_offset - 0x30 - .else - .cfi_adjust_cfa_offset 0x28 - .set cfa_current_offset, cfa_current_offset - 0x28 - .endif -.endm - -.macro .pushreg reg - .cfi_adjust_cfa_offset 8 - .equ cfa_current_offset, cfa_current_offset - 8 - .cfi_offset \reg, cfa_current_offset -.endm - -.macro .savereg reg, offset - // checkme!!! - .cfi_offset \reg, \offset -.endm - -.macro .savexmm128 reg, offset - // checkme!!! - .cfi_offset \reg, \offset -.endm - -.macro .setframe reg, offset - .cfi_def_cfa reg, \offset - .equ cfa_current_offset, \offset -.endm - -.macro .endprolog -.endm - -.macro absolute address - __absolute__address__ = \address -.endm - -.macro resb name, size - \name = __absolute__address__ - __absolute__address__ = __absolute__address__ + \size -.endm - -.macro UNIMPLEMENTED2 file, line, func - jmp 3f -1: .asciz "\func" -2: .asciz \file -3: - sub rsp, 0x20 - lea rcx, MsgUnimplemented[rip] - lea rdx, 1b[rip] - lea r8, 2b[rip] - mov r9, \line - call DbgPrint - add rsp, 0x20 -.endm -#define UNIMPLEMENTED UNIMPLEMENTED2 __FILE__, __LINE__, - -/* MASM/ML uses ".if" for runtime conditionals, and "if" for compile time - conditionals. We therefore use "if", too. .if shouldn't be used at all */ -#define if .if -#define endif .endif -#define else .else -#define elseif .elseif - -#define CR "\r" -#define LF "\n" -#define NUL "\0" - -/* CFI annotations */ -#define CFI_STARTPROC .cfi_startproc -#define CFI_ENDPROC .cfi_endproc -#define CFI_DEF_CFA .cfi_def_cfa -#define CFI_DEF_CFA_OFFSET .cfi_def_cfa_offset -#define CFI_DEF_CFA_REGISTER .cfi_def_cfa_register -#define CFI_ADJUST_CFA_OFFSET .cfi_adjust_cfa_offset -#define CFI_OFFSET .cfi_offset -#define CFI_REGISTER .cfi_register -#define CFI_REL_OFFSET .cfi_rel_offset -#define CFI_SAME_VALUE .cfi_same_value - -#endif - -#endif /* __ASM_INC__ */ +/* + * COPYRIGHT: See COPYING in the top level directory + * PROJECT: ReactOS Kernel + * FILE: include/asm/asm.inc + * PURPOSE: ASM macros for GAS and MASM/ML64 + * PROGRAMMERS: Timo Kreuzer (timo.kreuzer@reactos.org) + */ + +#ifndef __ASM_INC__ +#define __ASM_INC__ + +/* Common definitions for FPO macro + see http://msdn.microsoft.com/en-us/library/ms679352%28VS.85%29.aspx */ +#define FRAME_FPO 0 +#define FRAME_TRAP 1 +#define FRAME_TSS 2 +#define FRAME_NONFPO 3 + +#ifdef _USE_ML + +/* Allow ".name" identifiers */ +OPTION DOTNAME + +#ifdef _M_IX86 +.686P +.XMM +.MODEL FLAT +ASSUME CS:NOTHING, DS:NOTHING, ES:NOTHING, FS:NOTHING, GS:NOTHING +#endif + +/* Explicit radix in MASM syntax */ +#define BIN(x) x##y +#define OCT(x) x##q +#define DEC(x) x##t +#define HEX(x) 0##x##h + +/* Macro values need not be marked */ +#define VAL(x) x + +/* MASM/ML doesn't want explicit [rip] addressing */ +rip = 0 + +/* Due to MASM's reverse syntax, we are forced to use a precompiler macro */ +#define MACRO(name, ...) name MACRO __VA_ARGS__ + +/* To avoid reverse syntax we provide a new macro .PROC, replacing PROC... */ +.PROC MACRO name +__current_function_name EQU %name +#ifdef _M_IX86 + %name PROC +#else + %name PROC FRAME +#endif +ENDM +#define FUNC .PROC + +/* ... and .ENDP, replacing ENDP */ +.ENDP MACRO + %__current_function_name ENDP +ENDM +#define ENDFUNC .ENDP + +/* Global labels need an extra colon */ +GLOBAL_LABEL MACRO label + %label:: +ENDM + +/* check http://msdn.microsoft.com/en-us/library/9c9k076y%28VS.80%29.aspx + and http://msdn.microsoft.com/en-us/library/ms679352%28VS.85%29.aspx */ +FPO MACRO cdwLocals, cdwParams, cbProlog, cbRegs, fUseBP, cbFrame + .FPO (cdwLocals, cdwParams, cbProlog, cbRegs, fUseBP, cbFrame) +ENDM + +/* MASM doesn't have an ASCII macro */ +.ASCII MACRO text:VARARG + DB text +ENDM +.ascii MACRO text:VARARG + DB text +ENDM + +/* MASM doesn't have an ASCIZ macro */ +.ASCIZ MACRO text:VARARG + DB text + DB 0 +ENDM +.asciz MACRO text:VARARG + DB text + DB 0 +ENDM + +.code64 MACRO + .code +ENDM + +.code32 MACRO + .code + .586P +ENDM + +.code16 MACRO + ASSUME nothing + .text SEGMENT use16 + .586P +ENDM + +.endcode16 MACRO + .text ENDS +ENDM + +.bss MACRO + .DATA? + ASSUME nothing +ENDM + +//.text MACRO +//ENDM + +.align MACRO alignment + ALIGN alignment +ENDM + +.byte MACRO args:VARARG + db args +ENDM + +.short MACRO args:VARARG + dw args +ENDM + +.word MACRO args:VARARG + dw args +ENDM + +.long MACRO args:VARARG + dd args +ENDM + +.double MACRO args:VARARG + dq args +ENDM + +.org MACRO value + ORG value +ENDM + +.fill MACRO count, size, value + REPEAT count + if (size EQ 1) + DB value + elseif (size EQ 2) + DW value + elseif (size EQ 4) + DD value + endif + ENDM +ENDM + +.skip MACRO size, fill:=<0> + DB size DUP (fill) +ENDM + +.space MACRO size, fill:=<0> + .skip size, fill +ENDM + +ljmp MACRO segment, offset + DB 0EAh + DD offset + DW segment +ENDM + +ljmp16 MACRO segment, offset + DB 0EAh + DW offset + DW segment +ENDM + +data32 MACRO opcode:VARARG + DB 66h + opcode +ENDM + +UNIMPLEMENTED MACRO name +ENDM + +absolute MACRO address + __absolute__address__ = address +ENDM + +resb MACRO name, size + name = __absolute__address__ + __absolute__address__ = __absolute__address__ + size +ENDM + +/* We need this to distinguish repeat from macros */ +#define ENDR ENDM + +#define CR 13 +#define LF 10 +#define NUL 0 + +/* For compatibility with GAS */ +CFI_STARTPROC MACRO start +ENDM +CFI_ENDPROC MACRO +ENDM +CFI_DEF_CFA MACRO reg:REQ, offset:REQ +ENDM +CFI_DEF_CFA_OFFSET MACRO offset:REQ +ENDM +CFI_DEF_CFA_REGISTER MACRO reg:REQ +ENDM +CFI_ADJUST_CFA_OFFSET MACRO offset:REQ +ENDM +CFI_OFFSET MACRO reg:REQ, offset:REQ +ENDM +CFI_REGISTER MACRO reg1:REQ, reg2:REQ +ENDM +CFI_REL_OFFSET MACRO reg:REQ, offset:REQ +ENDM +CFI_SAME_VALUE MACRO reg:REQ +ENDM + +#else /***********************************************************************/ + +/* Force intel syntax */ +.intel_syntax noprefix + +.altmacro + +/* Explicit radix in GAS syntax */ +#define BIN(x) 0b##x +#define OCT(x) 0##x +#define DEC(x) x +#define HEX(x) 0x##x + +/* Macro values need to be marked */ +#define VAL(x) \x + +/* Due to MASM's reverse syntax, we are forced to use a precompiler macro */ +#define MACRO(...) .macro __VA_ARGS__ +#define ENDM .endm + +/* To avoid reverse syntax we provide a new macro .PROC, replacing PROC... */ +.macro .PROC name + .func \name +#ifdef _X86_ + /* x86 GAS expects a label with _ prefix */ + _\name: +#endif + \name: + .cfi_startproc + .equ cfa_current_offset, -8 +.endm +#define FUNC .PROC + +/* ... and .ENDP, replacing ENDP */ +.macro .ENDP + .cfi_endproc + .endfunc +.endm +#define ENDFUNC .ENDP + +/* MASM compatible PUBLIC */ +.macro PUBLIC symbol + .global \symbol +.endm + +/* No special marking of global labels */ +.macro GLOBAL_LABEL label + \label: +.endm + +/* Dummy ASSUME */ +.macro ASSUME p1 p2 p3 p4 p5 p6 p7 p8 +.endm + +/* MASM needs an end tag for segments */ +.macro .endcode16 +.endm + +/* MASM compatible ALIGN */ +#define ALIGN .align + +/* MASM compatible REPEAT, additional ENDR */ +#define REPEAT .rept +#define ENDR .endr + +.macro ljmp segment, offset + jmp far ptr \segment:\offset +.endm + +.macro ljmp16 segment, offset + jmp far ptr \segment:\offset +.endm + +/* MASM compatible EXTERN */ +.macro EXTERN name +.endm + +/* MASM needs an END tag */ +#define END + +.macro .MODEL model +.endm + +.macro .code + .text +.endm + +/* check http://msdn.microsoft.com/en-us/library/9c9k076y%28VS.80%29.aspx + and http://msdn.microsoft.com/en-us/library/ms679352%28VS.85%29.aspx */ +.macro FPO cdwLocals, cdwParams, cbProlog, cbRegs, fUseBP, cbFrame + .if (cbFrame == FRAME_TRAP) + .cfi_signal_frame + .endif +.endm + +/* Macros for x64 stack unwind OPs */ + +.macro .allocstack size + .cfi_adjust_cfa_offset \size + .set cfa_current_offset, cfa_current_offset - \size +.endm + +code = 1 +.macro .pushframe param=0 + .if (\param) + .cfi_adjust_cfa_offset 0x30 + .set cfa_current_offset, cfa_current_offset - 0x30 + .else + .cfi_adjust_cfa_offset 0x28 + .set cfa_current_offset, cfa_current_offset - 0x28 + .endif +.endm + +.macro .pushreg reg + .cfi_adjust_cfa_offset 8 + .equ cfa_current_offset, cfa_current_offset - 8 + .cfi_offset \reg, cfa_current_offset +.endm + +.macro .savereg reg, offset + // checkme!!! + .cfi_offset \reg, \offset +.endm + +.macro .savexmm128 reg, offset + // checkme!!! + .cfi_offset \reg, \offset +.endm + +.macro .setframe reg, offset + .cfi_def_cfa reg, \offset + .equ cfa_current_offset, \offset +.endm + +.macro .endprolog +.endm + +.macro absolute address + __absolute__address__ = \address +.endm + +.macro resb name, size + \name = __absolute__address__ + __absolute__address__ = __absolute__address__ + \size +.endm + +.macro UNIMPLEMENTED2 file, line, func + jmp 3f +1: .asciz "\func" +2: .asciz \file +3: + sub rsp, 0x20 + lea rcx, MsgUnimplemented[rip] + lea rdx, 1b[rip] + lea r8, 2b[rip] + mov r9, \line + call DbgPrint + add rsp, 0x20 +.endm +#define UNIMPLEMENTED UNIMPLEMENTED2 __FILE__, __LINE__, + +/* MASM/ML uses ".if" for runtime conditionals, and "if" for compile time + conditionals. We therefore use "if", too. .if shouldn't be used at all */ +#define if .if +#define endif .endif +#define else .else +#define elseif .elseif + +#define CR "\r" +#define LF "\n" +#define NUL "\0" + +/* CFI annotations */ +#define CFI_STARTPROC .cfi_startproc +#define CFI_ENDPROC .cfi_endproc +#define CFI_DEF_CFA .cfi_def_cfa +#define CFI_DEF_CFA_OFFSET .cfi_def_cfa_offset +#define CFI_DEF_CFA_REGISTER .cfi_def_cfa_register +#define CFI_ADJUST_CFA_OFFSET .cfi_adjust_cfa_offset +#define CFI_OFFSET .cfi_offset +#define CFI_REGISTER .cfi_register +#define CFI_REL_OFFSET .cfi_rel_offset +#define CFI_SAME_VALUE .cfi_same_value + +#endif + +#endif /* __ASM_INC__ */ diff --git a/sdk/include/asm/trapamd64.inc b/sdk/include/asm/trapamd64.inc index 86cc94a7216..88a8d182cc2 100644 --- a/sdk/include/asm/trapamd64.inc +++ b/sdk/include/asm/trapamd64.inc @@ -1,244 +1,244 @@ - -APIC_EOI = HEX(0FFFFFFFFFFFE00B0) - -TF_VOLATILES = HEX(01) -TF_NONVOLATILES = HEX(02) -TF_XMM = HEX(04) -TF_SEGMENTS = HEX(08) -TF_DEBUG = HEX(10) -TF_IRQL = HEX(20) -TF_SAVE_ALL = (TF_VOLATILES OR TF_NONVOLATILES OR TF_XMM OR TF_SEGMENTS) -TF_HAS_ERROR_CODE = HEX(40) -TF_SEND_EOI = HEX(80) -//TF_SYSTEMSERVICE = (TRAPFLAG_VOLATILES or TRAPFLAG_DEBUG) -TF_CHECKUSERAPC = HEX(100) - -/* - * Stack Layout: - * |-------------------| - * | KTRAP_FRAME | - * |-------------------| <- rbp - * | EXCEPTION_RECORD | - * |-------------------| - * | KEXCEPTION_FRAME | - * |-------------------| <- rsp - * - */ - -/* - * EnterTrap - Allocate KTRAP_FRAME_LENGTH and save registers to it - */ -MACRO(EnterTrap, Flags) - LOCAL kernel_mode_entry - - /* Save the trap flags for this trap */ - CurrentTrapFlags = VAL(Flags) - - /* Size of hardware trap frame */ - if (Flags AND TF_HAS_ERROR_CODE) - .pushframe code - SIZE_INITIAL_FRAME = 6 * 8 - else - .pushframe - SIZE_INITIAL_FRAME = 5 * 8 - endif - - /* Make room for a KTRAP_FRAME */ - sub rsp, (KTRAP_FRAME_LENGTH - SIZE_INITIAL_FRAME) - .allocstack (KTRAP_FRAME_LENGTH - SIZE_INITIAL_FRAME) - - /* Save rbp and rax */ - mov [rsp + KTRAP_FRAME_Rbp], rbp - .savereg rbp, KTRAP_FRAME_Rbp - mov [rsp + KTRAP_FRAME_Rax], rax - .savereg rax, KTRAP_FRAME_Rax - - /* Point rbp to the KTRAP_FRAME */ - lea rbp, [rsp] - .setframe rbp, 0 - - if (Flags AND TF_NONVOLATILES) - /* Save non-volatile registers */ - mov [rbp + KTRAP_FRAME_Rbx], rbx - .savereg rbx, KTRAP_FRAME_Rbx - mov [rbp + KTRAP_FRAME_Rdi], rdi - .savereg rdi, KTRAP_FRAME_Rdi - mov [rbp + KTRAP_FRAME_Rsi], rsi - .savereg rsi, KTRAP_FRAME_Rsi - endif - - .endprolog - - if (Flags AND TF_VOLATILES) - /* Save volatile registers */ - mov [rbp + KTRAP_FRAME_Rcx], rcx - mov [rbp + KTRAP_FRAME_Rdx], rdx - mov [rbp + KTRAP_FRAME_R8], r8 - mov [rbp + KTRAP_FRAME_R9], r9 - mov [rbp + KTRAP_FRAME_R10], r10 - mov [rbp + KTRAP_FRAME_R11], r11 - endif - - if (Flags AND TF_XMM) - /* Save xmm registers */ - movdqa [rbp + KTRAP_FRAME_Xmm0], xmm0 - movdqa [rbp + KTRAP_FRAME_Xmm1], xmm1 - movdqa [rbp + KTRAP_FRAME_Xmm2], xmm2 - movdqa [rbp + KTRAP_FRAME_Xmm3], xmm3 - movdqa [rbp + KTRAP_FRAME_Xmm4], xmm4 - movdqa [rbp + KTRAP_FRAME_Xmm5], xmm5 - endif - - if (Flags AND TF_SEGMENTS) - /* Save segment selectors */ - mov [rbp + KTRAP_FRAME_SegDs], ds - mov [rbp + KTRAP_FRAME_SegEs], es - mov [rbp + KTRAP_FRAME_SegFs], fs - mov [rbp + KTRAP_FRAME_SegGs], gs - endif - - /* Save previous mode and check if it was user mode */ - mov ax, [rbp + KTRAP_FRAME_SegCs] - and al, 1 - mov [rbp + KTRAP_FRAME_PreviousMode], al - jz kernel_mode_entry - - /* Set sane segments */ - mov ax, (KGDT64_R3_DATA or RPL_MASK) - mov ds, ax - mov es, ax - swapgs - -kernel_mode_entry: - -// if (Flags AND TF_IRQL) - /* Save previous irql */ - mov rax, cr8 - mov [rbp + KTRAP_FRAME_PreviousIrql], al -// endif - - if (Flags AND TF_DEBUG) - /* Save debug registers */ - mov rax, dr0 - mov [rbp + KTRAP_FRAME_Dr0], rax - mov rax, dr1 - mov [rbp + KTRAP_FRAME_Dr1], rax - mov rax, dr2 - mov [rbp + KTRAP_FRAME_Dr2], rax - mov rax, dr3 - mov [rbp + KTRAP_FRAME_Dr3], rax - mov rax, dr6 - mov [rbp + KTRAP_FRAME_Dr6], rax - mov rax, dr7 - mov [rbp + KTRAP_FRAME_Dr7], rax - endif - - /* Make sure the direction flag is cleared */ - cld -ENDM - -/* - * ExitTrap - Restore registers and free stack space - */ -MACRO(ExitTrap, Flags) - LOCAL kernel_mode_return - -#if DBG - /* Check previous irql */ - mov rax, cr8 - cmp [rbp + KTRAP_FRAME_PreviousIrql], al - je .irql_ok - int 3 - .irql_ok: -#endif - - if (Flags AND TF_SEGMENTS) - /* Restore segment selectors */ - mov ds, [rbp + KTRAP_FRAME_SegDs] - mov es, [rbp + KTRAP_FRAME_SegEs] - mov fs, [rbp + KTRAP_FRAME_SegFs] - endif - - if (Flags AND TF_IRQL) - /* Restore previous irql */ - movzx rax, byte ptr [rbp + KTRAP_FRAME_PreviousIrql] - mov cr8, rax - endif - - /* Check if we came from user mode */ - test byte ptr [rbp + KTRAP_FRAME_SegCs], 1 - jz kernel_mode_return - - if (Flags AND TF_CHECKUSERAPC) - /* Load current thread into r10 */ - mov r10, gs:[PcCurrentThread] - cmp byte ptr [r10 + KTHREAD_UserApcPending], 0 - jne KiExitToUserApc - - endif - - /* Swap gs to user mode */ - swapgs - -kernel_mode_return: - - if (Flags AND TF_NONVOLATILES) - /* Restore non-volatile registers */ - mov rbx, [rbp + KTRAP_FRAME_Rbx] - mov rdi, [rbp + KTRAP_FRAME_Rdi] - mov rsi, [rbp + KTRAP_FRAME_Rsi] - endif - - if (Flags AND TF_VOLATILES) - /* Restore volatile registers */ - mov rax, [rbp + KTRAP_FRAME_Rax] - mov rcx, [rbp + KTRAP_FRAME_Rcx] - mov rdx, [rbp + KTRAP_FRAME_Rdx] - mov r8, [rbp + KTRAP_FRAME_R8] - mov r9, [rbp + KTRAP_FRAME_R9] - mov r10, [rbp + KTRAP_FRAME_R10] - mov r11, [rbp + KTRAP_FRAME_R11] - endif - - if (Flags AND TF_XMM) - /* Restore xmm registers */ - movdqa xmm0, [rbp + KTRAP_FRAME_Xmm0] - movdqa xmm1, [rbp + KTRAP_FRAME_Xmm1] - movdqa xmm2, [rbp + KTRAP_FRAME_Xmm2] - movdqa xmm3, [rbp + KTRAP_FRAME_Xmm3] - movdqa xmm4, [rbp + KTRAP_FRAME_Xmm4] - movdqa xmm5, [rbp + KTRAP_FRAME_Xmm5] - endif - - /* Restore rbp */ - mov rbp, [rbp + KTRAP_FRAME_Rbp] - - /* Adjust stack pointer */ - add rsp, KTRAP_FRAME_Rip - - if (Flags AND TF_SEND_EOI) - /* Write 0 to the local APIC EOI register */ - mov dword ptr [APIC_EOI], 0 - endif - - /* Return from the trap */ - iretq -ENDM - - -MACRO(TRAP_ENTRY, Trap, Flags) - EXTERN Trap&Handler :PROC - PUBLIC &Trap - FUNC &Trap - /* Common code to create the trap frame */ - EnterTrap Flags - - /* Call the C handler */ - mov rcx, rbp - call Trap&Handler - - /* Leave */ - ExitTrap Flags - ENDFUNC -ENDM - + +APIC_EOI = HEX(0FFFFFFFFFFFE00B0) + +TF_VOLATILES = HEX(01) +TF_NONVOLATILES = HEX(02) +TF_XMM = HEX(04) +TF_SEGMENTS = HEX(08) +TF_DEBUG = HEX(10) +TF_IRQL = HEX(20) +TF_SAVE_ALL = (TF_VOLATILES OR TF_NONVOLATILES OR TF_XMM OR TF_SEGMENTS) +TF_HAS_ERROR_CODE = HEX(40) +TF_SEND_EOI = HEX(80) +//TF_SYSTEMSERVICE = (TRAPFLAG_VOLATILES or TRAPFLAG_DEBUG) +TF_CHECKUSERAPC = HEX(100) + +/* + * Stack Layout: + * |-------------------| + * | KTRAP_FRAME | + * |-------------------| <- rbp + * | EXCEPTION_RECORD | + * |-------------------| + * | KEXCEPTION_FRAME | + * |-------------------| <- rsp + * + */ + +/* + * EnterTrap - Allocate KTRAP_FRAME_LENGTH and save registers to it + */ +MACRO(EnterTrap, Flags) + LOCAL kernel_mode_entry + + /* Save the trap flags for this trap */ + CurrentTrapFlags = VAL(Flags) + + /* Size of hardware trap frame */ + if (Flags AND TF_HAS_ERROR_CODE) + .pushframe code + SIZE_INITIAL_FRAME = 6 * 8 + else + .pushframe + SIZE_INITIAL_FRAME = 5 * 8 + endif + + /* Make room for a KTRAP_FRAME */ + sub rsp, (KTRAP_FRAME_LENGTH - SIZE_INITIAL_FRAME) + .allocstack (KTRAP_FRAME_LENGTH - SIZE_INITIAL_FRAME) + + /* Save rbp and rax */ + mov [rsp + KTRAP_FRAME_Rbp], rbp + .savereg rbp, KTRAP_FRAME_Rbp + mov [rsp + KTRAP_FRAME_Rax], rax + .savereg rax, KTRAP_FRAME_Rax + + /* Point rbp to the KTRAP_FRAME */ + lea rbp, [rsp] + .setframe rbp, 0 + + if (Flags AND TF_NONVOLATILES) + /* Save non-volatile registers */ + mov [rbp + KTRAP_FRAME_Rbx], rbx + .savereg rbx, KTRAP_FRAME_Rbx + mov [rbp + KTRAP_FRAME_Rdi], rdi + .savereg rdi, KTRAP_FRAME_Rdi + mov [rbp + KTRAP_FRAME_Rsi], rsi + .savereg rsi, KTRAP_FRAME_Rsi + endif + + .endprolog + + if (Flags AND TF_VOLATILES) + /* Save volatile registers */ + mov [rbp + KTRAP_FRAME_Rcx], rcx + mov [rbp + KTRAP_FRAME_Rdx], rdx + mov [rbp + KTRAP_FRAME_R8], r8 + mov [rbp + KTRAP_FRAME_R9], r9 + mov [rbp + KTRAP_FRAME_R10], r10 + mov [rbp + KTRAP_FRAME_R11], r11 + endif + + if (Flags AND TF_XMM) + /* Save xmm registers */ + movdqa [rbp + KTRAP_FRAME_Xmm0], xmm0 + movdqa [rbp + KTRAP_FRAME_Xmm1], xmm1 + movdqa [rbp + KTRAP_FRAME_Xmm2], xmm2 + movdqa [rbp + KTRAP_FRAME_Xmm3], xmm3 + movdqa [rbp + KTRAP_FRAME_Xmm4], xmm4 + movdqa [rbp + KTRAP_FRAME_Xmm5], xmm5 + endif + + if (Flags AND TF_SEGMENTS) + /* Save segment selectors */ + mov [rbp + KTRAP_FRAME_SegDs], ds + mov [rbp + KTRAP_FRAME_SegEs], es + mov [rbp + KTRAP_FRAME_SegFs], fs + mov [rbp + KTRAP_FRAME_SegGs], gs + endif + + /* Save previous mode and check if it was user mode */ + mov ax, [rbp + KTRAP_FRAME_SegCs] + and al, 1 + mov [rbp + KTRAP_FRAME_PreviousMode], al + jz kernel_mode_entry + + /* Set sane segments */ + mov ax, (KGDT64_R3_DATA or RPL_MASK) + mov ds, ax + mov es, ax + swapgs + +kernel_mode_entry: + +// if (Flags AND TF_IRQL) + /* Save previous irql */ + mov rax, cr8 + mov [rbp + KTRAP_FRAME_PreviousIrql], al +// endif + + if (Flags AND TF_DEBUG) + /* Save debug registers */ + mov rax, dr0 + mov [rbp + KTRAP_FRAME_Dr0], rax + mov rax, dr1 + mov [rbp + KTRAP_FRAME_Dr1], rax + mov rax, dr2 + mov [rbp + KTRAP_FRAME_Dr2], rax + mov rax, dr3 + mov [rbp + KTRAP_FRAME_Dr3], rax + mov rax, dr6 + mov [rbp + KTRAP_FRAME_Dr6], rax + mov rax, dr7 + mov [rbp + KTRAP_FRAME_Dr7], rax + endif + + /* Make sure the direction flag is cleared */ + cld +ENDM + +/* + * ExitTrap - Restore registers and free stack space + */ +MACRO(ExitTrap, Flags) + LOCAL kernel_mode_return + +#if DBG + /* Check previous irql */ + mov rax, cr8 + cmp [rbp + KTRAP_FRAME_PreviousIrql], al + je .irql_ok + int 3 + .irql_ok: +#endif + + if (Flags AND TF_SEGMENTS) + /* Restore segment selectors */ + mov ds, [rbp + KTRAP_FRAME_SegDs] + mov es, [rbp + KTRAP_FRAME_SegEs] + mov fs, [rbp + KTRAP_FRAME_SegFs] + endif + + if (Flags AND TF_IRQL) + /* Restore previous irql */ + movzx rax, byte ptr [rbp + KTRAP_FRAME_PreviousIrql] + mov cr8, rax + endif + + /* Check if we came from user mode */ + test byte ptr [rbp + KTRAP_FRAME_SegCs], 1 + jz kernel_mode_return + + if (Flags AND TF_CHECKUSERAPC) + /* Load current thread into r10 */ + mov r10, gs:[PcCurrentThread] + cmp byte ptr [r10 + KTHREAD_UserApcPending], 0 + jne KiExitToUserApc + + endif + + /* Swap gs to user mode */ + swapgs + +kernel_mode_return: + + if (Flags AND TF_NONVOLATILES) + /* Restore non-volatile registers */ + mov rbx, [rbp + KTRAP_FRAME_Rbx] + mov rdi, [rbp + KTRAP_FRAME_Rdi] + mov rsi, [rbp + KTRAP_FRAME_Rsi] + endif + + if (Flags AND TF_VOLATILES) + /* Restore volatile registers */ + mov rax, [rbp + KTRAP_FRAME_Rax] + mov rcx, [rbp + KTRAP_FRAME_Rcx] + mov rdx, [rbp + KTRAP_FRAME_Rdx] + mov r8, [rbp + KTRAP_FRAME_R8] + mov r9, [rbp + KTRAP_FRAME_R9] + mov r10, [rbp + KTRAP_FRAME_R10] + mov r11, [rbp + KTRAP_FRAME_R11] + endif + + if (Flags AND TF_XMM) + /* Restore xmm registers */ + movdqa xmm0, [rbp + KTRAP_FRAME_Xmm0] + movdqa xmm1, [rbp + KTRAP_FRAME_Xmm1] + movdqa xmm2, [rbp + KTRAP_FRAME_Xmm2] + movdqa xmm3, [rbp + KTRAP_FRAME_Xmm3] + movdqa xmm4, [rbp + KTRAP_FRAME_Xmm4] + movdqa xmm5, [rbp + KTRAP_FRAME_Xmm5] + endif + + /* Restore rbp */ + mov rbp, [rbp + KTRAP_FRAME_Rbp] + + /* Adjust stack pointer */ + add rsp, KTRAP_FRAME_Rip + + if (Flags AND TF_SEND_EOI) + /* Write 0 to the local APIC EOI register */ + mov dword ptr [APIC_EOI], 0 + endif + + /* Return from the trap */ + iretq +ENDM + + +MACRO(TRAP_ENTRY, Trap, Flags) + EXTERN Trap&Handler :PROC + PUBLIC &Trap + FUNC &Trap + /* Common code to create the trap frame */ + EnterTrap Flags + + /* Call the C handler */ + mov rcx, rbp + call Trap&Handler + + /* Leave */ + ExitTrap Flags + ENDFUNC +ENDM + diff --git a/sdk/include/c++/cerrno b/sdk/include/c++/cerrno index 48f08982f29..53d67d75e57 100644 --- a/sdk/include/c++/cerrno +++ b/sdk/include/c++/cerrno @@ -1,10 +1,10 @@ -// C++ forwarding C errno header. - -#pragma once - -#include - -// Adhere to section 17.4.1.2 clause 5 of ISO 14882:1998 -#ifndef errno -#define errno errno -#endif +// C++ forwarding C errno header. + +#pragma once + +#include + +// Adhere to section 17.4.1.2 clause 5 of ISO 14882:1998 +#ifndef errno +#define errno errno +#endif diff --git a/sdk/include/c++/cfloat b/sdk/include/c++/cfloat index e0debdbdbef..4b2bdb6133e 100644 --- a/sdk/include/c++/cfloat +++ b/sdk/include/c++/cfloat @@ -1,9 +1,9 @@ -// C++ forwarding C float header. - -// -// ISO C++ 14882: 18.2.2 Implementation properties: C library -// - -#pragma once - -#include +// C++ forwarding C float header. + +// +// ISO C++ 14882: 18.2.2 Implementation properties: C library +// + +#pragma once + +#include diff --git a/sdk/include/c++/climits b/sdk/include/c++/climits index ec4374b5d0d..9a48e44388d 100644 --- a/sdk/include/c++/climits +++ b/sdk/include/c++/climits @@ -1,17 +1,17 @@ -// C limitations - -#pragma once - -#include - -#ifndef LLONG_MIN -#define LLONG_MIN (-__LONG_LONG_MAX__ - 1) -#endif - -#ifndef LLONG_MAX -#define LLONG_MAX __LONG_LONG_MAX__ -#endif - -#ifndef ULLONG_MAX -#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1) -#endif +// C limitations + +#pragma once + +#include + +#ifndef LLONG_MIN +#define LLONG_MIN (-__LONG_LONG_MAX__ - 1) +#endif + +#ifndef LLONG_MAX +#define LLONG_MAX __LONG_LONG_MAX__ +#endif + +#ifndef ULLONG_MAX +#define ULLONG_MAX (__LONG_LONG_MAX__ * 2ULL + 1) +#endif diff --git a/sdk/include/c++/clocale b/sdk/include/c++/clocale index a63579fd29a..b4c4711311d 100644 --- a/sdk/include/c++/clocale +++ b/sdk/include/c++/clocale @@ -1,16 +1,16 @@ -// C++ forwarding C locale header. - -#pragma once - -#include - -// Get rid of those macros defined in in lieu of real functions. -#undef setlocale -#undef localeconv - -namespace std -{ - using ::lconv; - using ::setlocale; - using ::localeconv; -} +// C++ forwarding C locale header. + +#pragma once + +#include + +// Get rid of those macros defined in in lieu of real functions. +#undef setlocale +#undef localeconv + +namespace std +{ + using ::lconv; + using ::setlocale; + using ::localeconv; +} diff --git a/sdk/include/c++/cmath b/sdk/include/c++/cmath index 18a90de8fbe..216072142ad 100644 --- a/sdk/include/c++/cmath +++ b/sdk/include/c++/cmath @@ -1,259 +1,259 @@ -//Standard C++ math declarations - -#pragma once -#define _CMATH_ - -#include - -// Get rid of those macros defined in in lieu of real functions. -#undef abs -#undef div -#undef acos -#undef asin -#undef atan -#undef atan2 -#undef ceil -#undef cos -#undef cosh -#undef exp -#undef fabs -#undef floor -#undef fmod -#undef frexp -#undef ldexp -#undef log -#undef log10 -#undef modf -#undef pow -#undef sin -#undef sinh -#undef sqrt -#undef tan -#undef tanh - -inline double -abs(double __x) -{ return fabs(__x); } - -inline float -abs(float __x) -{ return fabsf(__x); } - -inline long double -abs(long double __x) -{ return fabsl(__x); } - -inline float -acos(float __x) -{ return acosf(__x); } - -inline long double -acos(long double __x) -{ return acosl(__x); } - -inline float -asin(float __x) -{ return asinf(__x); } - -inline long double -asin(long double __x) -{ return asinl(__x); } - -inline float -atan(float __x) -{ return atanf(__x); } - -inline long double -atan(long double __x) -{ return atanl(__x); } - -inline float -atan2(float __y, float __x) -{ return atan2f(__y, __x); } - -inline long double -atan2(long double __y, long double __x) -{ return atan2l(__y, __x); } - -inline float -ceil(float __x) -{ return ceilf(__x); } - -inline long double -ceil(long double __x) -{ return ceill(__x); } - -inline float -cos(float __x) -{ return cosf(__x); } - -inline long double -cos(long double __x) -{ return cosl(__x); } - -inline float -cosh(float __x) -{ return coshf(__x); } - -inline long double -cosh(long double __x) -{ return coshl(__x); } - -inline float -exp(float __x) -{ return expf(__x); } - -inline long double -exp(long double __x) -{ return expl(__x); } - -inline float -fabs(float __x) -{ return fabsf(__x); } - -inline long double -fabs(long double __x) -{ return fabsl(__x); } - -inline float -floor(float __x) -{ return floorf(__x); } - -inline long double -floor(long double __x) -{ return floorl(__x); } - -inline float -fmod(float __x, float __y) -{ return fmodf(__x, __y); } - -inline long double -fmod(long double __x, long double __y) -{ return fmodl(__x, __y); } - -inline float -frexp(float __x, int* __exp) -{ return frexpf(__x, __exp); } - -inline long double -frexp(long double __x, int* __exp) -{ return frexpl(__x, __exp); } - -inline float -ldexp(float __x, int __exp) -{ return ldexpf(__x, __exp); } - -inline long double -ldexp(long double __x, int __exp) -{ return ldexpl(__x, __exp); } - -inline float -log(float __x) -{ return logf(__x); } - -inline long double -log(long double __x) -{ return logl(__x); } - -inline float -log10(float __x) -{ return log10f(__x); } - -inline long double -log10(long double __x) -{ return log10l(__x); } - -inline float -modf(float __x, float* __iptr) -{ return modff(__x, __iptr); } - -inline long double -modf(long double __x, long double* __iptr) -{ return modfl(__x, __iptr); } - -inline float -pow(float __x, float __y) -{ return powf(__x, __y); } - -inline long double -pow(long double __x, long double __y) -{ return powl(__x, __y); } - -inline double -pow(double __x, int __i) -{ return pow(__x, static_cast(__i)); } - -inline float -pow(float __x, int __n) -{ return powf(__x, static_cast(__n)); } - -inline long double -pow(long double __x, int __n) -{ return powl(__x, static_cast(__n)); } - -inline float -sin(float __x) -{ return sinf(__x); } - -inline long double -sin(long double __x) -{ return sinl(__x); } - -inline float -sinh(float __x) -{ return sinhf(__x); } - -inline long double -sinh(long double __x) -{ return sinhl(__x); } - -inline float -sqrt(float __x) -{ return sqrtf(__x); } - -inline long double -sqrt(long double __x) -{ return sqrtl(__x); } - -inline float -tan(float __x) -{ return tanf(__x); } - -inline long double -tan(long double __x) -{ return tanl(__x); } - -inline float -tanh(float __x) -{ return tanhf(__x); } - -inline long double -tanh(long double __x) -{ return tanhl(__x); } - -namespace std -{ - using ::abs; - using ::acos; - using ::asin; - using ::atan; - using ::atan2; - using ::ceil; - using ::cos; - using ::cosh; - using ::exp; - using ::fabs; - using ::floor; - using ::fmod; - using ::frexp; - using ::ldexp; - using ::log; - using ::log10; - using ::modf; - using ::pow; - using ::sin; - using ::sinh; - using ::sqrt; - using ::tan; - using ::tanh; -} +//Standard C++ math declarations + +#pragma once +#define _CMATH_ + +#include + +// Get rid of those macros defined in in lieu of real functions. +#undef abs +#undef div +#undef acos +#undef asin +#undef atan +#undef atan2 +#undef ceil +#undef cos +#undef cosh +#undef exp +#undef fabs +#undef floor +#undef fmod +#undef frexp +#undef ldexp +#undef log +#undef log10 +#undef modf +#undef pow +#undef sin +#undef sinh +#undef sqrt +#undef tan +#undef tanh + +inline double +abs(double __x) +{ return fabs(__x); } + +inline float +abs(float __x) +{ return fabsf(__x); } + +inline long double +abs(long double __x) +{ return fabsl(__x); } + +inline float +acos(float __x) +{ return acosf(__x); } + +inline long double +acos(long double __x) +{ return acosl(__x); } + +inline float +asin(float __x) +{ return asinf(__x); } + +inline long double +asin(long double __x) +{ return asinl(__x); } + +inline float +atan(float __x) +{ return atanf(__x); } + +inline long double +atan(long double __x) +{ return atanl(__x); } + +inline float +atan2(float __y, float __x) +{ return atan2f(__y, __x); } + +inline long double +atan2(long double __y, long double __x) +{ return atan2l(__y, __x); } + +inline float +ceil(float __x) +{ return ceilf(__x); } + +inline long double +ceil(long double __x) +{ return ceill(__x); } + +inline float +cos(float __x) +{ return cosf(__x); } + +inline long double +cos(long double __x) +{ return cosl(__x); } + +inline float +cosh(float __x) +{ return coshf(__x); } + +inline long double +cosh(long double __x) +{ return coshl(__x); } + +inline float +exp(float __x) +{ return expf(__x); } + +inline long double +exp(long double __x) +{ return expl(__x); } + +inline float +fabs(float __x) +{ return fabsf(__x); } + +inline long double +fabs(long double __x) +{ return fabsl(__x); } + +inline float +floor(float __x) +{ return floorf(__x); } + +inline long double +floor(long double __x) +{ return floorl(__x); } + +inline float +fmod(float __x, float __y) +{ return fmodf(__x, __y); } + +inline long double +fmod(long double __x, long double __y) +{ return fmodl(__x, __y); } + +inline float +frexp(float __x, int* __exp) +{ return frexpf(__x, __exp); } + +inline long double +frexp(long double __x, int* __exp) +{ return frexpl(__x, __exp); } + +inline float +ldexp(float __x, int __exp) +{ return ldexpf(__x, __exp); } + +inline long double +ldexp(long double __x, int __exp) +{ return ldexpl(__x, __exp); } + +inline float +log(float __x) +{ return logf(__x); } + +inline long double +log(long double __x) +{ return logl(__x); } + +inline float +log10(float __x) +{ return log10f(__x); } + +inline long double +log10(long double __x) +{ return log10l(__x); } + +inline float +modf(float __x, float* __iptr) +{ return modff(__x, __iptr); } + +inline long double +modf(long double __x, long double* __iptr) +{ return modfl(__x, __iptr); } + +inline float +pow(float __x, float __y) +{ return powf(__x, __y); } + +inline long double +pow(long double __x, long double __y) +{ return powl(__x, __y); } + +inline double +pow(double __x, int __i) +{ return pow(__x, static_cast(__i)); } + +inline float +pow(float __x, int __n) +{ return powf(__x, static_cast(__n)); } + +inline long double +pow(long double __x, int __n) +{ return powl(__x, static_cast(__n)); } + +inline float +sin(float __x) +{ return sinf(__x); } + +inline long double +sin(long double __x) +{ return sinl(__x); } + +inline float +sinh(float __x) +{ return sinhf(__x); } + +inline long double +sinh(long double __x) +{ return sinhl(__x); } + +inline float +sqrt(float __x) +{ return sqrtf(__x); } + +inline long double +sqrt(long double __x) +{ return sqrtl(__x); } + +inline float +tan(float __x) +{ return tanf(__x); } + +inline long double +tan(long double __x) +{ return tanl(__x); } + +inline float +tanh(float __x) +{ return tanhf(__x); } + +inline long double +tanh(long double __x) +{ return tanhl(__x); } + +namespace std +{ + using ::abs; + using ::acos; + using ::asin; + using ::atan; + using ::atan2; + using ::ceil; + using ::cos; + using ::cosh; + using ::exp; + using ::fabs; + using ::floor; + using ::fmod; + using ::frexp; + using ::ldexp; + using ::log; + using ::log10; + using ::modf; + using ::pow; + using ::sin; + using ::sinh; + using ::sqrt; + using ::tan; + using ::tanh; +} diff --git a/sdk/include/c++/cstddef b/sdk/include/c++/cstddef index 29e4709088f..40f0f867904 100644 --- a/sdk/include/c++/cstddef +++ b/sdk/include/c++/cstddef @@ -1,11 +1,11 @@ -// ISO C++ standards definitions - -#include - -#pragma once - -namespace std -{ - using ::ptrdiff_t; - using ::size_t; -} +// ISO C++ standards definitions + +#include + +#pragma once + +namespace std +{ + using ::ptrdiff_t; + using ::size_t; +} diff --git a/sdk/include/c++/cstdio b/sdk/include/c++/cstdio index 5e361d9303f..f333ce652c8 100644 --- a/sdk/include/c++/cstdio +++ b/sdk/include/c++/cstdio @@ -1,98 +1,98 @@ -// C++ forwarding C stdio header. - -#pragma once - -#include -#include - -// Get rid of those macros defined in in lieu of real functions. -#undef clearerr -#undef fclose -#undef feof -#undef ferror -#undef fflush -#undef fgetc -#undef fgetpos -#undef fgets -#undef fopen -#undef fprintf -#undef fputc -#undef fputs -#undef fread -#undef freopen -#undef fscanf -#undef fseek -#undef fsetpos -#undef ftell -#undef fwrite -#undef getc -#undef getchar -#undef gets -#undef perror -#undef printf -#undef putc -#undef putchar -#undef puts -#undef remove -#undef rename -#undef rewind -#undef scanf -#undef setbuf -#undef setvbuf -#undef sprintf -#undef sscanf -#undef tmpfile -#undef tmpnam -#undef ungetc -#undef vfprintf -#undef vprintf -#undef vsprintf - -namespace std -{ - using ::FILE; - using ::fpos_t; - - using ::clearerr; - using ::fclose; - using ::feof; - using ::ferror; - using ::fflush; - using ::fgetc; - using ::fgetpos; - using ::fgets; - using ::fopen; - using ::fprintf; - using ::fputc; - using ::fputs; - using ::fread; - using ::freopen; - using ::fscanf; - using ::fseek; - using ::fsetpos; - using ::ftell; - using ::fwrite; - using ::getc; - using ::getchar; - using ::gets; - using ::perror; - using ::printf; - using ::putc; - using ::putchar; - using ::puts; - using ::remove; - using ::rename; - using ::rewind; - using ::scanf; - using ::setbuf; - using ::setvbuf; - using ::sprintf; - using ::sscanf; - using ::tmpfile; - using ::tmpnam; - using ::ungetc; - using ::vfprintf; - using ::vprintf; - using ::vsprintf; - using ::vsnprintf; -} +// C++ forwarding C stdio header. + +#pragma once + +#include +#include + +// Get rid of those macros defined in in lieu of real functions. +#undef clearerr +#undef fclose +#undef feof +#undef ferror +#undef fflush +#undef fgetc +#undef fgetpos +#undef fgets +#undef fopen +#undef fprintf +#undef fputc +#undef fputs +#undef fread +#undef freopen +#undef fscanf +#undef fseek +#undef fsetpos +#undef ftell +#undef fwrite +#undef getc +#undef getchar +#undef gets +#undef perror +#undef printf +#undef putc +#undef putchar +#undef puts +#undef remove +#undef rename +#undef rewind +#undef scanf +#undef setbuf +#undef setvbuf +#undef sprintf +#undef sscanf +#undef tmpfile +#undef tmpnam +#undef ungetc +#undef vfprintf +#undef vprintf +#undef vsprintf + +namespace std +{ + using ::FILE; + using ::fpos_t; + + using ::clearerr; + using ::fclose; + using ::feof; + using ::ferror; + using ::fflush; + using ::fgetc; + using ::fgetpos; + using ::fgets; + using ::fopen; + using ::fprintf; + using ::fputc; + using ::fputs; + using ::fread; + using ::freopen; + using ::fscanf; + using ::fseek; + using ::fsetpos; + using ::ftell; + using ::fwrite; + using ::getc; + using ::getchar; + using ::gets; + using ::perror; + using ::printf; + using ::putc; + using ::putchar; + using ::puts; + using ::remove; + using ::rename; + using ::rewind; + using ::scanf; + using ::setbuf; + using ::setvbuf; + using ::sprintf; + using ::sscanf; + using ::tmpfile; + using ::tmpnam; + using ::ungetc; + using ::vfprintf; + using ::vprintf; + using ::vsprintf; + using ::vsnprintf; +} diff --git a/sdk/include/c++/cstdlib b/sdk/include/c++/cstdlib index 4e885765b6f..f207d515872 100644 --- a/sdk/include/c++/cstdlib +++ b/sdk/include/c++/cstdlib @@ -1,77 +1,77 @@ -// Standard C library declarations - -#pragma once - -#include -#include - -// Get rid of those macros defined in in lieu of real functions. -#undef abort -#undef abs -#undef atexit -#undef atof -#undef atoi -#undef atol -#undef bsearch -#undef calloc -#undef div -#undef exit -#undef free -#undef getenv -#undef labs -#undef ldiv -#undef malloc -#undef mblen -#undef mbstowcs -#undef mbtowc -#undef qsort -#undef rand -#undef realloc -#undef srand -#undef strtod -#undef strtol -#undef strtoul -#undef system -#undef wcstombs -#undef wctomb - -namespace std -{ - using ::div_t; - using ::ldiv_t; - - using ::abort; - using ::abs; - using ::atexit; - using ::atof; - using ::atoi; - using ::atol; - using ::bsearch; - using ::calloc; - using ::div; - using ::exit; - using ::free; - using ::getenv; - using ::labs; - using ::ldiv; - using ::malloc; - using ::mblen; - using ::mbstowcs; - using ::mbtowc; - using ::qsort; - using ::rand; - using ::realloc; - using ::srand; - using ::strtod; - using ::strtol; - using ::strtoul; - using ::system; - using ::wcstombs; - using ::wctomb; - - inline long - abs(long __i) { return labs(__i); } - - inline ldiv_t - div(long __i, long __j) { return ldiv(__i, __j); } -} +// Standard C library declarations + +#pragma once + +#include +#include + +// Get rid of those macros defined in in lieu of real functions. +#undef abort +#undef abs +#undef atexit +#undef atof +#undef atoi +#undef atol +#undef bsearch +#undef calloc +#undef div +#undef exit +#undef free +#undef getenv +#undef labs +#undef ldiv +#undef malloc +#undef mblen +#undef mbstowcs +#undef mbtowc +#undef qsort +#undef rand +#undef realloc +#undef srand +#undef strtod +#undef strtol +#undef strtoul +#undef system +#undef wcstombs +#undef wctomb + +namespace std +{ + using ::div_t; + using ::ldiv_t; + + using ::abort; + using ::abs; + using ::atexit; + using ::atof; + using ::atoi; + using ::atol; + using ::bsearch; + using ::calloc; + using ::div; + using ::exit; + using ::free; + using ::getenv; + using ::labs; + using ::ldiv; + using ::malloc; + using ::mblen; + using ::mbstowcs; + using ::mbtowc; + using ::qsort; + using ::rand; + using ::realloc; + using ::srand; + using ::strtod; + using ::strtol; + using ::strtoul; + using ::system; + using ::wcstombs; + using ::wctomb; + + inline long + abs(long __i) { return labs(__i); } + + inline ldiv_t + div(long __i, long __j) { return ldiv(__i, __j); } +} diff --git a/sdk/include/c++/cstring b/sdk/include/c++/cstring index cff37eb2c05..b7ae32c6aeb 100644 --- a/sdk/include/c++/cstring +++ b/sdk/include/c++/cstring @@ -1,60 +1,60 @@ -// Standard C string declarations for C++ - -// -// ISO C++ 14882: 20.4.6 C library -// - -#pragma once - -#include -#include - -// Get rid of those macros defined in in lieu of real functions. -#undef memchr -#undef memcmp -#undef memcpy -#undef memmove -#undef memset -#undef strcat -#undef strchr -#undef strcmp -#undef strcoll -#undef strcpy -#undef strcspn -#undef strerror -#undef strlen -#undef strncat -#undef strncmp -#undef strncpy -#undef strpbrk -#undef strrchr -#undef strspn -#undef strstr -#undef strtok -#undef strxfrm - -namespace std -{ - using ::memchr; - using ::memcmp; - using ::memcpy; - using ::memmove; - using ::memset; - using ::strcat; - using ::strcmp; - using ::strcoll; - using ::strcpy; - using ::strcspn; - using ::strerror; - using ::strlen; - using ::strncat; - using ::strncmp; - using ::strncpy; - using ::strspn; - using ::strtok; - using ::strxfrm; - using ::strchr; - using ::strpbrk; - using ::strrchr; - using ::strstr; -} +// Standard C string declarations for C++ + +// +// ISO C++ 14882: 20.4.6 C library +// + +#pragma once + +#include +#include + +// Get rid of those macros defined in in lieu of real functions. +#undef memchr +#undef memcmp +#undef memcpy +#undef memmove +#undef memset +#undef strcat +#undef strchr +#undef strcmp +#undef strcoll +#undef strcpy +#undef strcspn +#undef strerror +#undef strlen +#undef strncat +#undef strncmp +#undef strncpy +#undef strpbrk +#undef strrchr +#undef strspn +#undef strstr +#undef strtok +#undef strxfrm + +namespace std +{ + using ::memchr; + using ::memcmp; + using ::memcpy; + using ::memmove; + using ::memset; + using ::strcat; + using ::strcmp; + using ::strcoll; + using ::strcpy; + using ::strcspn; + using ::strerror; + using ::strlen; + using ::strncat; + using ::strncmp; + using ::strncpy; + using ::strspn; + using ::strtok; + using ::strxfrm; + using ::strchr; + using ::strpbrk; + using ::strrchr; + using ::strstr; +} diff --git a/sdk/include/c++/ctime b/sdk/include/c++/ctime index f8cfa3436ab..c573eb0d485 100644 --- a/sdk/include/c++/ctime +++ b/sdk/include/c++/ctime @@ -1,34 +1,34 @@ -// ISO C++ date and time declarations - -#include -#include - -#pragma once - -// Get rid of those macros defined in in lieu of real functions. -#undef clock -#undef difftime -#undef mktime -#undef time -#undef asctime -#undef ctime -#undef gmtime -#undef localtime -#undef strftime - -namespace std -{ - using ::clock_t; - using ::time_t; - using ::tm; - - using ::clock; - using ::difftime; - using ::mktime; - using ::time; - using ::asctime; - using ::ctime; - using ::gmtime; - using ::localtime; - using ::strftime; -} +// ISO C++ date and time declarations + +#include +#include + +#pragma once + +// Get rid of those macros defined in in lieu of real functions. +#undef clock +#undef difftime +#undef mktime +#undef time +#undef asctime +#undef ctime +#undef gmtime +#undef localtime +#undef strftime + +namespace std +{ + using ::clock_t; + using ::time_t; + using ::tm; + + using ::clock; + using ::difftime; + using ::mktime; + using ::time; + using ::asctime; + using ::ctime; + using ::gmtime; + using ::localtime; + using ::strftime; +} diff --git a/sdk/include/c++/cwchar b/sdk/include/c++/cwchar index a2c27ae8226..b677e37867d 100644 --- a/sdk/include/c++/cwchar +++ b/sdk/include/c++/cwchar @@ -1,152 +1,152 @@ -// C++ wchar forwarding header - -#pragma once - -#include - -#include - -namespace std -{ - using ::mbstate_t; -} - -// Get rid of those macros defined in in lieu of real functions. -#undef btowc -#undef fgetwc -#undef fgetws -#undef fputwc -#undef fputws -#undef fwide -#undef fwprintf -#undef fwscanf -#undef getwc -#undef getwchar -#undef mbrlen -#undef mbrtowc -#undef mbsinit -#undef mbsrtowcs -#undef putwc -#undef putwchar -#undef swprintf -#undef swscanf -#undef ungetwc -#undef vfwprintf -#undef vfwscanf -#undef vswprintf -#undef vswscanf -#undef vwprintf -#undef vwscanf -#undef wcrtomb -#undef wcscat -#undef wcschr -#undef wcscmp -#undef wcscoll -#undef wcscpy -#undef wcscspn -#undef wcsftime -#undef wcslen -#undef wcsncat -#undef wcsncmp -#undef wcsncpy -#undef wcspbrk -#undef wcsrchr -#undef wcsrtombs -#undef wcsspn -#undef wcsstr -#undef wcstod -#undef wcstof -#undef wcstok -#undef wcstol -#undef wcstoul -#undef wcsxfrm -#undef wctob -#undef wmemchr -#undef wmemcmp -#undef wmemcpy -#undef wmemmove -#undef wmemset -#undef wprintf -#undef wscanf - -namespace std -{ - using ::wint_t; - - using ::btowc; - using ::fgetwc; - using ::fgetws; - using ::fputwc; - using ::fputws; - using ::fwide; - using ::fwprintf; - using ::fwscanf; - using ::getwc; - using ::getwchar; - using ::mbrlen; - using ::mbrtowc; - using ::mbsinit; - using ::mbsrtowcs; - using ::putwc; - using ::putwchar; - using ::swprintf; - using ::swscanf; - using ::ungetwc; - using ::vfwprintf; - using ::vfwscanf; - using ::vswprintf; - using ::vswscanf; - using ::vwprintf; - using ::vwscanf; - using ::wcrtomb; - using ::wcscat; - using ::wcscmp; - using ::wcscoll; - using ::wcscpy; - using ::wcscspn; - using ::wcsftime; - using ::wcslen; - using ::wcsncat; - using ::wcsncmp; - using ::wcsncpy; - using ::wcsrtombs; - using ::wcsspn; - using ::wcstod; - using ::wcstof; - using ::wcstok; - using ::wcstol; - using ::wcstoul; - using ::wcsxfrm; - using ::wctob; - using ::wmemcmp; - using ::wmemcpy; - using ::wmemmove; - using ::wmemset; - using ::wprintf; - using ::wscanf; - using ::wcschr; - using ::wcspbrk; - using ::wcsrchr; - using ::wcsstr; - using ::wmemchr; - - inline wchar_t* - wcschr(wchar_t* __p, wchar_t __c) - { return wcschr(const_cast(__p), __c); } - - inline wchar_t* - wcspbrk(wchar_t* __s1, const wchar_t* __s2) - { return wcspbrk(const_cast(__s1), __s2); } - - inline wchar_t* - wcsrchr(wchar_t* __p, wchar_t __c) - { return wcsrchr(const_cast(__p), __c); } - - inline wchar_t* - wcsstr(wchar_t* __s1, const wchar_t* __s2) - { return wcsstr(const_cast(__s1), __s2); } - - inline wchar_t* - wmemchr(wchar_t* __p, wchar_t __c, size_t __n) - { return wmemchr(const_cast(__p), __c, __n); } -} +// C++ wchar forwarding header + +#pragma once + +#include + +#include + +namespace std +{ + using ::mbstate_t; +} + +// Get rid of those macros defined in in lieu of real functions. +#undef btowc +#undef fgetwc +#undef fgetws +#undef fputwc +#undef fputws +#undef fwide +#undef fwprintf +#undef fwscanf +#undef getwc +#undef getwchar +#undef mbrlen +#undef mbrtowc +#undef mbsinit +#undef mbsrtowcs +#undef putwc +#undef putwchar +#undef swprintf +#undef swscanf +#undef ungetwc +#undef vfwprintf +#undef vfwscanf +#undef vswprintf +#undef vswscanf +#undef vwprintf +#undef vwscanf +#undef wcrtomb +#undef wcscat +#undef wcschr +#undef wcscmp +#undef wcscoll +#undef wcscpy +#undef wcscspn +#undef wcsftime +#undef wcslen +#undef wcsncat +#undef wcsncmp +#undef wcsncpy +#undef wcspbrk +#undef wcsrchr +#undef wcsrtombs +#undef wcsspn +#undef wcsstr +#undef wcstod +#undef wcstof +#undef wcstok +#undef wcstol +#undef wcstoul +#undef wcsxfrm +#undef wctob +#undef wmemchr +#undef wmemcmp +#undef wmemcpy +#undef wmemmove +#undef wmemset +#undef wprintf +#undef wscanf + +namespace std +{ + using ::wint_t; + + using ::btowc; + using ::fgetwc; + using ::fgetws; + using ::fputwc; + using ::fputws; + using ::fwide; + using ::fwprintf; + using ::fwscanf; + using ::getwc; + using ::getwchar; + using ::mbrlen; + using ::mbrtowc; + using ::mbsinit; + using ::mbsrtowcs; + using ::putwc; + using ::putwchar; + using ::swprintf; + using ::swscanf; + using ::ungetwc; + using ::vfwprintf; + using ::vfwscanf; + using ::vswprintf; + using ::vswscanf; + using ::vwprintf; + using ::vwscanf; + using ::wcrtomb; + using ::wcscat; + using ::wcscmp; + using ::wcscoll; + using ::wcscpy; + using ::wcscspn; + using ::wcsftime; + using ::wcslen; + using ::wcsncat; + using ::wcsncmp; + using ::wcsncpy; + using ::wcsrtombs; + using ::wcsspn; + using ::wcstod; + using ::wcstof; + using ::wcstok; + using ::wcstol; + using ::wcstoul; + using ::wcsxfrm; + using ::wctob; + using ::wmemcmp; + using ::wmemcpy; + using ::wmemmove; + using ::wmemset; + using ::wprintf; + using ::wscanf; + using ::wcschr; + using ::wcspbrk; + using ::wcsrchr; + using ::wcsstr; + using ::wmemchr; + + inline wchar_t* + wcschr(wchar_t* __p, wchar_t __c) + { return wcschr(const_cast(__p), __c); } + + inline wchar_t* + wcspbrk(wchar_t* __s1, const wchar_t* __s2) + { return wcspbrk(const_cast(__s1), __s2); } + + inline wchar_t* + wcsrchr(wchar_t* __p, wchar_t __c) + { return wcsrchr(const_cast(__p), __c); } + + inline wchar_t* + wcsstr(wchar_t* __s1, const wchar_t* __s2) + { return wcsstr(const_cast(__s1), __s2); } + + inline wchar_t* + wmemchr(wchar_t* __p, wchar_t __c, size_t __n) + { return wmemchr(const_cast(__p), __c, __n); } +} diff --git a/sdk/include/c++/exception b/sdk/include/c++/exception index a99775c6e2c..f9d200963b7 100644 --- a/sdk/include/c++/exception +++ b/sdk/include/c++/exception @@ -1,54 +1,54 @@ -// Exception Handling support header for -*- C++ -*- - -#ifndef __EXCEPTION__ -#define __EXCEPTION__ - -#include - -extern "C++" { - -class exception -{ -public: - exception() throw(); - exception(const char * const &) throw(); - exception(const char * const &, int) throw(); - - virtual ~exception() throw(); - - virtual const char *what() const throw(); -private: - const char *_name; - int _do_free; -}; - -class bad_exception : public exception -{ -public: - bad_exception(const char *name = "bad exception") throw() - : exception(name) { } - - virtual ~bad_exception() throw() { } -}; - -namespace std -{ - using ::exception; - using ::bad_exception; - - typedef void (*unexpected_handler) (); - - unexpected_handler set_unexpected(unexpected_handler) throw(); - - __MINGW_ATTRIB_NORETURN void unexpected(); - - bool uncaught_exception() throw(); -} // namespace std - -typedef void (*terminate_handler) (); -terminate_handler set_terminate(terminate_handler) throw(); -__MINGW_ATTRIB_NORETURN void terminate() throw(); - -} // extern "C++" - -#endif +// Exception Handling support header for -*- C++ -*- + +#ifndef __EXCEPTION__ +#define __EXCEPTION__ + +#include + +extern "C++" { + +class exception +{ +public: + exception() throw(); + exception(const char * const &) throw(); + exception(const char * const &, int) throw(); + + virtual ~exception() throw(); + + virtual const char *what() const throw(); +private: + const char *_name; + int _do_free; +}; + +class bad_exception : public exception +{ +public: + bad_exception(const char *name = "bad exception") throw() + : exception(name) { } + + virtual ~bad_exception() throw() { } +}; + +namespace std +{ + using ::exception; + using ::bad_exception; + + typedef void (*unexpected_handler) (); + + unexpected_handler set_unexpected(unexpected_handler) throw(); + + __MINGW_ATTRIB_NORETURN void unexpected(); + + bool uncaught_exception() throw(); +} // namespace std + +typedef void (*terminate_handler) (); +terminate_handler set_terminate(terminate_handler) throw(); +__MINGW_ATTRIB_NORETURN void terminate() throw(); + +} // extern "C++" + +#endif diff --git a/sdk/include/c++/new b/sdk/include/c++/new index 821410e31d4..1f82a00a07b 100644 --- a/sdk/include/c++/new +++ b/sdk/include/c++/new @@ -1,47 +1,47 @@ -// Standard C++ dynamic memory management header - -#ifndef _NEW -#define _NEW - -#include -#include - -extern "C++" { - -class bad_alloc : public exception -{ -public: - bad_alloc(const char *name = "bad alloc") throw() - : exception(name) { } - - virtual ~bad_alloc() throw() { } -}; - -namespace std -{ - using ::bad_alloc; - - struct nothrow_t { }; - - extern const nothrow_t nothrow; -} // namespace std - -typedef void (*new_handler)(); - -new_handler set_new_handler(new_handler) throw(); - -void* operator new (std::size_t size, const std::nothrow_t& nothrow_constant) throw(); -inline void* operator new (std::size_t size, void* ptr) throw() { return ptr; } -void* operator new[] (std::size_t size, const std::nothrow_t& nothrow_constant) throw(); -inline void* operator new[] (std::size_t size, void* ptr) throw() { return ptr; } - -void operator delete (void* ptr) throw (); -void operator delete (void* ptr, const std::nothrow_t& nothrow_constant) throw(); -inline void operator delete (void* ptr, void* voidptr2) throw() { } -void operator delete[] (void* ptr) throw (); -void operator delete[] (void* ptr, const std::nothrow_t& nothrow_constant) throw(); -inline void operator delete[] (void* ptr, void* voidptr2) throw() { } - -} // extern "C++" - -#endif +// Standard C++ dynamic memory management header + +#ifndef _NEW +#define _NEW + +#include +#include + +extern "C++" { + +class bad_alloc : public exception +{ +public: + bad_alloc(const char *name = "bad alloc") throw() + : exception(name) { } + + virtual ~bad_alloc() throw() { } +}; + +namespace std +{ + using ::bad_alloc; + + struct nothrow_t { }; + + extern const nothrow_t nothrow; +} // namespace std + +typedef void (*new_handler)(); + +new_handler set_new_handler(new_handler) throw(); + +void* operator new (std::size_t size, const std::nothrow_t& nothrow_constant) throw(); +inline void* operator new (std::size_t size, void* ptr) throw() { return ptr; } +void* operator new[] (std::size_t size, const std::nothrow_t& nothrow_constant) throw(); +inline void* operator new[] (std::size_t size, void* ptr) throw() { return ptr; } + +void operator delete (void* ptr) throw (); +void operator delete (void* ptr, const std::nothrow_t& nothrow_constant) throw(); +inline void operator delete (void* ptr, void* voidptr2) throw() { } +void operator delete[] (void* ptr) throw (); +void operator delete[] (void* ptr, const std::nothrow_t& nothrow_constant) throw(); +inline void operator delete[] (void* ptr, void* voidptr2) throw() { } + +} // extern "C++" + +#endif diff --git a/sdk/include/c++/stlport/algorithm b/sdk/include/c++/stlport/algorithm index f6c969be4c8..c653d8c7732 100644 --- a/sdk/include/c++/stlport/algorithm +++ b/sdk/include/c++/stlport/algorithm @@ -1,62 +1,62 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_ALGORITHM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1 -# include -# define _STLP_ALGORITHM -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1) -# ifndef _STLP_INTERNAL_CSTDIO -// remove() conflicts, should always go first -# include -# endif - -# ifndef _STLP_INTERNAL_ALGO_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(algorithm) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_ALGORITHM */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_ALGORITHM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1 +# include +# define _STLP_ALGORITHM +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1) +# ifndef _STLP_INTERNAL_CSTDIO +// remove() conflicts, should always go first +# include +# endif + +# ifndef _STLP_INTERNAL_ALGO_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(algorithm) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_ALGORITHM */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/bitset b/sdk/include/c++/stlport/bitset index df73e536748..1d7fcf3ebbe 100644 --- a/sdk/include/c++/stlport/bitset +++ b/sdk/include/c++/stlport/bitset @@ -1,70 +1,70 @@ -/* - * Copyright (c) 1998 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_BITSET - -// This implementation of bitset<> has a second template parameter, -// _WordT, which defaults to unsigned long. *YOU SHOULD NOT USE -// THIS FEATURE*. It is experimental, and it may be removed in -// future releases. - -// A bitset of size N, using words of type _WordT, will have -// N % (sizeof(_WordT) * CHAR_BIT) unused bits. (They are the high- -// order bits in the highest word.) It is a class invariant -// of class bitset<> that those unused bits are always zero. - -// Most of the actual code isn't contained in bitset<> itself, but in the -// base class _Base_bitset. The base class works with whole words, not with -// individual bits. This allows us to specialize _Base_bitset for the -// important special case where the bitset is only a single word. - -// The C++ standard does not define the precise semantics of operator[]. -// In this implementation the const version of operator[] is equivalent -// to test(), except that it does no range checking. The non-const version -// returns a reference to a bit, again without doing any range checking. - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x2 -# include -# define _STLP_BITSET -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x2) -# ifndef _STLP_INTERNAL_BITSET -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x2) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(bitset) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x2 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_BITSET */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1998 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_BITSET + +// This implementation of bitset<> has a second template parameter, +// _WordT, which defaults to unsigned long. *YOU SHOULD NOT USE +// THIS FEATURE*. It is experimental, and it may be removed in +// future releases. + +// A bitset of size N, using words of type _WordT, will have +// N % (sizeof(_WordT) * CHAR_BIT) unused bits. (They are the high- +// order bits in the highest word.) It is a class invariant +// of class bitset<> that those unused bits are always zero. + +// Most of the actual code isn't contained in bitset<> itself, but in the +// base class _Base_bitset. The base class works with whole words, not with +// individual bits. This allows us to specialize _Base_bitset for the +// important special case where the bitset is only a single word. + +// The C++ standard does not define the precise semantics of operator[]. +// In this implementation the const version of operator[] is equivalent +// to test(), except that it does no range checking. The non-const version +// returns a reference to a bit, again without doing any range checking. + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x2 +# include +# define _STLP_BITSET +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x2) +# ifndef _STLP_INTERNAL_BITSET +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x2) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(bitset) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x2 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_BITSET */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cassert b/sdk/include/c++/stlport/cassert index b3752ccc8bd..aabd0b4ee50 100644 --- a/sdk/include/c++/stlport/cassert +++ b/sdk/include/c++/stlport/cassert @@ -1,46 +1,46 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x103 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x103) && ! defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -#endif - -#if !defined (_STLP_WCE_EVC3) -# if defined (_STLP_USE_NEW_C_HEADERS) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cassert) -# endif -# else -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x103 ) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x103 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x103) && ! defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +#endif + +#if !defined (_STLP_WCE_EVC3) +# if defined (_STLP_USE_NEW_C_HEADERS) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cassert) +# endif +# else +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x103 ) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cctype b/sdk/include/c++/stlport/cctype index 2eb54831515..513512e928a 100644 --- a/sdk/include/c++/stlport/cctype +++ b/sdk/include/c++/stlport/cctype @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CCTYPE - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x104 -# define _STLP_CCTYPE -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x104 ) -# ifndef _STLP_INTERNAL_CCTYPE -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x104) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cctype) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x104 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CCTYPE */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CCTYPE + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x104 +# define _STLP_CCTYPE +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x104 ) +# ifndef _STLP_INTERNAL_CCTYPE +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x104) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cctype) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x104 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CCTYPE */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cerrno b/sdk/include/c++/stlport/cerrno index d3855e2ecd9..0d17faf5e15 100644 --- a/sdk/include/c++/stlport/cerrno +++ b/sdk/include/c++/stlport/cerrno @@ -1,55 +1,55 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CERRNO -#define _STLP_CERRNO - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x105 -# include -#endif - -#ifndef _STLP_WCE -# if defined (_STLP_USE_NEW_C_HEADERS) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cerrno) -# endif -# else -# include -# endif -#endif - -#ifndef errno /* errno is not a macro */ -# if defined (_STLP_IMPORT_VENDOR_CSTD) -# if !defined (__IBMCPP__) && !defined (__hpux) && !defined (__MWERKS__) && !defined (_STLP_WCE) -_STLP_BEGIN_NAMESPACE -using _STLP_VENDOR_CSTD::errno; -_STLP_END_NAMESPACE -# endif -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x105 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CERRNO */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CERRNO +#define _STLP_CERRNO + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x105 +# include +#endif + +#ifndef _STLP_WCE +# if defined (_STLP_USE_NEW_C_HEADERS) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cerrno) +# endif +# else +# include +# endif +#endif + +#ifndef errno /* errno is not a macro */ +# if defined (_STLP_IMPORT_VENDOR_CSTD) +# if !defined (__IBMCPP__) && !defined (__hpux) && !defined (__MWERKS__) && !defined (_STLP_WCE) +_STLP_BEGIN_NAMESPACE +using _STLP_VENDOR_CSTD::errno; +_STLP_END_NAMESPACE +# endif +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x105 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CERRNO */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cfloat b/sdk/include/c++/stlport/cfloat index ea820a80d24..cb2e0cd0025 100644 --- a/sdk/include/c++/stlport/cfloat +++ b/sdk/include/c++/stlport/cfloat @@ -1,45 +1,45 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CFLOAT -#define _STLP_CFLOAT - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x106 -# include -#endif - -// Borland defines some implementation constants in std:: namespace, -// we do not want to import them. -#if defined (_STLP_USE_NEW_C_HEADERS) && !defined (__BORLANDC__) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cfloat) -# endif -#else -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x106 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CFLOAT */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CFLOAT +#define _STLP_CFLOAT + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x106 +# include +#endif + +// Borland defines some implementation constants in std:: namespace, +// we do not want to import them. +#if defined (_STLP_USE_NEW_C_HEADERS) && !defined (__BORLANDC__) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cfloat) +# endif +#else +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x106 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CFLOAT */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/ciso646 b/sdk/include/c++/stlport/ciso646 index 5dbdb2ec2be..443449d6f5d 100644 --- a/sdk/include/c++/stlport/ciso646 +++ b/sdk/include/c++/stlport/ciso646 @@ -1,45 +1,45 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CISO646 -#define _STLP_CISO646 - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x107 -# include -#endif - -#if !defined(_STLP_WCE_EVC3) && !defined (__BORLANDC__) -# if defined (_STLP_USE_NEW_C_HEADERS) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(ciso646) -# endif -# else -# include -# endif /* _STLP_USE_NEW_C_HEADERS */ -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x107 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CISO646 */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CISO646 +#define _STLP_CISO646 + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x107 +# include +#endif + +#if !defined(_STLP_WCE_EVC3) && !defined (__BORLANDC__) +# if defined (_STLP_USE_NEW_C_HEADERS) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(ciso646) +# endif +# else +# include +# endif /* _STLP_USE_NEW_C_HEADERS */ +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x107 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CISO646 */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/climits b/sdk/include/c++/stlport/climits index 87a165ce4fa..86bc413c876 100644 --- a/sdk/include/c++/stlport/climits +++ b/sdk/include/c++/stlport/climits @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CLIMITS -# define _STLP_CLIMITS - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x108 -# include -#endif - -#if defined (__SUNPRO_CC) && ((__SUNPRO_CC == 0x500) && (__SUNPRO_CC_COMPAT > 4)) -# include -#elif defined (_STLP_USE_NEW_C_HEADERS) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(climits) -# endif -#else -# if defined (__BORLANDC__) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_C_HEADER(limits.h) -# endif -# else -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x108 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CLIMITS */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CLIMITS +# define _STLP_CLIMITS + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x108 +# include +#endif + +#if defined (__SUNPRO_CC) && ((__SUNPRO_CC == 0x500) && (__SUNPRO_CC_COMPAT > 4)) +# include +#elif defined (_STLP_USE_NEW_C_HEADERS) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(climits) +# endif +#else +# if defined (__BORLANDC__) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_C_HEADER(limits.h) +# endif +# else +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x108 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CLIMITS */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/clocale b/sdk/include/c++/stlport/clocale index f992a660802..28996ced4eb 100644 --- a/sdk/include/c++/stlport/clocale +++ b/sdk/include/c++/stlport/clocale @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CLOCALE - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x109 -# define _STLP_CLOCALE -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x109) -# ifndef _STLP_INTERNAL_CLOCALE -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x109) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(clocale) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x109) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CLOCALE */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CLOCALE + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x109 +# define _STLP_CLOCALE +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x109) +# ifndef _STLP_INTERNAL_CLOCALE +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x109) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(clocale) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x109) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CLOCALE */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cmath b/sdk/include/c++/stlport/cmath index ec7575dadc1..46a8f52ec78 100644 --- a/sdk/include/c++/stlport/cmath +++ b/sdk/include/c++/stlport/cmath @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CMATH - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x110 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x110) && !defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_CMATH -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x110) && !defined (_STLP_DONT_POP_HEADER_ID) -# ifndef _STLP_INTERNAL_CMATH -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x110) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cmath) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x110) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif /* _STLP_CMATH */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CMATH + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x110 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x110) && !defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_CMATH +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x110) && !defined (_STLP_DONT_POP_HEADER_ID) +# ifndef _STLP_INTERNAL_CMATH +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x110) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cmath) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x110) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif /* _STLP_CMATH */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/complex b/sdk/include/c++/stlport/complex index 445c7ffc812..6cfe6052f93 100644 --- a/sdk/include/c++/stlport/complex +++ b/sdk/include/c++/stlport/complex @@ -1,57 +1,57 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_COMPLEX - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x10 -# define _STLP_COMPLEX -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x10) -// This header declares the template class complex, as described in -// in the C++ Standard. Single-precision complex numbers -// are complex, double-precision are complex, and -// quad precision are complex. - -// Note that the template class complex is declared within namespace -// std, as called for by the draft C++ standard -# ifndef _STLP_INTERNAL_COMPLEX -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x10) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(complex) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x10 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_COMPLEX */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_COMPLEX + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x10 +# define _STLP_COMPLEX +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x10) +// This header declares the template class complex, as described in +// in the C++ Standard. Single-precision complex numbers +// are complex, double-precision are complex, and +// quad precision are complex. + +// Note that the template class complex is declared within namespace +// std, as called for by the draft C++ standard +# ifndef _STLP_INTERNAL_COMPLEX +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x10) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(complex) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x10 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_COMPLEX */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/csetjmp b/sdk/include/c++/stlport/csetjmp index c6d869335a0..eef2bd861ed 100644 --- a/sdk/include/c++/stlport/csetjmp +++ b/sdk/include/c++/stlport/csetjmp @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSETJMP - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x111 -# define _STLP_CSETJMP -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x111) -# ifndef _STLP_INTERNAL_CSETJMP -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x111) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(csetjmp) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x111 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CSETJMP */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSETJMP + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x111 +# define _STLP_CSETJMP +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x111) +# ifndef _STLP_INTERNAL_CSETJMP +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x111) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(csetjmp) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x111 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CSETJMP */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/csignal b/sdk/include/c++/stlport/csignal index 3f36517cda5..7b1a30d5082 100644 --- a/sdk/include/c++/stlport/csignal +++ b/sdk/include/c++/stlport/csignal @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSIGNAL - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x112 -# define _STLP_CSIGNAL -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x112) -# ifndef _STLP_INTERNAL_CSIGNAL -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x112) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(csignal) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x112 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CSIGNAL */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSIGNAL + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x112 +# define _STLP_CSIGNAL +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x112) +# ifndef _STLP_INTERNAL_CSIGNAL +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x112) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(csignal) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x112 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CSIGNAL */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cstdarg b/sdk/include/c++/stlport/cstdarg index 7dfa90bc4fe..6882bbdc077 100644 --- a/sdk/include/c++/stlport/cstdarg +++ b/sdk/include/c++/stlport/cstdarg @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSTDARG - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x113 -# define _STLP_CSTDARG -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x113) -# ifndef _STLP_INTERNAL_CSTDARG -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x113) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cstdarg) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x113 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CSTDARG */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSTDARG + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x113 +# define _STLP_CSTDARG +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x113) +# ifndef _STLP_INTERNAL_CSTDARG +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x113) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cstdarg) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x113 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CSTDARG */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cstddef b/sdk/include/c++/stlport/cstddef index 95d9934861c..0a66f0e4d5b 100644 --- a/sdk/include/c++/stlport/cstddef +++ b/sdk/include/c++/stlport/cstddef @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSTDDEF - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x114 -# define _STLP_CSTDDEF -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x114) -# ifndef _STLP_INTERNAL_CSTDDEF -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x114) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cstddef) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x114 ) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CSTDDEF */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSTDDEF + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x114 +# define _STLP_CSTDDEF +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x114) +# ifndef _STLP_INTERNAL_CSTDDEF +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x114) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cstddef) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x114 ) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CSTDDEF */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cstdio b/sdk/include/c++/stlport/cstdio index d5e10eda47d..e20c8fff79d 100644 --- a/sdk/include/c++/stlport/cstdio +++ b/sdk/include/c++/stlport/cstdio @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSTDIO - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x15 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x15) && !defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_CSTDIO -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x15) && !defined (_STLP_DONT_POP_HEADER_ID) -# ifndef _STLP_INTERNAL_CSTDIO -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x15) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cstdio) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x15) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSTDIO + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x15 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x15) && !defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_CSTDIO +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x15) && !defined (_STLP_DONT_POP_HEADER_ID) +# ifndef _STLP_INTERNAL_CSTDIO +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x15) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cstdio) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x15) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cstdlib b/sdk/include/c++/stlport/cstdlib index 94e3e1de2f1..20afa3563a9 100644 --- a/sdk/include/c++/stlport/cstdlib +++ b/sdk/include/c++/stlport/cstdlib @@ -1,54 +1,54 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSTDLIB - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x116 -# define _STLP_CSTDLIB -# include -#endif - -# if defined (__GNUC__) && defined (__MINGW32__) -/* Native cstdlib includes stdlib.h using an include_next so STLport stdlib.h - * is not used and the workaround in this file must be duplicated here - * (see stdlib.h). */ -# include "errno.h" -# endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x116) -# ifndef _STLP_INTERNAL_CSTDLIB -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x116) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cstdlib) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x116) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CSTDLIB */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSTDLIB + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x116 +# define _STLP_CSTDLIB +# include +#endif + +# if defined (__GNUC__) && defined (__MINGW32__) +/* Native cstdlib includes stdlib.h using an include_next so STLport stdlib.h + * is not used and the workaround in this file must be duplicated here + * (see stdlib.h). */ +# include "errno.h" +# endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x116) +# ifndef _STLP_INTERNAL_CSTDLIB +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x116) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cstdlib) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x116) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CSTDLIB */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cstring b/sdk/include/c++/stlport/cstring index a96f6586d57..d5cf58d0175 100644 --- a/sdk/include/c++/stlport/cstring +++ b/sdk/include/c++/stlport/cstring @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CSTRING - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x117 -# define _STLP_CSTRING -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x117) -# ifndef _STLP_INTERNAL_CSTRING -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x117) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cstring) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x117) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CSTRING */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CSTRING + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x117 +# define _STLP_CSTRING +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x117) +# ifndef _STLP_INTERNAL_CSTRING +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x117) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cstring) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x117) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CSTRING */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/ctime b/sdk/include/c++/stlport/ctime index 88cf54ae77d..bafb7dd2e32 100644 --- a/sdk/include/c++/stlport/ctime +++ b/sdk/include/c++/stlport/ctime @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CTIME - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x118 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x118) && ! defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_CTIME -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x118) && !defined (_STLP_DONT_POP_HEADER_ID) -# ifndef _STLP_INTERNAL_CTIME -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x118) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(ctime) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x118) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif /* _STLP_CTIME */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CTIME + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x118 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x118) && ! defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_CTIME +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x118) && !defined (_STLP_DONT_POP_HEADER_ID) +# ifndef _STLP_INTERNAL_CTIME +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x118) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(ctime) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x118) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif /* _STLP_CTIME */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cwchar b/sdk/include/c++/stlport/cwchar index 598a71de528..0b3205474a4 100644 --- a/sdk/include/c++/stlport/cwchar +++ b/sdk/include/c++/stlport/cwchar @@ -1,48 +1,48 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CWCHAR - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x120 -# define _STLP_CWCHAR -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x120) -# ifndef _STLP_INTERNAL_CWCHAR -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x120) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cwchar) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x120) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CWCHAR */ - - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CWCHAR + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x120 +# define _STLP_CWCHAR +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x120) +# ifndef _STLP_INTERNAL_CWCHAR +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x120) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cwchar) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x120) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CWCHAR */ + + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/cwctype b/sdk/include/c++/stlport/cwctype index be23b219275..0e86218e013 100644 --- a/sdk/include/c++/stlport/cwctype +++ b/sdk/include/c++/stlport/cwctype @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_CWCTYPE - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x121 -# define _STLP_CWCTYPE -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x121) -# ifndef _STLP_INTERNAL_CWCTYPE -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x121) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_C_HEADER(cwctype) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x121) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_CWCTYPE */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_CWCTYPE + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x121 +# define _STLP_CWCTYPE +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x121) +# ifndef _STLP_INTERNAL_CWCTYPE +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x121) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_C_HEADER(cwctype) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x121) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_CWCTYPE */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/deque b/sdk/include/c++/stlport/deque index fc27504b067..448f159b7fa 100644 --- a/sdk/include/c++/stlport/deque +++ b/sdk/include/c++/stlport/deque @@ -1,57 +1,57 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_DEQUE - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x22 -# include -# define _STLP_DEQUE -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x22) -# ifndef _STLP_INTERNAL_DEQUE_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x22) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(deque) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x22) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_DEQUE */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_DEQUE + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x22 +# include +# define _STLP_DEQUE +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x22) +# ifndef _STLP_INTERNAL_DEQUE_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x22) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(deque) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x22) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_DEQUE */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/exception b/sdk/include/c++/stlport/exception index 80035c542c3..47822e91547 100644 --- a/sdk/include/c++/stlport/exception +++ b/sdk/include/c++/stlport/exception @@ -1,68 +1,68 @@ -/* - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - */ - -// This header exists solely for portability. Normally it just includes -// the native header . - -#ifndef _STLP_EXCEPTION - -#if !defined (_STLP_OUTERMOST_HEADER_ID) -# define _STLP_OUTERMOST_HEADER_ID 0x423 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x423) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_EXCEPTION -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x423) && !defined (_STLP_DONT_POP_HEADER_ID) -# ifndef _STLP_INTERNAL_EXCEPTION -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x423) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) -/* If we are here it means that we are in an include called - * from the native lib which means that we can simply forward this - * call to the native exception header: - */ -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# if defined (__DMC__) && (_STLP_OUTERMOST_HEADER_ID == 0x874) -// Workaround to DMC harcoded typeinfo.h inclusion. -# include <../include/exception> -# else -# include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception) -# endif -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x423) -# if !defined(_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif /* _STLP_EXCEPTION */ - - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + */ + +// This header exists solely for portability. Normally it just includes +// the native header . + +#ifndef _STLP_EXCEPTION + +#if !defined (_STLP_OUTERMOST_HEADER_ID) +# define _STLP_OUTERMOST_HEADER_ID 0x423 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x423) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_EXCEPTION +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x423) && !defined (_STLP_DONT_POP_HEADER_ID) +# ifndef _STLP_INTERNAL_EXCEPTION +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x423) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) +/* If we are here it means that we are in an include called + * from the native lib which means that we can simply forward this + * call to the native exception header: + */ +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# if defined (__DMC__) && (_STLP_OUTERMOST_HEADER_ID == 0x874) +// Workaround to DMC harcoded typeinfo.h inclusion. +# include <../include/exception> +# else +# include _STLP_NATIVE_CPP_RUNTIME_HEADER(exception) +# endif +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x423) +# if !defined(_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif /* _STLP_EXCEPTION */ + + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/fstream b/sdk/include/c++/stlport/fstream index 20b6be22b4c..fc4cd1eaddd 100644 --- a/sdk/include/c++/stlport/fstream +++ b/sdk/include/c++/stlport/fstream @@ -1,66 +1,66 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - - -// This header defines classes basic_filebuf, basic_ifstream, -// basic_ofstream, and basic_fstream. These classes represent -// streambufs and streams whose sources or destinations are files. - -#ifndef _STLP_FSTREAM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1025 -# include -# define _STLP_FSTREAM -# if defined (__DMC__) && defined (_DLL) -# define _STLP_CLASS_IMPORT_DECLSPEC __declspec(dllimport) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1025) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_FSTREAM_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1025) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(fstream) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1025) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# if defined (__DMC__) && defined (_DLL) -# undef _STLP_CLASS_IMPORT_DECLSPEC -# define _STLP_CLASS_IMPORT_DECLSPEC -# endif -#endif - -#endif /* _STLP_FSTREAM */ - - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + + +// This header defines classes basic_filebuf, basic_ifstream, +// basic_ofstream, and basic_fstream. These classes represent +// streambufs and streams whose sources or destinations are files. + +#ifndef _STLP_FSTREAM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1025 +# include +# define _STLP_FSTREAM +# if defined (__DMC__) && defined (_DLL) +# define _STLP_CLASS_IMPORT_DECLSPEC __declspec(dllimport) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1025) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_FSTREAM_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1025) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(fstream) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1025) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# if defined (__DMC__) && defined (_DLL) +# undef _STLP_CLASS_IMPORT_DECLSPEC +# define _STLP_CLASS_IMPORT_DECLSPEC +# endif +#endif + +#endif /* _STLP_FSTREAM */ + + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/functional b/sdk/include/c++/stlport/functional index 69e2dfbf0c4..27e37ab9832 100644 --- a/sdk/include/c++/stlport/functional +++ b/sdk/include/c++/stlport/functional @@ -1,148 +1,148 @@ -/* - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_FUNCTIONAL - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x27 -# include -# define _STLP_FUNCTIONAL -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x27) -# ifndef _STLP_INTERNAL_FUNCTION_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x27) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(functional) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x27) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#if !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) - -#include -#include -#include -#include -#include - -namespace boost { - -template class reference_wrapper; -template reference_wrapper const ref(T &); -template inline reference_wrapper const cref(T const &); - -template struct result_of; - -namespace _mfi { -template class dm; -} - -template _mfi::dm mem_fn(R T::*f); - -} // namespace boost - -_STLP_BEGIN_NAMESPACE - -namespace tr1 { - -using ::boost::reference_wrapper; -using ::boost::ref; -using ::boost::cref; - -using ::boost::result_of; - -using ::boost::mem_fn; - -using ::boost::bind; - -namespace placeholders { - using ::_1; - using ::_2; - using ::_3; - using ::_4; - using ::_5; - using ::_6; - using ::_7; - using ::_8; - using ::_9; -} // placeholders - -} // namespace tr1 - -_STLP_END_NAMESPACE - -#endif // !_STLP_NO_EXTENSIONS && _STLP_USE_BOOST_SUPPORT - -#endif /* _STLP_FUNCTIONAL */ - -#if !defined(_STLP_FUNCTIONAL_FUN) && !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) - -#ifndef BOOST_FUNCTION_NUM_ARGS // avoid recursive includes - -// #ifdef BOOST_FUNCTION_BASE_HEADER -// #undef BOOST_FUNCTION_BASE_HEADER -// #endif - -// #ifdef BOOST_FUNCTION_PROLOGUE_HPP -// #undef BOOST_FUNCTION_PROLOGUE_HPP -// #endif - -#define _STLP_FUNCTIONAL_FUN - -#ifndef BOOST_FUNCTION_BASE_HEADER // avoid recursive includes -# include -#else -namespace boost { -class bad_function_call; -template -class function; -template -void swap(function& f1, function& f2); -} -#endif - -_STLP_BEGIN_NAMESPACE - -namespace tr1 { - -using ::boost::bad_function_call; -using ::boost::function; -using ::boost::swap; - -} // namespace tr1 - -_STLP_END_NAMESPACE - -#endif // !BOOST_FUNCTION_NUM_ARGS - -#endif // !_STLP_FUNCTIONAL_REF && !_STLP_NO_EXTENSIONS && _STLP_USE_BOOST_SUPPORT - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_FUNCTIONAL + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x27 +# include +# define _STLP_FUNCTIONAL +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x27) +# ifndef _STLP_INTERNAL_FUNCTION_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x27) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(functional) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x27) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#if !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) + +#include +#include +#include +#include +#include + +namespace boost { + +template class reference_wrapper; +template reference_wrapper const ref(T &); +template inline reference_wrapper const cref(T const &); + +template struct result_of; + +namespace _mfi { +template class dm; +} + +template _mfi::dm mem_fn(R T::*f); + +} // namespace boost + +_STLP_BEGIN_NAMESPACE + +namespace tr1 { + +using ::boost::reference_wrapper; +using ::boost::ref; +using ::boost::cref; + +using ::boost::result_of; + +using ::boost::mem_fn; + +using ::boost::bind; + +namespace placeholders { + using ::_1; + using ::_2; + using ::_3; + using ::_4; + using ::_5; + using ::_6; + using ::_7; + using ::_8; + using ::_9; +} // placeholders + +} // namespace tr1 + +_STLP_END_NAMESPACE + +#endif // !_STLP_NO_EXTENSIONS && _STLP_USE_BOOST_SUPPORT + +#endif /* _STLP_FUNCTIONAL */ + +#if !defined(_STLP_FUNCTIONAL_FUN) && !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) + +#ifndef BOOST_FUNCTION_NUM_ARGS // avoid recursive includes + +// #ifdef BOOST_FUNCTION_BASE_HEADER +// #undef BOOST_FUNCTION_BASE_HEADER +// #endif + +// #ifdef BOOST_FUNCTION_PROLOGUE_HPP +// #undef BOOST_FUNCTION_PROLOGUE_HPP +// #endif + +#define _STLP_FUNCTIONAL_FUN + +#ifndef BOOST_FUNCTION_BASE_HEADER // avoid recursive includes +# include +#else +namespace boost { +class bad_function_call; +template +class function; +template +void swap(function& f1, function& f2); +} +#endif + +_STLP_BEGIN_NAMESPACE + +namespace tr1 { + +using ::boost::bad_function_call; +using ::boost::function; +using ::boost::swap; + +} // namespace tr1 + +_STLP_END_NAMESPACE + +#endif // !BOOST_FUNCTION_NUM_ARGS + +#endif // !_STLP_FUNCTIONAL_REF && !_STLP_NO_EXTENSIONS && _STLP_USE_BOOST_SUPPORT + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/hash_map b/sdk/include/c++/stlport/hash_map index ea1daa96046..0e2422d88fe 100644 --- a/sdk/include/c++/stlport/hash_map +++ b/sdk/include/c++/stlport/hash_map @@ -1,49 +1,49 @@ -/* - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_HASH_MAP -#define _STLP_HASH_MAP - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x4028 -# include -#endif - -#ifdef _STLP_PRAGMA_ONCE -# pragma once -#endif - -#if defined (_STLP_NO_EXTENSIONS) -/* Comment following if you want to use hash constainers even if you ask for - * no extension. - */ -# error The hash_map and hash_multimap class are STLport extensions. -#endif - -#include - -#if (_STLP_OUTERMOST_HEADER_ID == 0x4028) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_HASH_MAP */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_HASH_MAP +#define _STLP_HASH_MAP + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x4028 +# include +#endif + +#ifdef _STLP_PRAGMA_ONCE +# pragma once +#endif + +#if defined (_STLP_NO_EXTENSIONS) +/* Comment following if you want to use hash constainers even if you ask for + * no extension. + */ +# error The hash_map and hash_multimap class are STLport extensions. +#endif + +#include + +#if (_STLP_OUTERMOST_HEADER_ID == 0x4028) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_HASH_MAP */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/hash_set b/sdk/include/c++/stlport/hash_set index ccf284b7625..0fc89ec5684 100644 --- a/sdk/include/c++/stlport/hash_set +++ b/sdk/include/c++/stlport/hash_set @@ -1,49 +1,49 @@ -/* - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_HASH_SET -#define _STLP_HASH_SET - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x4029 -# include -#endif - -#ifdef _STLP_PRAGMA_ONCE -# pragma once -#endif - -#if defined (_STLP_NO_EXTENSIONS) -/* Comment following if you want to use hash constainers even if you ask for - * no extension. - */ -# error The hash_set and hash_multiset class are STLport extensions. -#endif - -#include - -#if (_STLP_OUTERMOST_HEADER_ID == 0x4029) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_HASH_SET */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_HASH_SET +#define _STLP_HASH_SET + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x4029 +# include +#endif + +#ifdef _STLP_PRAGMA_ONCE +# pragma once +#endif + +#if defined (_STLP_NO_EXTENSIONS) +/* Comment following if you want to use hash constainers even if you ask for + * no extension. + */ +# error The hash_set and hash_multiset class are STLport extensions. +#endif + +#include + +#if (_STLP_OUTERMOST_HEADER_ID == 0x4029) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_HASH_SET */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/iomanip b/sdk/include/c++/stlport/iomanip index 6783a3c91b4..085564f9e12 100644 --- a/sdk/include/c++/stlport/iomanip +++ b/sdk/include/c++/stlport/iomanip @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_IOMANIP - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1030 -# include -# define _STLP_IOMANIP -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1030) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_IOMANIP -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1030) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(iomanip) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1030) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_IOMANIP */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_IOMANIP + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1030 +# include +# define _STLP_IOMANIP +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1030) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_IOMANIP +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1030) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(iomanip) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1030) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_IOMANIP */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/ios b/sdk/include/c++/stlport/ios index fc367264e2a..12492bb728c 100644 --- a/sdk/include/c++/stlport/ios +++ b/sdk/include/c++/stlport/ios @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_IOS - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1032 -# include -# define _STLP_IOS -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1032) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_IOS_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1032) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(ios) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1032) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_IOS */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_IOS + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1032 +# include +# define _STLP_IOS +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1032) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_IOS_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1032) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(ios) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1032) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_IOS */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/iosfwd b/sdk/include/c++/stlport/iosfwd index 9ce9e878732..14010465b45 100644 --- a/sdk/include/c++/stlport/iosfwd +++ b/sdk/include/c++/stlport/iosfwd @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_IOSFWD - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1034 -# include -# define _STLP_IOSFWD -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1034) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_IOSFWD -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1034) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(iosfwd) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1034) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_IOSFWD */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_IOSFWD + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1034 +# include +# define _STLP_IOSFWD +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1034) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_IOSFWD +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1034) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(iosfwd) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1034) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_IOSFWD */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/iostream b/sdk/include/c++/stlport/iostream index 100c1c0a668..1241f10c58a 100644 --- a/sdk/include/c++/stlport/iostream +++ b/sdk/include/c++/stlport/iostream @@ -1,104 +1,104 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_IOSTREAM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1037 -# include -# define _STLP_IOSTREAM -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1037) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifdef _STLP_REDIRECT_STDSTREAMS -// for ofstream redirection -# ifndef _STLP_INTERNAL_FSTREAM_H -# include -# endif -# endif - -# ifndef _STLP_INTERNAL_IOSFWD -# include -# endif - -# ifndef _STLP_INTERNAL_ISTREAM -# include -# endif - -_STLP_BEGIN_NAMESPACE - -# ifndef _STLP_USE_NAMESPACES -// in case of SGI iostreams, we have to rename our streams not to clash with those -// provided in native lib -# define cin _STLP_cin -# define cout _STLP_cout -# define cerr _STLP_cerr -# define clog _STLP_clog -# endif - -// Note: cin and wcin are both associated with stdio. The C standard -// (Amendment 1, section 4.6.2.1) says that it is an error to mix -// wide- and narrow-oriented I/O on the same stream. This implies -// that it is an error to use both cin and wcin in the same C++ -// program; the same applies to cout and wcout, and cerr/clog and -// wcerr/wclog. - -extern _STLP_DECLSPEC istream cin; - -# ifdef _STLP_REDIRECT_STDSTREAMS -extern _STLP_DECLSPEC ofstream cout; -extern _STLP_DECLSPEC ofstream cerr; -extern _STLP_DECLSPEC ofstream clog; -# else -extern _STLP_DECLSPEC ostream cout; -extern _STLP_DECLSPEC ostream cerr; -extern _STLP_DECLSPEC ostream clog; -# endif - -# ifndef _STLP_NO_WCHAR_T -extern _STLP_DECLSPEC wistream wcin; -extern _STLP_DECLSPEC wostream wcout; -extern _STLP_DECLSPEC wostream wcerr; -extern _STLP_DECLSPEC wostream wclog; -# endif - -_STLP_END_NAMESPACE - -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1037) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(iostream) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1037) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_IOSTREAM */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_IOSTREAM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1037 +# include +# define _STLP_IOSTREAM +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1037) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifdef _STLP_REDIRECT_STDSTREAMS +// for ofstream redirection +# ifndef _STLP_INTERNAL_FSTREAM_H +# include +# endif +# endif + +# ifndef _STLP_INTERNAL_IOSFWD +# include +# endif + +# ifndef _STLP_INTERNAL_ISTREAM +# include +# endif + +_STLP_BEGIN_NAMESPACE + +# ifndef _STLP_USE_NAMESPACES +// in case of SGI iostreams, we have to rename our streams not to clash with those +// provided in native lib +# define cin _STLP_cin +# define cout _STLP_cout +# define cerr _STLP_cerr +# define clog _STLP_clog +# endif + +// Note: cin and wcin are both associated with stdio. The C standard +// (Amendment 1, section 4.6.2.1) says that it is an error to mix +// wide- and narrow-oriented I/O on the same stream. This implies +// that it is an error to use both cin and wcin in the same C++ +// program; the same applies to cout and wcout, and cerr/clog and +// wcerr/wclog. + +extern _STLP_DECLSPEC istream cin; + +# ifdef _STLP_REDIRECT_STDSTREAMS +extern _STLP_DECLSPEC ofstream cout; +extern _STLP_DECLSPEC ofstream cerr; +extern _STLP_DECLSPEC ofstream clog; +# else +extern _STLP_DECLSPEC ostream cout; +extern _STLP_DECLSPEC ostream cerr; +extern _STLP_DECLSPEC ostream clog; +# endif + +# ifndef _STLP_NO_WCHAR_T +extern _STLP_DECLSPEC wistream wcin; +extern _STLP_DECLSPEC wostream wcout; +extern _STLP_DECLSPEC wostream wcerr; +extern _STLP_DECLSPEC wostream wclog; +# endif + +_STLP_END_NAMESPACE + +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1037) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(iostream) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1037) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_IOSTREAM */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/istream b/sdk/include/c++/stlport/istream index 9a6ea0fcec8..d4ca903abf4 100644 --- a/sdk/include/c++/stlport/istream +++ b/sdk/include/c++/stlport/istream @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_ISTREAM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1036 -# include -# define _STLP_ISTREAM -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1036) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_ISTREAM -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1036) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(istream) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1036) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_ISTREAM */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_ISTREAM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1036 +# include +# define _STLP_ISTREAM +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1036) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_ISTREAM +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1036) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(istream) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1036) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_ISTREAM */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/iterator b/sdk/include/c++/stlport/iterator index 41eaf21ee51..f8d3deee7c6 100644 --- a/sdk/include/c++/stlport/iterator +++ b/sdk/include/c++/stlport/iterator @@ -1,61 +1,61 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_ITERATOR - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x38 -# include -# define _STLP_ITERATOR -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x38) -# ifndef _STLP_INTERNAL_ITERATOR_H -# include -# endif - -# ifndef _STLP_INTERNAL_STREAM_ITERATOR_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x38) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(iterator) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x38) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_ITERATOR */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_ITERATOR + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x38 +# include +# define _STLP_ITERATOR +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x38) +# ifndef _STLP_INTERNAL_ITERATOR_H +# include +# endif + +# ifndef _STLP_INTERNAL_STREAM_ITERATOR_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x38) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(iterator) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x38) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_ITERATOR */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/limits b/sdk/include/c++/stlport/limits index 1625b46952c..5333b14fdd4 100644 --- a/sdk/include/c++/stlport/limits +++ b/sdk/include/c++/stlport/limits @@ -1,50 +1,50 @@ -/* - * Copyright (c) 1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_LIMITS - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x39 -# include -# define _STLP_LIMITS -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x39) -# ifndef _STLP_INTERNAL_LIMITS -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x39) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(limits) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x39) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_LIMITS */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_LIMITS + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x39 +# include +# define _STLP_LIMITS +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x39) +# ifndef _STLP_INTERNAL_LIMITS +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x39) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(limits) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x39) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_LIMITS */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/list b/sdk/include/c++/stlport/list index fd5d111a72a..647a8be5d0a 100644 --- a/sdk/include/c++/stlport/list +++ b/sdk/include/c++/stlport/list @@ -1,57 +1,57 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_LIST - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x40 -# include -# define _STLP_LIST -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x40) -# ifndef _STLP_INTERNAL_LIST_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x40) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(list) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x40) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_LIST */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_LIST + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x40 +# include +# define _STLP_LIST +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x40) +# ifndef _STLP_INTERNAL_LIST_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x40) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(list) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x40) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_LIST */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/locale b/sdk/include/c++/stlport/locale index 88519a6c704..22cd01fb0dc 100644 --- a/sdk/include/c++/stlport/locale +++ b/sdk/include/c++/stlport/locale @@ -1,156 +1,156 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ -#ifndef _STLP_LOCALE - -// Basic framework: class locale and class locale::facet - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1041 -# include -# define _STLP_LOCALE -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1041) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -// Individual facets -# ifndef _STLP_INTERNAL_CTYPE_H -# include -# endif - -# ifndef _STLP_INTERNAL_CODECVT_H -# include -# endif - -# ifndef _STLP_INTERNAL_COLLATE_H -# include -# endif - -# ifndef _STLP_INTERNAL_NUM_PUT_H -# include -# endif - -# ifndef _STLP_INTERNAL_NUM_GET_H -# include -# endif - -// those never included separately anyway -# include -# include -# include - -// some stuff for streambuf iterators ended up defined there -// Strictly speaking, _istream.h portion is only required for , but it may break too many -// programs if we omit it -# ifndef _STLP_ISTREAM_H -# include -# endif - -// Convenience interfaces -#undef isspace -#undef isprint -#undef iscntrl -#undef isupper -#undef islower -#undef isalpha -#undef isdigit -#undef ispunct -#undef isxdigit -#undef isalnum -#undef isgraph -#undef toupper -#undef tolower - -_STLP_BEGIN_NAMESPACE - -template -inline bool isspace (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::space, c); } - -template -inline bool isprint (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::print, c); } - -template -inline bool iscntrl (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::cntrl, c); } - -template -inline bool isupper (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::upper, c); } - -template -inline bool islower (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::lower, c); } - -template -inline bool isalpha (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::alpha, c); } - -template -inline bool isdigit (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::digit, c); } - -template -inline bool ispunct (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::punct, c); } - -template -inline bool isxdigit (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::xdigit, c); } - -template -inline bool isalnum (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::alnum, c); } - -template -inline bool isgraph (_CharT c, const locale& loc) -{ return (use_facet >(loc)).is(ctype_base::graph, c); } - -template -inline _CharT toupper(_CharT c, const locale& loc) -{ return (use_facet >(loc)).toupper(c); } - -template -inline _CharT tolower(_CharT c, const locale& loc) -{ return (use_facet >(loc)).tolower(c); } - -_STLP_END_NAMESPACE - -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1041) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(locale) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1041) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_LOCALE */ - - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ +#ifndef _STLP_LOCALE + +// Basic framework: class locale and class locale::facet + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1041 +# include +# define _STLP_LOCALE +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1041) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +// Individual facets +# ifndef _STLP_INTERNAL_CTYPE_H +# include +# endif + +# ifndef _STLP_INTERNAL_CODECVT_H +# include +# endif + +# ifndef _STLP_INTERNAL_COLLATE_H +# include +# endif + +# ifndef _STLP_INTERNAL_NUM_PUT_H +# include +# endif + +# ifndef _STLP_INTERNAL_NUM_GET_H +# include +# endif + +// those never included separately anyway +# include +# include +# include + +// some stuff for streambuf iterators ended up defined there +// Strictly speaking, _istream.h portion is only required for , but it may break too many +// programs if we omit it +# ifndef _STLP_ISTREAM_H +# include +# endif + +// Convenience interfaces +#undef isspace +#undef isprint +#undef iscntrl +#undef isupper +#undef islower +#undef isalpha +#undef isdigit +#undef ispunct +#undef isxdigit +#undef isalnum +#undef isgraph +#undef toupper +#undef tolower + +_STLP_BEGIN_NAMESPACE + +template +inline bool isspace (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::space, c); } + +template +inline bool isprint (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::print, c); } + +template +inline bool iscntrl (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::cntrl, c); } + +template +inline bool isupper (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::upper, c); } + +template +inline bool islower (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::lower, c); } + +template +inline bool isalpha (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::alpha, c); } + +template +inline bool isdigit (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::digit, c); } + +template +inline bool ispunct (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::punct, c); } + +template +inline bool isxdigit (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::xdigit, c); } + +template +inline bool isalnum (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::alnum, c); } + +template +inline bool isgraph (_CharT c, const locale& loc) +{ return (use_facet >(loc)).is(ctype_base::graph, c); } + +template +inline _CharT toupper(_CharT c, const locale& loc) +{ return (use_facet >(loc)).toupper(c); } + +template +inline _CharT tolower(_CharT c, const locale& loc) +{ return (use_facet >(loc)).tolower(c); } + +_STLP_END_NAMESPACE + +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1041) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(locale) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1041) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_LOCALE */ + + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/map b/sdk/include/c++/stlport/map index ea305bf7efe..f30c400c55c 100644 --- a/sdk/include/c++/stlport/map +++ b/sdk/include/c++/stlport/map @@ -1,57 +1,57 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_MAP - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x43 -# include -# define _STLP_MAP -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x43) -# ifndef _STLP_INTERNAL_MAP_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x43) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(map) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x43) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_MAP */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_MAP + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x43 +# include +# define _STLP_MAP +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x43) +# ifndef _STLP_INTERNAL_MAP_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x43) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(map) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x43) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_MAP */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/memory b/sdk/include/c++/stlport/memory index 1f77009cbca..3c0ceb38bc5 100644 --- a/sdk/include/c++/stlport/memory +++ b/sdk/include/c++/stlport/memory @@ -1,130 +1,130 @@ -/* - * Copyright (c) 1997-1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_MEMORY - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x46 -# include -# define _STLP_MEMORY -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x46) -# ifndef _STLP_INTERNAL_ALLOC_H -# include -# endif - -# ifndef _STLP_INTERNAL_TEMPBUF_H -# include -# endif - -# ifndef _STLP_INTERNAL_RAW_STORAGE_ITER_H -# include -# endif - -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x46) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (__MSL__) -# include _STLP_NATIVE_HEADER(limits) -# endif - -# if !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) -# define BOOST_TR1_MEMORY_INCLUDED -# define BOOST_TR1_FULL_MEMORY_INCLUDED -# endif - -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(memory) -# endif - -# if defined (__MSL__) && (__MSL__ >= 0x2405 && __MSL__ < 0x5201) -/* 980401 vss MSL 2.4 Pro 3 Release */ -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x46) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#if !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) - -namespace boost { - -class bad_weak_ptr; -template class shared_ptr; -template class weak_ptr; -template class enable_shared_from_this; -template D * get_deleter(shared_ptr const & p); -template shared_ptr static_pointer_cast(shared_ptr const & r); -template shared_ptr const_pointer_cast(shared_ptr const & r); -template shared_ptr dynamic_pointer_cast(shared_ptr const & r); -template void swap(weak_ptr & a, weak_ptr & b); -template void swap(shared_ptr & a, shared_ptr & b); - -namespace detail{ -class shared_count; -class weak_count; -} - -} // namespace boost - -# ifndef BOOST_SHARED_PTR_HPP_INCLUDED -# include -# endif -# ifndef BOOST_WEAK_PTR_HPP_INCLUDED -# include -# endif -# ifndef BOOST_ENABLE_SHARED_FROM_THIS_HPP_INCLUDED -# include -# endif - -_STLP_BEGIN_NAMESPACE - -namespace tr1 { - -using ::boost::bad_weak_ptr; -using ::boost::shared_ptr; -using ::boost::swap; -using ::boost::static_pointer_cast; -using ::boost::dynamic_pointer_cast; -using ::boost::const_pointer_cast; -using ::boost::get_deleter; -using ::boost::weak_ptr; -using ::boost::enable_shared_from_this; - -// shared_ptr IO -// weak_ptr IO - -} // namespace tr1 - -_STLP_END_NAMESPACE - -#endif /* !_STLP_NO_EXTENSIONS && _STLP_USE_BOOST_SUPPORT */ - -#endif /* _STLP_MEMORY */ - -// Local Variables: -// mode:C++ -// End: - +/* + * Copyright (c) 1997-1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_MEMORY + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x46 +# include +# define _STLP_MEMORY +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x46) +# ifndef _STLP_INTERNAL_ALLOC_H +# include +# endif + +# ifndef _STLP_INTERNAL_TEMPBUF_H +# include +# endif + +# ifndef _STLP_INTERNAL_RAW_STORAGE_ITER_H +# include +# endif + +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x46) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (__MSL__) +# include _STLP_NATIVE_HEADER(limits) +# endif + +# if !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) +# define BOOST_TR1_MEMORY_INCLUDED +# define BOOST_TR1_FULL_MEMORY_INCLUDED +# endif + +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(memory) +# endif + +# if defined (__MSL__) && (__MSL__ >= 0x2405 && __MSL__ < 0x5201) +/* 980401 vss MSL 2.4 Pro 3 Release */ +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x46) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#if !defined(_STLP_NO_EXTENSIONS) && defined(_STLP_USE_BOOST_SUPPORT) + +namespace boost { + +class bad_weak_ptr; +template class shared_ptr; +template class weak_ptr; +template class enable_shared_from_this; +template D * get_deleter(shared_ptr const & p); +template shared_ptr static_pointer_cast(shared_ptr const & r); +template shared_ptr const_pointer_cast(shared_ptr const & r); +template shared_ptr dynamic_pointer_cast(shared_ptr const & r); +template void swap(weak_ptr & a, weak_ptr & b); +template void swap(shared_ptr & a, shared_ptr & b); + +namespace detail{ +class shared_count; +class weak_count; +} + +} // namespace boost + +# ifndef BOOST_SHARED_PTR_HPP_INCLUDED +# include +# endif +# ifndef BOOST_WEAK_PTR_HPP_INCLUDED +# include +# endif +# ifndef BOOST_ENABLE_SHARED_FROM_THIS_HPP_INCLUDED +# include +# endif + +_STLP_BEGIN_NAMESPACE + +namespace tr1 { + +using ::boost::bad_weak_ptr; +using ::boost::shared_ptr; +using ::boost::swap; +using ::boost::static_pointer_cast; +using ::boost::dynamic_pointer_cast; +using ::boost::const_pointer_cast; +using ::boost::get_deleter; +using ::boost::weak_ptr; +using ::boost::enable_shared_from_this; + +// shared_ptr IO +// weak_ptr IO + +} // namespace tr1 + +_STLP_END_NAMESPACE + +#endif /* !_STLP_NO_EXTENSIONS && _STLP_USE_BOOST_SUPPORT */ + +#endif /* _STLP_MEMORY */ + +// Local Variables: +// mode:C++ +// End: + diff --git a/sdk/include/c++/stlport/new b/sdk/include/c++/stlport/new index b8d867548a9..974ca4480f5 100644 --- a/sdk/include/c++/stlport/new +++ b/sdk/include/c++/stlport/new @@ -1,47 +1,47 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_NEW_HEADER - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x447 -# define _STLP_NEW_HEADER -# include -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x447) -# ifndef _STLP_NEW_H_HEADER -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x447) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_RUNTIME_HEADER(new) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x447) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_NEW */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_NEW_HEADER + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x447 +# define _STLP_NEW_HEADER +# include +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x447) +# ifndef _STLP_NEW_H_HEADER +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x447) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_RUNTIME_HEADER(new) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x447) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_NEW */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/numeric b/sdk/include/c++/stlport/numeric index cea92c5e225..79e46471bdb 100644 --- a/sdk/include/c++/stlport/numeric +++ b/sdk/include/c++/stlport/numeric @@ -1,54 +1,54 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_NUMERIC - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x49 -# include -# define _STLP_NUMERIC -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x49) -# ifndef _STLP_INTERNAL_NUMERIC_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x49) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(numeric) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x49) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_NUMERIC */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_NUMERIC + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x49 +# include +# define _STLP_NUMERIC +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x49) +# ifndef _STLP_INTERNAL_NUMERIC_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x49) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(numeric) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x49) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_NUMERIC */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/ostream b/sdk/include/c++/stlport/ostream index 492f9299fd0..5134d9c9e9a 100644 --- a/sdk/include/c++/stlport/ostream +++ b/sdk/include/c++/stlport/ostream @@ -1,52 +1,52 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ -#ifndef _STLP_OSTREAM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1050 -# include -# define _STLP_OSTREAM -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1050) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_OSTREAM -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1050) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(ostream) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1050) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_OSTREAM */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ +#ifndef _STLP_OSTREAM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1050 +# include +# define _STLP_OSTREAM +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1050) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_OSTREAM +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1050) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(ostream) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1050) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_OSTREAM */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/pthread_alloc b/sdk/include/c++/stlport/pthread_alloc index d941d1e1f13..c5ccbcb9a31 100644 --- a/sdk/include/c++/stlport/pthread_alloc +++ b/sdk/include/c++/stlport/pthread_alloc @@ -1,49 +1,49 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_PTHREAD_ALLOC -#define _STLP_PTHREAD_ALLOC - -# ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x52 -# include -# endif - -# ifdef _STLP_PRAGMA_ONCE -# pragma once -# endif - -# include - -# if (_STLP_OUTERMOST_HEADER_ID == 0x52) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# endif - -#endif /* _STLP_PTHREAD_ALLOC */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_PTHREAD_ALLOC +#define _STLP_PTHREAD_ALLOC + +# ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x52 +# include +# endif + +# ifdef _STLP_PRAGMA_ONCE +# pragma once +# endif + +# include + +# if (_STLP_OUTERMOST_HEADER_ID == 0x52) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# endif + +#endif /* _STLP_PTHREAD_ALLOC */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/queue b/sdk/include/c++/stlport/queue index 35fdce4ed2a..6acd63fdd04 100644 --- a/sdk/include/c++/stlport/queue +++ b/sdk/include/c++/stlport/queue @@ -1,57 +1,57 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_QUEUE - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x53 -# include -# define _STLP_QUEUE -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x53) -# ifndef _STLP_INTERNAL_QUEUE_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x53) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(queue) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x53) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_QUEUE */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_QUEUE + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x53 +# include +# define _STLP_QUEUE +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x53) +# ifndef _STLP_INTERNAL_QUEUE_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x53) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(queue) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x53) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_QUEUE */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/rope b/sdk/include/c++/stlport/rope index 7804abc0d63..4faa36b654e 100644 --- a/sdk/include/c++/stlport/rope +++ b/sdk/include/c++/stlport/rope @@ -1,44 +1,44 @@ -/* - * Copyright (c) 1997 - * Silicon Graphics Computer Systems, Inc. - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. Silicon Graphics makes no - * representations about the suitability of this software for any - * purpose. It is provided "as is" without express or implied warranty. - */ - -#ifndef _STLP_ROPE -#define _STLP_ROPE - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x54 -# include -#endif - -#ifdef _STLP_PRAGMA_ONCE -# pragma once -#endif - -#if defined (_STLP_NO_EXTENSIONS) -/* Comment following if you want to use rope class even if you ask for - * no extension. - */ -# error The rope class is a STLport extension. -#endif - -#include - -#if (_STLP_OUTERMOST_HEADER_ID == 0x54) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_ROPE */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1997 + * Silicon Graphics Computer Systems, Inc. + * + * Permission to use, copy, modify, distribute and sell this software + * and its documentation for any purpose is hereby granted without fee, + * provided that the above copyright notice appear in all copies and + * that both that copyright notice and this permission notice appear + * in supporting documentation. Silicon Graphics makes no + * representations about the suitability of this software for any + * purpose. It is provided "as is" without express or implied warranty. + */ + +#ifndef _STLP_ROPE +#define _STLP_ROPE + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x54 +# include +#endif + +#ifdef _STLP_PRAGMA_ONCE +# pragma once +#endif + +#if defined (_STLP_NO_EXTENSIONS) +/* Comment following if you want to use rope class even if you ask for + * no extension. + */ +# error The rope class is a STLport extension. +#endif + +#include + +#if (_STLP_OUTERMOST_HEADER_ID == 0x54) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_ROPE */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/set b/sdk/include/c++/stlport/set index 68513df0f87..ed79d89fb1e 100644 --- a/sdk/include/c++/stlport/set +++ b/sdk/include/c++/stlport/set @@ -1,57 +1,57 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_SET - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x55 -# include -# define _STLP_SET -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x55) -# ifndef _STLP_INTERNAL_SET_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x55) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(set) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x55) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_SET */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_SET + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x55 +# include +# define _STLP_SET +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x55) +# ifndef _STLP_INTERNAL_SET_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x55) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(set) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x55) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_SET */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/slist b/sdk/include/c++/stlport/slist index 01307a7bbe0..c1930e4f713 100644 --- a/sdk/include/c++/stlport/slist +++ b/sdk/include/c++/stlport/slist @@ -1,54 +1,54 @@ -/* - * Copyright (c) 1997 - * Silicon Graphics Computer Systems, Inc. - * - * Permission to use, copy, modify, distribute and sell this software - * and its documentation for any purpose is hereby granted without fee, - * provided that the above copyright notice appear in all copies and - * that both that copyright notice and this permission notice appear - * in supporting documentation. Silicon Graphics makes no - * representations about the suitability of this software for any - * purpose. It is provided "as is" without express or implied warranty. - * - */ - -#ifndef _STLP_SLIST -#define _STLP_SLIST - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x58 -# include -#endif - -#ifdef _STLP_PRAGMA_ONCE -# pragma once -#endif - -#if defined (_STLP_NO_EXTENSIONS) -/* Comment following if you want to use the slist constainer even if you ask for - * no extension. - */ -# error The slist class is an STLport extension. -#endif - -#ifndef _STLP_INTERNAL_SLIST_H -# include -#endif - -#if defined (_STLP_IMPORT_VENDOR_STD) -//This is not a Standard header, it might failed for most of -//the compilers so we comment it for the moment. Should be uncommented -//on a compiler basis. -//# include _STLP_NATIVE_HEADER(slist) -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x58) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_SLIST */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1997 + * Silicon Graphics Computer Systems, Inc. + * + * Permission to use, copy, modify, distribute and sell this software + * and its documentation for any purpose is hereby granted without fee, + * provided that the above copyright notice appear in all copies and + * that both that copyright notice and this permission notice appear + * in supporting documentation. Silicon Graphics makes no + * representations about the suitability of this software for any + * purpose. It is provided "as is" without express or implied warranty. + * + */ + +#ifndef _STLP_SLIST +#define _STLP_SLIST + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x58 +# include +#endif + +#ifdef _STLP_PRAGMA_ONCE +# pragma once +#endif + +#if defined (_STLP_NO_EXTENSIONS) +/* Comment following if you want to use the slist constainer even if you ask for + * no extension. + */ +# error The slist class is an STLport extension. +#endif + +#ifndef _STLP_INTERNAL_SLIST_H +# include +#endif + +#if defined (_STLP_IMPORT_VENDOR_STD) +//This is not a Standard header, it might failed for most of +//the compilers so we comment it for the moment. Should be uncommented +//on a compiler basis. +//# include _STLP_NATIVE_HEADER(slist) +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x58) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_SLIST */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/sstream b/sdk/include/c++/stlport/sstream index a4b452eaba4..336bdde195e 100644 --- a/sdk/include/c++/stlport/sstream +++ b/sdk/include/c++/stlport/sstream @@ -1,57 +1,57 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ -// This header defines classes basic_stringbuf, basic_istringstream, -// basic_ostringstream, and basic_stringstream. These classes -// represent streamsbufs and streams whose sources or destinations are -// C++ strings. - -#ifndef _STLP_SSTREAM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1059 -# include -# define _STLP_SSTREAM -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1059) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_SSTREAM -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1059) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(sstream) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1059) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_SSTREAM */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ +// This header defines classes basic_stringbuf, basic_istringstream, +// basic_ostringstream, and basic_stringstream. These classes +// represent streamsbufs and streams whose sources or destinations are +// C++ strings. + +#ifndef _STLP_SSTREAM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1059 +# include +# define _STLP_SSTREAM +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1059) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_SSTREAM +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1059) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(sstream) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1059) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_SSTREAM */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/stack b/sdk/include/c++/stlport/stack index 97c77653125..253b31d2f7d 100644 --- a/sdk/include/c++/stlport/stack +++ b/sdk/include/c++/stlport/stack @@ -1,57 +1,57 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1997 - * Moscow Center for SPARC Technology - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_STACK - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x60 -# include -# define _STLP_STACK -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x60) -# ifndef _STLP_INTERNAL_STACK_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x60) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(stack) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x60) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_STACK */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1997 + * Moscow Center for SPARC Technology + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_STACK + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x60 +# include +# define _STLP_STACK +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x60) +# ifndef _STLP_INTERNAL_STACK_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x60) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(stack) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x60) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_STACK */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/stdexcept b/sdk/include/c++/stlport/stdexcept index 8521feaa889..dbb96b9a917 100644 --- a/sdk/include/c++/stlport/stdexcept +++ b/sdk/include/c++/stlport/stdexcept @@ -1,56 +1,56 @@ -/* - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_STDEXCEPT - -#if !defined (_STLP_OUTERMOST_HEADER_ID) -# define _STLP_OUTERMOST_HEADER_ID 0x63 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x63) && !defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_STDEXCEPT -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x63) -# ifndef _STLP_INTERNAL_STDEXCEPT -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x63) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(stdexcept) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x63) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif /* _STLP_STDEXCEPT */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_STDEXCEPT + +#if !defined (_STLP_OUTERMOST_HEADER_ID) +# define _STLP_OUTERMOST_HEADER_ID 0x63 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x63) && !defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_STDEXCEPT +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x63) +# ifndef _STLP_INTERNAL_STDEXCEPT +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x63) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(stdexcept) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x63) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif /* _STLP_STDEXCEPT */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/streambuf b/sdk/include/c++/stlport/streambuf index 77885562d33..f4dc2533dab 100644 --- a/sdk/include/c++/stlport/streambuf +++ b/sdk/include/c++/stlport/streambuf @@ -1,52 +1,52 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ -#ifndef _STLP_STREAMBUF - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1066 -# include -# define _STLP_STREAMBUF -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1066) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_STREAMBUF -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1066) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(streambuf) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1066) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_STREAMBUF */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ +#ifndef _STLP_STREAMBUF + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1066 +# include +# define _STLP_STREAMBUF +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1066) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_STREAMBUF +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1066) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(streambuf) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1066) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_STREAMBUF */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/string b/sdk/include/c++/stlport/string index 7edb4a71334..74d458951e6 100644 --- a/sdk/include/c++/stlport/string +++ b/sdk/include/c++/stlport/string @@ -1,59 +1,59 @@ -/* - * Copyright (c) 1997-1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_STRING - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x68 -# include -# define _STLP_STRING -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x68) -# ifndef _STLP_INTERNAL_STRING_H -# include -# endif - -# ifndef _STLP_STRING_HASH_H -# include -# endif - -# if !defined (_STLP_USE_NO_IOSTREAMS) && !defined (_STLP_STRING_IO_H) -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x68) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(string) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x68) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_STRING */ - -// Local Variables: -// mode:C++ -// End: - +/* + * Copyright (c) 1997-1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_STRING + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x68 +# include +# define _STLP_STRING +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x68) +# ifndef _STLP_INTERNAL_STRING_H +# include +# endif + +# ifndef _STLP_STRING_HASH_H +# include +# endif + +# if !defined (_STLP_USE_NO_IOSTREAMS) && !defined (_STLP_STRING_IO_H) +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x68) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(string) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x68) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_STRING */ + +// Local Variables: +// mode:C++ +// End: + diff --git a/sdk/include/c++/stlport/strstream b/sdk/include/c++/stlport/strstream index 7510b8606f0..247574f4cf5 100644 --- a/sdk/include/c++/stlport/strstream +++ b/sdk/include/c++/stlport/strstream @@ -1,61 +1,61 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ -// WARNING: The classes defined in this header are DEPRECATED. This -// header is defined in section D.7.1 of the C++ standard, and it -// MAY BE REMOVED in a future standard revision. You should use the -// header instead. - - -#ifndef _STLP_STRSTREAM - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x1070 -# include -# define _STLP_STRSTREAM -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1070) && \ - !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) -# include - -# ifndef _STLP_INTERNAL_STRSTREAM -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x1070) || defined (_STLP_IMPORT_VENDOR_STD) -/* Even if deprecated strstream header is still part of the Standard. Remove - * _STLP_IMPORT_VENDOR_STD check if the native compiler library do not grant - * it anymore. */ -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(strstream) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x1070) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_STRSTREAM */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ +// WARNING: The classes defined in this header are DEPRECATED. This +// header is defined in section D.7.1 of the C++ standard, and it +// MAY BE REMOVED in a future standard revision. You should use the +// header instead. + + +#ifndef _STLP_STRSTREAM + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x1070 +# include +# define _STLP_STRSTREAM +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1070) && \ + !(defined (_STLP_NO_IOSTREAMS) && defined (_STLP_IMPORT_VENDOR_STD)) +# include + +# ifndef _STLP_INTERNAL_STRSTREAM +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x1070) || defined (_STLP_IMPORT_VENDOR_STD) +/* Even if deprecated strstream header is still part of the Standard. Remove + * _STLP_IMPORT_VENDOR_STD check if the native compiler library do not grant + * it anymore. */ +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(strstream) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x1070) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_STRSTREAM */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/type_traits b/sdk/include/c++/stlport/type_traits index 27b61ab38ef..e6fe23429fa 100644 --- a/sdk/include/c++/stlport/type_traits +++ b/sdk/include/c++/stlport/type_traits @@ -1,798 +1,798 @@ -// -*- C++ -*- Time-stamp: <08/07/20 19:10:15 ptr> - -/* - * Copyright (c) 2007, 2008 - * Petr Ovtchenkov - * - * Licensed under the Academic Free License version 3.0 - * - * Derived from original of 'complement' project - * [http://complement.sourceforge.net] - * to make it close to JTC1/SC22/WG21 C++ 0x working draft - * [http://www.open-std.org/Jtc1/sc22/wg21/docs/papers/2008/n2521.pdf] - */ - -#ifndef __STLP_TYPE_TRAITS -#define __STLP_TYPE_TRAITS - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x3 -# include -#endif - -// libstdc++ v3, timestamp 20050519 (3.4.4) has __type_traits, -// libstdc++ v3, timestamp 20060306 (3.4.6) has __type_traits, -// while libstdc++ v3, 20050921 (4.0.2) not; use libstdc++ instead -// # if defined(STLPORT) || (defined(__GNUC__) && (__GNUC__ < 4)) /* !defined(__GLIBCXX__) || (defined(__GNUC__) && (__GNUC__ < 4)) */ - -_STLP_BEGIN_NAMESPACE - -_STLP_BEGIN_TR1_NAMESPACE - -namespace detail { - -struct __select_types -{ - typedef char __t1; - struct __t2 - { - char __two[2]; - }; -}; - -template -struct __instance : - public __select_types -{ - private: - template - static __t1 __test(_Up(*)[1]); - - template - static __t2 __test(...); - - public: -#ifdef _STLP_STATIC_CONST_INIT_BUG - static const bool __value; -#else - static const bool __value = sizeof(__test<_Tp>(0)) == sizeof(__select_types::__t1); -#endif - -}; - -#ifdef _STLP_STATIC_CONST_INIT_BUG -template -const bool __instance<_Tp>::__value = sizeof(__instance<_Tp>::__test<_Tp>(0)) == sizeof(__select_types::__t1); -#endif - -template -struct __uoc_aux : // union or class - public __select_types -{ - private: - template - static __t1 __test( int _Up::* ); - - template - static __t2 __test(...); - - public: -#ifdef __FIT_NO_INLINE_TEMPLATE_STATIC_INITIALISATION - static const bool __value; -#else - static const bool __value = sizeof(__test(0)) == sizeof(__select_types::__t1); -#endif -}; - -#ifdef __FIT_NO_INLINE_TEMPLATE_STATIC_INITIALISATION -template -const bool __uoc_aux::__value = sizeof(__uoc_aux::__test(0)) == sizeof(__select_types::__t1); -#endif - -template -class __empty -{ }; - -template -class __inheritance_aux -{}; - -template -class __inheritance_aux : - public T -{ - public: - virtual ~__inheritance_aux() - { } -}; - -#if 0 -template -struct __virtual_aux -{ - public: -#ifdef _STLP_STATIC_CONST_INIT_BUG - static const bool __value; -#else - static const bool __value = B ? (sizeof(__inheritance_aux) == sizeof(T)) : false; -#endif -}; - -#ifdef _STLP_STATIC_CONST_INIT_BUG -template -const bool __virtual_aux::__value = B ? (sizeof(__inheritance_aux) == sizeof(T)) : false; -#endif -#endif - -} // namespace detail - -template -struct integral_constant -{ - static const _Tp value = __v; - // enum { value = __v }; ? - - typedef _Tp value_type; - typedef integral_constant<_Tp, __v> type; -}; - -typedef integral_constant true_type; -typedef integral_constant false_type; - -namespace detail { - -template -struct __is_union_or_class : - public integral_constant::__value> -{ }; - -#if 0 -template -struct __is_vtbl : // has virtual table? - public integral_constant::value >::__value> -{ }; -#endif - -template -struct __is_vtbl : // has virtual table? - public integral_constant::value ? (sizeof(__inheritance_aux<_Tp,__is_union_or_class<_Tp>::value>) == sizeof(_Tp)) : false > -{ }; - -} // namespace detail - -#define __SPEC_(C,T,B) \ -template <> \ -struct C : \ - public integral_constant \ -{ } - -#define __CV_SPEC(C,T,B) \ -__SPEC_(C,T,B); \ -__SPEC_(C,const T,B); \ -__SPEC_(C,volatile T,B); \ -__SPEC_(C,const volatile T,B) - -#define __SPEC_1(C,T,B) \ -template \ -struct C : \ - public integral_constant \ -{ } - -#define __CV_SPEC_1(C,T,B) \ -__SPEC_1(C,T,B); \ -__SPEC_1(C,T const,B); \ -__SPEC_1(C,T volatile,B); \ -__SPEC_1(C,T const volatile,B) - -#define __SPEC_2(C,T,B) \ -template \ -struct C : \ - public integral_constant \ -{ } - -#define __CV_SPEC_2(C,T,B) \ -__SPEC_2(C,T,B); \ -__SPEC_2(C,T const,B); \ -__SPEC_2(C,T volatile,B); \ -__SPEC_2(C,T const volatile,B) - -// [4.5.1] primary type categories: - -template -struct is_void : - public false_type -{ }; - -template <> -struct is_void : - public true_type -{ }; - -template -struct is_integral : - public false_type -{ }; - -__CV_SPEC(is_integral,bool,true); -__CV_SPEC(is_integral,char,true); -__CV_SPEC(is_integral,signed char,true); -__CV_SPEC(is_integral,unsigned char,true); -__CV_SPEC(is_integral,wchar_t,true); -__CV_SPEC(is_integral,short,true); -__CV_SPEC(is_integral,unsigned short,true); -__CV_SPEC(is_integral,int,true); -__CV_SPEC(is_integral,unsigned int,true); -__CV_SPEC(is_integral,long,true); -__CV_SPEC(is_integral,unsigned long,true); -__CV_SPEC(is_integral,long long,true); -__CV_SPEC(is_integral,unsigned long long,true); - -template -struct is_floating_point : - public false_type -{ }; - -__CV_SPEC(is_floating_point,float,true); -__CV_SPEC(is_floating_point,double,true); -__CV_SPEC(is_floating_point,long double,true); - -template -struct is_array : - public false_type -{ }; - -template -struct is_array<_Tp[_Sz]> : - public true_type -{ }; - -template -struct is_array<_Tp[]> : - public true_type -{ }; - -template -struct is_pointer : - public false_type -{ }; - -__CV_SPEC_1(is_pointer,_Tp *,true); - -template -struct is_lvalue_reference : - public false_type -{ }; - -template -struct is_lvalue_reference<_Tp&> : - public true_type -{ }; - -template -struct is_rvalue_reference : - public false_type -{ }; - -// template -// struct is_rvalue_reference<_Tp&&> : -// public true_type -// { }; - -template -struct is_reference : - public false_type -{ }; - -template -struct is_reference<_Tp&> : - public true_type -{ }; - -template -struct is_function : - public integral_constant::__value - || detail::__is_union_or_class<_Tp>::value - || is_reference<_Tp>::value - || is_void<_Tp>::value)> -{ }; - -template -struct is_member_object_pointer : - public false_type -{ }; - -// _SPEC_FULL2(is_member_object_pointer, _Tp1 _Tp2::*,!is_function<_Tp1>::value); - -template -struct is_member_object_pointer<_Tp1 _Tp2::*> : - public integral_constant::value> -{ }; - -template -struct is_member_object_pointer<_Tp1 _Tp2::* const> : - public integral_constant::value> -{ }; - -template -struct is_member_object_pointer<_Tp1 _Tp2::* volatile> : - public integral_constant::value> -{ }; - -template -struct is_member_object_pointer<_Tp1 _Tp2::* const volatile> : - public integral_constant::value> -{ }; - -template -struct is_member_function_pointer : - public false_type -{ }; - -// _SPEC_FULL2(is_member_function_pointer,_Tp1 _Tp2::*,is_function<_Tp1>::value); - -template -struct is_member_function_pointer<_Tp1 _Tp2::*> : - public integral_constant::value> -{ }; - -template -struct is_member_function_pointer<_Tp1 _Tp2::* const> : - public integral_constant::value> -{ }; - -template -struct is_member_function_pointer<_Tp1 _Tp2::* volatile> : - public integral_constant::value> -{ }; - -template -struct is_member_function_pointer<_Tp1 _Tp2::* const volatile> : - public integral_constant::value> -{ }; - -template -struct is_member_pointer : - public integral_constant::value || is_member_function_pointer<_Tp>::value)> -{ }; - -// 4.5.2 composite type categories - -template -struct is_arithmetic : - public integral_constant::value || is_floating_point<_Tp>::value)> -{ }; - -template -struct is_fundamental : - public integral_constant::value || is_void<_Tp>::value)> -{ }; - -// [4.5.1] primary type categories (continued): - -template -struct is_enum : - public integral_constant::value - || is_array<_Tp>::value - || is_pointer<_Tp>::value - || is_reference<_Tp>::value - || is_member_pointer<_Tp>::value - || is_function<_Tp>::value - || detail::__is_union_or_class<_Tp>::value) > -{ }; - -template -struct is_union -{ }; - -template -struct is_class -{ }; - -// is_function (above) - -// 4.5.2 composite type categories (continued) - -// is_arithmetic (above) -// is_fundamental (above) - -template -struct is_object : - public integral_constant::value || - is_array<_Tp>::value || - is_pointer<_Tp>::value || - is_member_pointer<_Tp>::value || - detail::__is_union_or_class<_Tp>::value)> -{ }; - -template -struct is_scalar : - public integral_constant::value - || is_enum<_Tp>::value - || is_pointer<_Tp>::value - || is_member_pointer<_Tp>::value)> -{ }; - -template -struct is_compound : - public integral_constant::value> -{ }; - -// is_member_pointer - -// 4.5.3 type properties: - -template -struct is_const : - public false_type -{ }; - -template -struct is_const<_Tp const> : - public true_type -{ }; - -template -struct is_volatile : - public false_type -{ }; - -template -struct is_volatile<_Tp volatile> : - public true_type -{ }; - - -// 4.7.3 array modifications: - -template -struct remove_extent -{ - typedef _Tp type; -}; - -template -struct remove_extent<_Tp[_Sz]> -{ - typedef _Tp type; -}; - -template -struct remove_extent<_Tp[]> -{ - typedef _Tp type; -}; - -template -struct remove_all_extents -{ - typedef _Tp type; -}; - -template -struct remove_all_extents<_Tp[_Size]> -{ - typedef typename remove_all_extents<_Tp>::type type; -}; - -template -struct remove_all_extents<_Tp[]> -{ - typedef typename remove_all_extents<_Tp>::type type; -}; - -// 4.5.3 type properties (continued): - -template -struct is_trivial : - public integral_constant::value - || is_scalar::type>::value)> -{ }; - -template -struct is_standard_layout : - public integral_constant::value - || is_scalar::type>::value)> -{ }; - -template -struct is_pod : - public integral_constant::value - || is_scalar::type>::value)> -{ }; - -template -struct is_empty - : public integral_constant::value - && (sizeof(detail::__empty<_Tp>) == sizeof(_Tp)))> -{ }; - -// is_polimorphic -// is_abstract - -template -struct has_trivial_constructor : - public integral_constant::value> -{ }; - -template -struct has_trivial_copy : - public integral_constant::value> -{ }; - -template -struct has_trivial_assign : - public integral_constant::value> -{ }; - -template -struct has_trivial_destructor : - public integral_constant::value> -{ }; - -template -struct has_nothrow_constructor : - public integral_constant::value> -{ }; - -template -struct has_nothrow_copy : - public integral_constant::value> -{ }; - -template -struct has_nothrow_assign : - public integral_constant::value> -{ }; - -template -struct has_virtual_destructor : - public false_type -{ }; - -template -struct is_signed : - public false_type -{ }; - -__CV_SPEC(is_signed,signed char,true); -__CV_SPEC(is_signed,short,true); -__CV_SPEC(is_signed,int,true); -__CV_SPEC(is_signed,long,true); -__CV_SPEC(is_signed,long long,true); - -template -struct is_unsigned : - public false_type -{ }; - -__CV_SPEC(is_unsigned,unsigned char,true); -__CV_SPEC(is_unsigned,unsigned short,true); -__CV_SPEC(is_unsigned,unsigned int,true); -__CV_SPEC(is_unsigned,unsigned long,true); -__CV_SPEC(is_unsigned,unsigned long long,true); - -// alignment_of -// rank -// extent - -// 4.6 type relations: - -template -struct is_same : - public false_type -{ }; - -template -struct is_same<_Tp, _Tp> : - public true_type -{ }; - -// is_base_of -// is_convertible - -// 4.7.1 const-volatile modifications - -template -struct remove_const -{ - typedef _Tp type; -}; - -template -struct remove_const<_Tp const> -{ - typedef _Tp type; -}; - -template -struct remove_volatile -{ - typedef _Tp type; -}; - -template -struct remove_volatile<_Tp volatile> -{ - typedef _Tp type; -}; - -template -struct remove_cv -{ - typedef typename remove_const::type>::type type; -}; - -template -struct add_const -{ - typedef _Tp const type; -}; - -template -struct add_volatile -{ - typedef _Tp volatile type; -}; - -template -struct add_cv -{ - typedef typename add_const::type>::type type; -}; - -// 4.7.2 reference modifications: - -template -struct remove_reference -{ - typedef _Tp type; -}; - -template -struct remove_reference<_Tp&> -{ - typedef _Tp type; -}; - -template -struct add_reference -{ - typedef _Tp& type; -}; - -template -struct add_reference<_Tp&> -{ - typedef _Tp& type; -}; - -// 4.7.3 array modifications (see above) - -// 4.7.4 pointer modifications: - -template -struct remove_pointer -{ - typedef _Tp type; -}; - -template -struct remove_pointer<_Tp *> -{ - typedef _Tp type; -}; - -template -struct remove_pointer<_Tp * const> -{ - typedef _Tp type; -}; - -template -struct remove_pointer<_Tp * volatile> -{ - typedef _Tp type; -}; - -template -struct remove_pointer<_Tp * const volatile> -{ - typedef _Tp type; -}; - -template -struct add_pointer -{ - typedef typename remove_reference<_Tp>::type * type; -}; - -// 20.5.7 other transformations: - -// template struct aligned_storage; -// template struct aligned_union; - -namespace detail { - -template -struct _decay_aux2 -{ - typedef typename remove_cv<_U>::type type; -}; - -template -struct _decay_aux2 -{ - typedef typename add_pointer<_U>::type type; -}; - -template -struct _decay_aux1 -{ - typedef typename _decay_aux2::value,_U>::type type; -}; - -template -struct _decay_aux1 -{ - typedef typename remove_extent<_U>::type* type; -}; - -} // namespace detail - -template -class decay -{ - private: - typedef typename remove_reference<_Tp>::type _U; - - public: - typedef typename detail::_decay_aux1::value,_U>::type type; -}; - -template -struct enable_if -{ -}; - -template -struct enable_if -{ - typedef _Tp type; -}; - -template -struct conditional -{ - typedef _Tp2 type; -}; - -template -struct conditional -{ - typedef _Tp1 type; -}; - -// template struct common_type; - -#undef __CV_SPEC -#undef __SPEC_ -#undef __CV_SPEC_1 -#undef __SPEC_1 -#undef __CV_SPEC_2 -#undef __SPEC_2 - -_STLP_END_NAMESPACE // tr1 - -_STLP_END_NAMESPACE - -// # else // __GLIBCXX__ && (__GNUC__ >= 4) && !STLPORT -// # include -// # endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x3) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif // __STLP_TYPE_TRAITS - +// -*- C++ -*- Time-stamp: <08/07/20 19:10:15 ptr> + +/* + * Copyright (c) 2007, 2008 + * Petr Ovtchenkov + * + * Licensed under the Academic Free License version 3.0 + * + * Derived from original of 'complement' project + * [http://complement.sourceforge.net] + * to make it close to JTC1/SC22/WG21 C++ 0x working draft + * [http://www.open-std.org/Jtc1/sc22/wg21/docs/papers/2008/n2521.pdf] + */ + +#ifndef __STLP_TYPE_TRAITS +#define __STLP_TYPE_TRAITS + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x3 +# include +#endif + +// libstdc++ v3, timestamp 20050519 (3.4.4) has __type_traits, +// libstdc++ v3, timestamp 20060306 (3.4.6) has __type_traits, +// while libstdc++ v3, 20050921 (4.0.2) not; use libstdc++ instead +// # if defined(STLPORT) || (defined(__GNUC__) && (__GNUC__ < 4)) /* !defined(__GLIBCXX__) || (defined(__GNUC__) && (__GNUC__ < 4)) */ + +_STLP_BEGIN_NAMESPACE + +_STLP_BEGIN_TR1_NAMESPACE + +namespace detail { + +struct __select_types +{ + typedef char __t1; + struct __t2 + { + char __two[2]; + }; +}; + +template +struct __instance : + public __select_types +{ + private: + template + static __t1 __test(_Up(*)[1]); + + template + static __t2 __test(...); + + public: +#ifdef _STLP_STATIC_CONST_INIT_BUG + static const bool __value; +#else + static const bool __value = sizeof(__test<_Tp>(0)) == sizeof(__select_types::__t1); +#endif + +}; + +#ifdef _STLP_STATIC_CONST_INIT_BUG +template +const bool __instance<_Tp>::__value = sizeof(__instance<_Tp>::__test<_Tp>(0)) == sizeof(__select_types::__t1); +#endif + +template +struct __uoc_aux : // union or class + public __select_types +{ + private: + template + static __t1 __test( int _Up::* ); + + template + static __t2 __test(...); + + public: +#ifdef __FIT_NO_INLINE_TEMPLATE_STATIC_INITIALISATION + static const bool __value; +#else + static const bool __value = sizeof(__test(0)) == sizeof(__select_types::__t1); +#endif +}; + +#ifdef __FIT_NO_INLINE_TEMPLATE_STATIC_INITIALISATION +template +const bool __uoc_aux::__value = sizeof(__uoc_aux::__test(0)) == sizeof(__select_types::__t1); +#endif + +template +class __empty +{ }; + +template +class __inheritance_aux +{}; + +template +class __inheritance_aux : + public T +{ + public: + virtual ~__inheritance_aux() + { } +}; + +#if 0 +template +struct __virtual_aux +{ + public: +#ifdef _STLP_STATIC_CONST_INIT_BUG + static const bool __value; +#else + static const bool __value = B ? (sizeof(__inheritance_aux) == sizeof(T)) : false; +#endif +}; + +#ifdef _STLP_STATIC_CONST_INIT_BUG +template +const bool __virtual_aux::__value = B ? (sizeof(__inheritance_aux) == sizeof(T)) : false; +#endif +#endif + +} // namespace detail + +template +struct integral_constant +{ + static const _Tp value = __v; + // enum { value = __v }; ? + + typedef _Tp value_type; + typedef integral_constant<_Tp, __v> type; +}; + +typedef integral_constant true_type; +typedef integral_constant false_type; + +namespace detail { + +template +struct __is_union_or_class : + public integral_constant::__value> +{ }; + +#if 0 +template +struct __is_vtbl : // has virtual table? + public integral_constant::value >::__value> +{ }; +#endif + +template +struct __is_vtbl : // has virtual table? + public integral_constant::value ? (sizeof(__inheritance_aux<_Tp,__is_union_or_class<_Tp>::value>) == sizeof(_Tp)) : false > +{ }; + +} // namespace detail + +#define __SPEC_(C,T,B) \ +template <> \ +struct C : \ + public integral_constant \ +{ } + +#define __CV_SPEC(C,T,B) \ +__SPEC_(C,T,B); \ +__SPEC_(C,const T,B); \ +__SPEC_(C,volatile T,B); \ +__SPEC_(C,const volatile T,B) + +#define __SPEC_1(C,T,B) \ +template \ +struct C : \ + public integral_constant \ +{ } + +#define __CV_SPEC_1(C,T,B) \ +__SPEC_1(C,T,B); \ +__SPEC_1(C,T const,B); \ +__SPEC_1(C,T volatile,B); \ +__SPEC_1(C,T const volatile,B) + +#define __SPEC_2(C,T,B) \ +template \ +struct C : \ + public integral_constant \ +{ } + +#define __CV_SPEC_2(C,T,B) \ +__SPEC_2(C,T,B); \ +__SPEC_2(C,T const,B); \ +__SPEC_2(C,T volatile,B); \ +__SPEC_2(C,T const volatile,B) + +// [4.5.1] primary type categories: + +template +struct is_void : + public false_type +{ }; + +template <> +struct is_void : + public true_type +{ }; + +template +struct is_integral : + public false_type +{ }; + +__CV_SPEC(is_integral,bool,true); +__CV_SPEC(is_integral,char,true); +__CV_SPEC(is_integral,signed char,true); +__CV_SPEC(is_integral,unsigned char,true); +__CV_SPEC(is_integral,wchar_t,true); +__CV_SPEC(is_integral,short,true); +__CV_SPEC(is_integral,unsigned short,true); +__CV_SPEC(is_integral,int,true); +__CV_SPEC(is_integral,unsigned int,true); +__CV_SPEC(is_integral,long,true); +__CV_SPEC(is_integral,unsigned long,true); +__CV_SPEC(is_integral,long long,true); +__CV_SPEC(is_integral,unsigned long long,true); + +template +struct is_floating_point : + public false_type +{ }; + +__CV_SPEC(is_floating_point,float,true); +__CV_SPEC(is_floating_point,double,true); +__CV_SPEC(is_floating_point,long double,true); + +template +struct is_array : + public false_type +{ }; + +template +struct is_array<_Tp[_Sz]> : + public true_type +{ }; + +template +struct is_array<_Tp[]> : + public true_type +{ }; + +template +struct is_pointer : + public false_type +{ }; + +__CV_SPEC_1(is_pointer,_Tp *,true); + +template +struct is_lvalue_reference : + public false_type +{ }; + +template +struct is_lvalue_reference<_Tp&> : + public true_type +{ }; + +template +struct is_rvalue_reference : + public false_type +{ }; + +// template +// struct is_rvalue_reference<_Tp&&> : +// public true_type +// { }; + +template +struct is_reference : + public false_type +{ }; + +template +struct is_reference<_Tp&> : + public true_type +{ }; + +template +struct is_function : + public integral_constant::__value + || detail::__is_union_or_class<_Tp>::value + || is_reference<_Tp>::value + || is_void<_Tp>::value)> +{ }; + +template +struct is_member_object_pointer : + public false_type +{ }; + +// _SPEC_FULL2(is_member_object_pointer, _Tp1 _Tp2::*,!is_function<_Tp1>::value); + +template +struct is_member_object_pointer<_Tp1 _Tp2::*> : + public integral_constant::value> +{ }; + +template +struct is_member_object_pointer<_Tp1 _Tp2::* const> : + public integral_constant::value> +{ }; + +template +struct is_member_object_pointer<_Tp1 _Tp2::* volatile> : + public integral_constant::value> +{ }; + +template +struct is_member_object_pointer<_Tp1 _Tp2::* const volatile> : + public integral_constant::value> +{ }; + +template +struct is_member_function_pointer : + public false_type +{ }; + +// _SPEC_FULL2(is_member_function_pointer,_Tp1 _Tp2::*,is_function<_Tp1>::value); + +template +struct is_member_function_pointer<_Tp1 _Tp2::*> : + public integral_constant::value> +{ }; + +template +struct is_member_function_pointer<_Tp1 _Tp2::* const> : + public integral_constant::value> +{ }; + +template +struct is_member_function_pointer<_Tp1 _Tp2::* volatile> : + public integral_constant::value> +{ }; + +template +struct is_member_function_pointer<_Tp1 _Tp2::* const volatile> : + public integral_constant::value> +{ }; + +template +struct is_member_pointer : + public integral_constant::value || is_member_function_pointer<_Tp>::value)> +{ }; + +// 4.5.2 composite type categories + +template +struct is_arithmetic : + public integral_constant::value || is_floating_point<_Tp>::value)> +{ }; + +template +struct is_fundamental : + public integral_constant::value || is_void<_Tp>::value)> +{ }; + +// [4.5.1] primary type categories (continued): + +template +struct is_enum : + public integral_constant::value + || is_array<_Tp>::value + || is_pointer<_Tp>::value + || is_reference<_Tp>::value + || is_member_pointer<_Tp>::value + || is_function<_Tp>::value + || detail::__is_union_or_class<_Tp>::value) > +{ }; + +template +struct is_union +{ }; + +template +struct is_class +{ }; + +// is_function (above) + +// 4.5.2 composite type categories (continued) + +// is_arithmetic (above) +// is_fundamental (above) + +template +struct is_object : + public integral_constant::value || + is_array<_Tp>::value || + is_pointer<_Tp>::value || + is_member_pointer<_Tp>::value || + detail::__is_union_or_class<_Tp>::value)> +{ }; + +template +struct is_scalar : + public integral_constant::value + || is_enum<_Tp>::value + || is_pointer<_Tp>::value + || is_member_pointer<_Tp>::value)> +{ }; + +template +struct is_compound : + public integral_constant::value> +{ }; + +// is_member_pointer + +// 4.5.3 type properties: + +template +struct is_const : + public false_type +{ }; + +template +struct is_const<_Tp const> : + public true_type +{ }; + +template +struct is_volatile : + public false_type +{ }; + +template +struct is_volatile<_Tp volatile> : + public true_type +{ }; + + +// 4.7.3 array modifications: + +template +struct remove_extent +{ + typedef _Tp type; +}; + +template +struct remove_extent<_Tp[_Sz]> +{ + typedef _Tp type; +}; + +template +struct remove_extent<_Tp[]> +{ + typedef _Tp type; +}; + +template +struct remove_all_extents +{ + typedef _Tp type; +}; + +template +struct remove_all_extents<_Tp[_Size]> +{ + typedef typename remove_all_extents<_Tp>::type type; +}; + +template +struct remove_all_extents<_Tp[]> +{ + typedef typename remove_all_extents<_Tp>::type type; +}; + +// 4.5.3 type properties (continued): + +template +struct is_trivial : + public integral_constant::value + || is_scalar::type>::value)> +{ }; + +template +struct is_standard_layout : + public integral_constant::value + || is_scalar::type>::value)> +{ }; + +template +struct is_pod : + public integral_constant::value + || is_scalar::type>::value)> +{ }; + +template +struct is_empty + : public integral_constant::value + && (sizeof(detail::__empty<_Tp>) == sizeof(_Tp)))> +{ }; + +// is_polimorphic +// is_abstract + +template +struct has_trivial_constructor : + public integral_constant::value> +{ }; + +template +struct has_trivial_copy : + public integral_constant::value> +{ }; + +template +struct has_trivial_assign : + public integral_constant::value> +{ }; + +template +struct has_trivial_destructor : + public integral_constant::value> +{ }; + +template +struct has_nothrow_constructor : + public integral_constant::value> +{ }; + +template +struct has_nothrow_copy : + public integral_constant::value> +{ }; + +template +struct has_nothrow_assign : + public integral_constant::value> +{ }; + +template +struct has_virtual_destructor : + public false_type +{ }; + +template +struct is_signed : + public false_type +{ }; + +__CV_SPEC(is_signed,signed char,true); +__CV_SPEC(is_signed,short,true); +__CV_SPEC(is_signed,int,true); +__CV_SPEC(is_signed,long,true); +__CV_SPEC(is_signed,long long,true); + +template +struct is_unsigned : + public false_type +{ }; + +__CV_SPEC(is_unsigned,unsigned char,true); +__CV_SPEC(is_unsigned,unsigned short,true); +__CV_SPEC(is_unsigned,unsigned int,true); +__CV_SPEC(is_unsigned,unsigned long,true); +__CV_SPEC(is_unsigned,unsigned long long,true); + +// alignment_of +// rank +// extent + +// 4.6 type relations: + +template +struct is_same : + public false_type +{ }; + +template +struct is_same<_Tp, _Tp> : + public true_type +{ }; + +// is_base_of +// is_convertible + +// 4.7.1 const-volatile modifications + +template +struct remove_const +{ + typedef _Tp type; +}; + +template +struct remove_const<_Tp const> +{ + typedef _Tp type; +}; + +template +struct remove_volatile +{ + typedef _Tp type; +}; + +template +struct remove_volatile<_Tp volatile> +{ + typedef _Tp type; +}; + +template +struct remove_cv +{ + typedef typename remove_const::type>::type type; +}; + +template +struct add_const +{ + typedef _Tp const type; +}; + +template +struct add_volatile +{ + typedef _Tp volatile type; +}; + +template +struct add_cv +{ + typedef typename add_const::type>::type type; +}; + +// 4.7.2 reference modifications: + +template +struct remove_reference +{ + typedef _Tp type; +}; + +template +struct remove_reference<_Tp&> +{ + typedef _Tp type; +}; + +template +struct add_reference +{ + typedef _Tp& type; +}; + +template +struct add_reference<_Tp&> +{ + typedef _Tp& type; +}; + +// 4.7.3 array modifications (see above) + +// 4.7.4 pointer modifications: + +template +struct remove_pointer +{ + typedef _Tp type; +}; + +template +struct remove_pointer<_Tp *> +{ + typedef _Tp type; +}; + +template +struct remove_pointer<_Tp * const> +{ + typedef _Tp type; +}; + +template +struct remove_pointer<_Tp * volatile> +{ + typedef _Tp type; +}; + +template +struct remove_pointer<_Tp * const volatile> +{ + typedef _Tp type; +}; + +template +struct add_pointer +{ + typedef typename remove_reference<_Tp>::type * type; +}; + +// 20.5.7 other transformations: + +// template struct aligned_storage; +// template struct aligned_union; + +namespace detail { + +template +struct _decay_aux2 +{ + typedef typename remove_cv<_U>::type type; +}; + +template +struct _decay_aux2 +{ + typedef typename add_pointer<_U>::type type; +}; + +template +struct _decay_aux1 +{ + typedef typename _decay_aux2::value,_U>::type type; +}; + +template +struct _decay_aux1 +{ + typedef typename remove_extent<_U>::type* type; +}; + +} // namespace detail + +template +class decay +{ + private: + typedef typename remove_reference<_Tp>::type _U; + + public: + typedef typename detail::_decay_aux1::value,_U>::type type; +}; + +template +struct enable_if +{ +}; + +template +struct enable_if +{ + typedef _Tp type; +}; + +template +struct conditional +{ + typedef _Tp2 type; +}; + +template +struct conditional +{ + typedef _Tp1 type; +}; + +// template struct common_type; + +#undef __CV_SPEC +#undef __SPEC_ +#undef __CV_SPEC_1 +#undef __SPEC_1 +#undef __CV_SPEC_2 +#undef __SPEC_2 + +_STLP_END_NAMESPACE // tr1 + +_STLP_END_NAMESPACE + +// # else // __GLIBCXX__ && (__GNUC__ >= 4) && !STLPORT +// # include +// # endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x3) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif // __STLP_TYPE_TRAITS + diff --git a/sdk/include/c++/stlport/typeinfo b/sdk/include/c++/stlport/typeinfo index d74c93a3986..269123fce36 100644 --- a/sdk/include/c++/stlport/typeinfo +++ b/sdk/include/c++/stlport/typeinfo @@ -1,53 +1,53 @@ -/* - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_TYPEINFO - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x473 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x473) && !defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_TYPEINFO -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x473) && !defined (_STLP_DONT_POP_HEADER_ID) -# ifndef _STLP_INTERNAL_TYPEINFO -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x473) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_CPP_RUNTIME_HEADER(typeinfo) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x473) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_TYPEINFO + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x473 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x473) && !defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_TYPEINFO +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x473) && !defined (_STLP_DONT_POP_HEADER_ID) +# ifndef _STLP_INTERNAL_TYPEINFO +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x473) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_CPP_RUNTIME_HEADER(typeinfo) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x473) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/unordered_map b/sdk/include/c++/stlport/unordered_map index 2dbcc889efd..09fa0d2493a 100644 --- a/sdk/include/c++/stlport/unordered_map +++ b/sdk/include/c++/stlport/unordered_map @@ -1,39 +1,39 @@ -/* - * Copyright (c) 2004,2005 - * Francois Dumont - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_UNORDERED_MAP -#define _STLP_UNORDERED_MAP - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x4030 -# include -#endif - -#ifdef _STLP_PRAGMA_ONCE -# pragma once -#endif - -#include - -#if (_STLP_OUTERMOST_HEADER_ID == 0x4030) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_UNORDERED_MAP */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 2004,2005 + * Francois Dumont + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_UNORDERED_MAP +#define _STLP_UNORDERED_MAP + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x4030 +# include +#endif + +#ifdef _STLP_PRAGMA_ONCE +# pragma once +#endif + +#include + +#if (_STLP_OUTERMOST_HEADER_ID == 0x4030) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_UNORDERED_MAP */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/unordered_set b/sdk/include/c++/stlport/unordered_set index 7011cc838d3..14de437461e 100644 --- a/sdk/include/c++/stlport/unordered_set +++ b/sdk/include/c++/stlport/unordered_set @@ -1,39 +1,39 @@ -/* - * Copyright (c) 2004,2005 - * Francois Dumont - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_UNORDERED_SET -#define _STLP_UNORDERED_SET - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x4031 -# include -#endif - -#ifdef _STLP_PRAGMA_ONCE -# pragma once -#endif - -#include - -#if (_STLP_OUTERMOST_HEADER_ID == 0x4031) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_UNORDERED_SET */ - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 2004,2005 + * Francois Dumont + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_UNORDERED_SET +#define _STLP_UNORDERED_SET + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x4031 +# include +#endif + +#ifdef _STLP_PRAGMA_ONCE +# pragma once +#endif + +#include + +#if (_STLP_OUTERMOST_HEADER_ID == 0x4031) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_UNORDERED_SET */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/using/cstring b/sdk/include/c++/stlport/using/cstring index 0ec3b690aa9..42c56602bf0 100644 --- a/sdk/include/c++/stlport/using/cstring +++ b/sdk/include/c++/stlport/using/cstring @@ -1,60 +1,60 @@ -using _STLP_VENDOR_CSTD::size_t; - -#if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS) -# if defined (__MSL__) && __MC68K__ && !_No_BlockMove && __dest_os == __mac_os -# undef memcpy -# undef memmove -inline void* memcpy(void* dst, const void* src, size_t len) -{ return _STLP_VENDOR_CSTD::__memcpy(dst, src, len); } -inline void* memmove(void* dst, const void* src, size_t len) -{ return _STLP_VENDOR_CSTD::__memmove(dst, src, len); } -# else -using _STLP_VENDOR_CSTD::memmove; -using _STLP_VENDOR_CSTD::memcpy; -# endif - -# if !defined (_STLP_WCE) -// these functions just don't exist on Windows CE -using _STLP_VENDOR_CSTD::strcoll; -using _STLP_VENDOR_CSTD::strerror; -using _STLP_VENDOR_CSTD::strxfrm; -# endif - -# if defined (__BORLANDC__) -extern "C++" { -# endif -using _STLP_VENDOR_CSTD::memchr; -using _STLP_VENDOR_CSTD::strchr; -using _STLP_VENDOR_CSTD::strpbrk; -using _STLP_VENDOR_CSTD::strrchr; -using _STLP_VENDOR_CSTD::strstr; -# if defined (__BORLANDC__) -} -# endif - -using _STLP_VENDOR_CSTD::memcmp; -using _STLP_VENDOR_CSTD::memset; - -using _STLP_VENDOR_CSTD::strcat; - -# if !defined (strcmp) || !defined (__BORLANDC__) -using _STLP_VENDOR_CSTD::strcmp; -# else -using ::strcmp; -# endif - -# if !defined (strcpy) || !defined (__BORLANDC__) -using _STLP_VENDOR_CSTD::strcpy; -# else -using ::strcpy; -# endif -using _STLP_VENDOR_CSTD::strcspn; -using _STLP_VENDOR_CSTD::strlen; -using _STLP_VENDOR_CSTD::strncat; -using _STLP_VENDOR_CSTD::strncmp; - -using _STLP_VENDOR_CSTD::strncpy; -using _STLP_VENDOR_CSTD::strspn; - -using _STLP_VENDOR_CSTD::strtok; -#endif /* _STLP_NO_CSTD_FUNCTION_IMPORTS */ +using _STLP_VENDOR_CSTD::size_t; + +#if !defined (_STLP_NO_CSTD_FUNCTION_IMPORTS) +# if defined (__MSL__) && __MC68K__ && !_No_BlockMove && __dest_os == __mac_os +# undef memcpy +# undef memmove +inline void* memcpy(void* dst, const void* src, size_t len) +{ return _STLP_VENDOR_CSTD::__memcpy(dst, src, len); } +inline void* memmove(void* dst, const void* src, size_t len) +{ return _STLP_VENDOR_CSTD::__memmove(dst, src, len); } +# else +using _STLP_VENDOR_CSTD::memmove; +using _STLP_VENDOR_CSTD::memcpy; +# endif + +# if !defined (_STLP_WCE) +// these functions just don't exist on Windows CE +using _STLP_VENDOR_CSTD::strcoll; +using _STLP_VENDOR_CSTD::strerror; +using _STLP_VENDOR_CSTD::strxfrm; +# endif + +# if defined (__BORLANDC__) +extern "C++" { +# endif +using _STLP_VENDOR_CSTD::memchr; +using _STLP_VENDOR_CSTD::strchr; +using _STLP_VENDOR_CSTD::strpbrk; +using _STLP_VENDOR_CSTD::strrchr; +using _STLP_VENDOR_CSTD::strstr; +# if defined (__BORLANDC__) +} +# endif + +using _STLP_VENDOR_CSTD::memcmp; +using _STLP_VENDOR_CSTD::memset; + +using _STLP_VENDOR_CSTD::strcat; + +# if !defined (strcmp) || !defined (__BORLANDC__) +using _STLP_VENDOR_CSTD::strcmp; +# else +using ::strcmp; +# endif + +# if !defined (strcpy) || !defined (__BORLANDC__) +using _STLP_VENDOR_CSTD::strcpy; +# else +using ::strcpy; +# endif +using _STLP_VENDOR_CSTD::strcspn; +using _STLP_VENDOR_CSTD::strlen; +using _STLP_VENDOR_CSTD::strncat; +using _STLP_VENDOR_CSTD::strncmp; + +using _STLP_VENDOR_CSTD::strncpy; +using _STLP_VENDOR_CSTD::strspn; + +using _STLP_VENDOR_CSTD::strtok; +#endif /* _STLP_NO_CSTD_FUNCTION_IMPORTS */ diff --git a/sdk/include/c++/stlport/using/export b/sdk/include/c++/stlport/using/export index ee3f264ce3f..2d3afcd9f59 100644 --- a/sdk/include/c++/stlport/using/export +++ b/sdk/include/c++/stlport/using/export @@ -1,12 +1,12 @@ -cstring -fstream -iomanip -ios -iosfwd -iostream -istream -locale -ostream -sstream -streambuf -strstream +cstring +fstream +iomanip +ios +iosfwd +iostream +istream +locale +ostream +sstream +streambuf +strstream diff --git a/sdk/include/c++/stlport/using/fstream b/sdk/include/c++/stlport/using/fstream index ec4f19b09f7..e79e0480f6e 100644 --- a/sdk/include/c++/stlport/using/fstream +++ b/sdk/include/c++/stlport/using/fstream @@ -1,19 +1,19 @@ -#ifdef _STLP_BROKEN_USING_DIRECTIVE -using namespace _STLP_STD; -#else -using _STLP_NEW_IO_NAMESPACE::basic_filebuf; -using _STLP_NEW_IO_NAMESPACE::filebuf; -using _STLP_NEW_IO_NAMESPACE::basic_ifstream; -using _STLP_NEW_IO_NAMESPACE::basic_ofstream; -using _STLP_NEW_IO_NAMESPACE::ifstream; -using _STLP_NEW_IO_NAMESPACE::ofstream; -using _STLP_NEW_IO_NAMESPACE::basic_fstream; -using _STLP_NEW_IO_NAMESPACE::fstream; - -# ifndef _STLP_NO_WIDE_STREAMS -using _STLP_NEW_IO_NAMESPACE::wofstream; -using _STLP_NEW_IO_NAMESPACE::wfilebuf; -using _STLP_NEW_IO_NAMESPACE::wifstream; -using _STLP_NEW_IO_NAMESPACE::wfstream; -# endif -#endif +#ifdef _STLP_BROKEN_USING_DIRECTIVE +using namespace _STLP_STD; +#else +using _STLP_NEW_IO_NAMESPACE::basic_filebuf; +using _STLP_NEW_IO_NAMESPACE::filebuf; +using _STLP_NEW_IO_NAMESPACE::basic_ifstream; +using _STLP_NEW_IO_NAMESPACE::basic_ofstream; +using _STLP_NEW_IO_NAMESPACE::ifstream; +using _STLP_NEW_IO_NAMESPACE::ofstream; +using _STLP_NEW_IO_NAMESPACE::basic_fstream; +using _STLP_NEW_IO_NAMESPACE::fstream; + +# ifndef _STLP_NO_WIDE_STREAMS +using _STLP_NEW_IO_NAMESPACE::wofstream; +using _STLP_NEW_IO_NAMESPACE::wfilebuf; +using _STLP_NEW_IO_NAMESPACE::wifstream; +using _STLP_NEW_IO_NAMESPACE::wfstream; +# endif +#endif diff --git a/sdk/include/c++/stlport/using/iomanip b/sdk/include/c++/stlport/using/iomanip index e918d4064ad..8a7c792f851 100644 --- a/sdk/include/c++/stlport/using/iomanip +++ b/sdk/include/c++/stlport/using/iomanip @@ -1,6 +1,6 @@ -using _STLP_NEW_IO_NAMESPACE::setiosflags; -using _STLP_NEW_IO_NAMESPACE::resetiosflags; -using _STLP_NEW_IO_NAMESPACE::setbase; -using _STLP_NEW_IO_NAMESPACE::setfill; -using _STLP_NEW_IO_NAMESPACE::setprecision; -using _STLP_NEW_IO_NAMESPACE::setw; +using _STLP_NEW_IO_NAMESPACE::setiosflags; +using _STLP_NEW_IO_NAMESPACE::resetiosflags; +using _STLP_NEW_IO_NAMESPACE::setbase; +using _STLP_NEW_IO_NAMESPACE::setfill; +using _STLP_NEW_IO_NAMESPACE::setprecision; +using _STLP_NEW_IO_NAMESPACE::setw; diff --git a/sdk/include/c++/stlport/using/ios b/sdk/include/c++/stlport/using/ios index b7485c7c12f..d89b495ad20 100644 --- a/sdk/include/c++/stlport/using/ios +++ b/sdk/include/c++/stlport/using/ios @@ -1,41 +1,41 @@ -# ifdef _STLP_BROKEN_USING_DIRECTIVE -using namespace _STLP_NEW_IO_NAMESPACE; -# else - -using _STLP_NEW_IO_NAMESPACE::ios; -using _STLP_NEW_IO_NAMESPACE::streamoff; -using _STLP_NEW_IO_NAMESPACE::streamsize; - -using _STLP_NEW_IO_NAMESPACE::ios_base; -using _STLP_NEW_IO_NAMESPACE::basic_ios; - -// _lib.std.ios.manip_, manipulators: -using _STLP_NEW_IO_NAMESPACE::boolalpha; -using _STLP_NEW_IO_NAMESPACE::noboolalpha; -using _STLP_NEW_IO_NAMESPACE::showbase; -using _STLP_NEW_IO_NAMESPACE::noshowbase; -using _STLP_NEW_IO_NAMESPACE::showpoint; -using _STLP_NEW_IO_NAMESPACE::noshowpoint; -using _STLP_NEW_IO_NAMESPACE::showpos; -using _STLP_NEW_IO_NAMESPACE::noshowpos; -using _STLP_NEW_IO_NAMESPACE::skipws; -using _STLP_NEW_IO_NAMESPACE::noskipws; -using _STLP_NEW_IO_NAMESPACE::uppercase; -using _STLP_NEW_IO_NAMESPACE::nouppercase; - -// _lib.adjustfield.manip_ adjustfield: -using _STLP_NEW_IO_NAMESPACE::internal; -using _STLP_NEW_IO_NAMESPACE::left; -using _STLP_NEW_IO_NAMESPACE::right; - -// _lib.basefield.manip_ basefield: -using _STLP_NEW_IO_NAMESPACE::dec; -using _STLP_NEW_IO_NAMESPACE::hex; -using _STLP_NEW_IO_NAMESPACE::oct; - -// _lib.floatfield.manip_ floatfield: -using _STLP_NEW_IO_NAMESPACE::fixed; -using _STLP_NEW_IO_NAMESPACE::scientific; - -# endif /* _STLP_BROKEN_USING_DIRECTIVE */ - +# ifdef _STLP_BROKEN_USING_DIRECTIVE +using namespace _STLP_NEW_IO_NAMESPACE; +# else + +using _STLP_NEW_IO_NAMESPACE::ios; +using _STLP_NEW_IO_NAMESPACE::streamoff; +using _STLP_NEW_IO_NAMESPACE::streamsize; + +using _STLP_NEW_IO_NAMESPACE::ios_base; +using _STLP_NEW_IO_NAMESPACE::basic_ios; + +// _lib.std.ios.manip_, manipulators: +using _STLP_NEW_IO_NAMESPACE::boolalpha; +using _STLP_NEW_IO_NAMESPACE::noboolalpha; +using _STLP_NEW_IO_NAMESPACE::showbase; +using _STLP_NEW_IO_NAMESPACE::noshowbase; +using _STLP_NEW_IO_NAMESPACE::showpoint; +using _STLP_NEW_IO_NAMESPACE::noshowpoint; +using _STLP_NEW_IO_NAMESPACE::showpos; +using _STLP_NEW_IO_NAMESPACE::noshowpos; +using _STLP_NEW_IO_NAMESPACE::skipws; +using _STLP_NEW_IO_NAMESPACE::noskipws; +using _STLP_NEW_IO_NAMESPACE::uppercase; +using _STLP_NEW_IO_NAMESPACE::nouppercase; + +// _lib.adjustfield.manip_ adjustfield: +using _STLP_NEW_IO_NAMESPACE::internal; +using _STLP_NEW_IO_NAMESPACE::left; +using _STLP_NEW_IO_NAMESPACE::right; + +// _lib.basefield.manip_ basefield: +using _STLP_NEW_IO_NAMESPACE::dec; +using _STLP_NEW_IO_NAMESPACE::hex; +using _STLP_NEW_IO_NAMESPACE::oct; + +// _lib.floatfield.manip_ floatfield: +using _STLP_NEW_IO_NAMESPACE::fixed; +using _STLP_NEW_IO_NAMESPACE::scientific; + +# endif /* _STLP_BROKEN_USING_DIRECTIVE */ + diff --git a/sdk/include/c++/stlport/using/iosfwd b/sdk/include/c++/stlport/using/iosfwd index d02b91207b6..b564e819f9f 100644 --- a/sdk/include/c++/stlport/using/iosfwd +++ b/sdk/include/c++/stlport/using/iosfwd @@ -1,54 +1,54 @@ -# if defined (_STLP_USE_NEW_IOSTREAMS) -using _STLP_NEW_IO_NAMESPACE::char_traits; -using _STLP_NEW_IO_NAMESPACE::basic_ios; -using _STLP_NEW_IO_NAMESPACE::basic_streambuf; -using _STLP_NEW_IO_NAMESPACE::basic_istream; -using _STLP_NEW_IO_NAMESPACE::basic_ostream; -using _STLP_NEW_IO_NAMESPACE::basic_iostream; -using _STLP_NEW_IO_NAMESPACE::basic_stringbuf; -using _STLP_NEW_IO_NAMESPACE::basic_istringstream; -using _STLP_NEW_IO_NAMESPACE::basic_ostringstream; -using _STLP_NEW_IO_NAMESPACE::basic_stringstream; -using _STLP_NEW_IO_NAMESPACE::basic_filebuf; -using _STLP_NEW_IO_NAMESPACE::basic_ifstream; -using _STLP_NEW_IO_NAMESPACE::basic_ofstream; -using _STLP_NEW_IO_NAMESPACE::basic_fstream; -using _STLP_NEW_IO_NAMESPACE::fpos; -using _STLP_NEW_IO_NAMESPACE::istreambuf_iterator; -using _STLP_NEW_IO_NAMESPACE::ostreambuf_iterator; -using _STLP_NEW_IO_NAMESPACE::stringbuf; -using _STLP_NEW_IO_NAMESPACE::istringstream; -using _STLP_NEW_IO_NAMESPACE::ostringstream; -using _STLP_NEW_IO_NAMESPACE::stringstream; -# endif - -using _STLP_NEW_IO_NAMESPACE::ios; -using _STLP_NEW_IO_NAMESPACE::streambuf; -using _STLP_NEW_IO_NAMESPACE::istream; -using _STLP_NEW_IO_NAMESPACE::ostream; -using _STLP_NEW_IO_NAMESPACE::iostream; - -using _STLP_NEW_IO_NAMESPACE::filebuf; -using _STLP_NEW_IO_NAMESPACE::ifstream; -using _STLP_NEW_IO_NAMESPACE::ofstream; -using _STLP_NEW_IO_NAMESPACE::fstream; - -using _STLP_NEW_IO_NAMESPACE::streampos; -using _STLP_NEW_IO_NAMESPACE::streamoff; - -# if !defined (_STLP_NO_WIDE_STREAMS) -using _STLP_NEW_IO_NAMESPACE::wios; -using _STLP_NEW_IO_NAMESPACE::wstreambuf; -using _STLP_NEW_IO_NAMESPACE::wistream; -using _STLP_NEW_IO_NAMESPACE::wostream; -using _STLP_NEW_IO_NAMESPACE::wiostream; -using _STLP_NEW_IO_NAMESPACE::wstringbuf; -using _STLP_NEW_IO_NAMESPACE::wistringstream; -using _STLP_NEW_IO_NAMESPACE::wostringstream; -using _STLP_NEW_IO_NAMESPACE::wstringstream; -using _STLP_NEW_IO_NAMESPACE::wfilebuf; -using _STLP_NEW_IO_NAMESPACE::wifstream; -using _STLP_NEW_IO_NAMESPACE::wofstream; -using _STLP_NEW_IO_NAMESPACE::wfstream; -using _STLP_NEW_IO_NAMESPACE::wstreampos; -# endif +# if defined (_STLP_USE_NEW_IOSTREAMS) +using _STLP_NEW_IO_NAMESPACE::char_traits; +using _STLP_NEW_IO_NAMESPACE::basic_ios; +using _STLP_NEW_IO_NAMESPACE::basic_streambuf; +using _STLP_NEW_IO_NAMESPACE::basic_istream; +using _STLP_NEW_IO_NAMESPACE::basic_ostream; +using _STLP_NEW_IO_NAMESPACE::basic_iostream; +using _STLP_NEW_IO_NAMESPACE::basic_stringbuf; +using _STLP_NEW_IO_NAMESPACE::basic_istringstream; +using _STLP_NEW_IO_NAMESPACE::basic_ostringstream; +using _STLP_NEW_IO_NAMESPACE::basic_stringstream; +using _STLP_NEW_IO_NAMESPACE::basic_filebuf; +using _STLP_NEW_IO_NAMESPACE::basic_ifstream; +using _STLP_NEW_IO_NAMESPACE::basic_ofstream; +using _STLP_NEW_IO_NAMESPACE::basic_fstream; +using _STLP_NEW_IO_NAMESPACE::fpos; +using _STLP_NEW_IO_NAMESPACE::istreambuf_iterator; +using _STLP_NEW_IO_NAMESPACE::ostreambuf_iterator; +using _STLP_NEW_IO_NAMESPACE::stringbuf; +using _STLP_NEW_IO_NAMESPACE::istringstream; +using _STLP_NEW_IO_NAMESPACE::ostringstream; +using _STLP_NEW_IO_NAMESPACE::stringstream; +# endif + +using _STLP_NEW_IO_NAMESPACE::ios; +using _STLP_NEW_IO_NAMESPACE::streambuf; +using _STLP_NEW_IO_NAMESPACE::istream; +using _STLP_NEW_IO_NAMESPACE::ostream; +using _STLP_NEW_IO_NAMESPACE::iostream; + +using _STLP_NEW_IO_NAMESPACE::filebuf; +using _STLP_NEW_IO_NAMESPACE::ifstream; +using _STLP_NEW_IO_NAMESPACE::ofstream; +using _STLP_NEW_IO_NAMESPACE::fstream; + +using _STLP_NEW_IO_NAMESPACE::streampos; +using _STLP_NEW_IO_NAMESPACE::streamoff; + +# if !defined (_STLP_NO_WIDE_STREAMS) +using _STLP_NEW_IO_NAMESPACE::wios; +using _STLP_NEW_IO_NAMESPACE::wstreambuf; +using _STLP_NEW_IO_NAMESPACE::wistream; +using _STLP_NEW_IO_NAMESPACE::wostream; +using _STLP_NEW_IO_NAMESPACE::wiostream; +using _STLP_NEW_IO_NAMESPACE::wstringbuf; +using _STLP_NEW_IO_NAMESPACE::wistringstream; +using _STLP_NEW_IO_NAMESPACE::wostringstream; +using _STLP_NEW_IO_NAMESPACE::wstringstream; +using _STLP_NEW_IO_NAMESPACE::wfilebuf; +using _STLP_NEW_IO_NAMESPACE::wifstream; +using _STLP_NEW_IO_NAMESPACE::wofstream; +using _STLP_NEW_IO_NAMESPACE::wfstream; +using _STLP_NEW_IO_NAMESPACE::wstreampos; +# endif diff --git a/sdk/include/c++/stlport/using/iostream b/sdk/include/c++/stlport/using/iostream index 29ac5ad3bae..6169afb2f60 100644 --- a/sdk/include/c++/stlport/using/iostream +++ b/sdk/include/c++/stlport/using/iostream @@ -1,14 +1,14 @@ - -# include - -using _STLP_VENDOR_STD::cin; -using _STLP_VENDOR_STD::cout; -using _STLP_VENDOR_STD::cerr; -using _STLP_VENDOR_STD::clog; - -# if ! defined (_STLP_NO_WIDE_STREAMS) -using _STLP_VENDOR_STD::wcin; -using _STLP_VENDOR_STD::wcout; -using _STLP_VENDOR_STD::wcerr; -using _STLP_VENDOR_STD::wclog; -# endif + +# include + +using _STLP_VENDOR_STD::cin; +using _STLP_VENDOR_STD::cout; +using _STLP_VENDOR_STD::cerr; +using _STLP_VENDOR_STD::clog; + +# if ! defined (_STLP_NO_WIDE_STREAMS) +using _STLP_VENDOR_STD::wcin; +using _STLP_VENDOR_STD::wcout; +using _STLP_VENDOR_STD::wcerr; +using _STLP_VENDOR_STD::wclog; +# endif diff --git a/sdk/include/c++/stlport/using/istream b/sdk/include/c++/stlport/using/istream index 7486fb32429..baf10d28574 100644 --- a/sdk/include/c++/stlport/using/istream +++ b/sdk/include/c++/stlport/using/istream @@ -1,16 +1,16 @@ -# include - -using _STLP_NEW_IO_NAMESPACE::basic_istream; -using _STLP_NEW_IO_NAMESPACE::basic_iostream; - -using _STLP_NEW_IO_NAMESPACE::istream; -using _STLP_NEW_IO_NAMESPACE::iostream; - -# if !defined (_STLP_NO_NATIVE_WIDE_STREAMS) -using _STLP_NEW_IO_NAMESPACE::wistream; -using _STLP_NEW_IO_NAMESPACE::wiostream; -# endif - -#if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200)) -using _STLP_NEW_IO_NAMESPACE::ws; -#endif +# include + +using _STLP_NEW_IO_NAMESPACE::basic_istream; +using _STLP_NEW_IO_NAMESPACE::basic_iostream; + +using _STLP_NEW_IO_NAMESPACE::istream; +using _STLP_NEW_IO_NAMESPACE::iostream; + +# if !defined (_STLP_NO_NATIVE_WIDE_STREAMS) +using _STLP_NEW_IO_NAMESPACE::wistream; +using _STLP_NEW_IO_NAMESPACE::wiostream; +# endif + +#if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200)) +using _STLP_NEW_IO_NAMESPACE::ws; +#endif diff --git a/sdk/include/c++/stlport/using/locale b/sdk/include/c++/stlport/using/locale index 1eede715bf8..aa99b5bee48 100644 --- a/sdk/include/c++/stlport/using/locale +++ b/sdk/include/c++/stlport/using/locale @@ -1,65 +1,65 @@ -#if !defined(_STLP_NO_IMPORT_LOCALE) - -// from -#if !defined (_STLP_NO_MBSTATE_T) -using _STLP_VENDOR_MB_NAMESPACE::mbstate_t; -#endif - -// _lib.locale_, locale: -using _STLP_NEW_IO_NAMESPACE::locale; -using _STLP_NEW_IO_NAMESPACE::use_facet; -using _STLP_NEW_IO_NAMESPACE::has_facet; - -// _lib.locale.convenience_, convenience interfaces: -using _STLP_NEW_IO_NAMESPACE::isspace; -using _STLP_NEW_IO_NAMESPACE::isprint; -using _STLP_NEW_IO_NAMESPACE::iscntrl; -using _STLP_NEW_IO_NAMESPACE::isupper; -using _STLP_NEW_IO_NAMESPACE::islower; -using _STLP_NEW_IO_NAMESPACE::isalpha; -using _STLP_NEW_IO_NAMESPACE::isdigit; -using _STLP_NEW_IO_NAMESPACE::ispunct; -using _STLP_NEW_IO_NAMESPACE::isxdigit; -using _STLP_NEW_IO_NAMESPACE::isalnum; -using _STLP_NEW_IO_NAMESPACE::isgraph; -using _STLP_NEW_IO_NAMESPACE::toupper; -using _STLP_NEW_IO_NAMESPACE::tolower; - -// _lib.category.ctype_ and _lib.facet.ctype.special_, ctype: -using _STLP_NEW_IO_NAMESPACE::ctype_base; -using _STLP_NEW_IO_NAMESPACE::ctype; -using _STLP_NEW_IO_NAMESPACE::ctype_byname; -using _STLP_NEW_IO_NAMESPACE::codecvt_base; -using _STLP_NEW_IO_NAMESPACE::codecvt; -using _STLP_NEW_IO_NAMESPACE::codecvt_byname; - -// _lib.category.numeric_ and _lib.facet.numpunct_, numeric: -using _STLP_NEW_IO_NAMESPACE::num_get; -using _STLP_NEW_IO_NAMESPACE::num_put; -using _STLP_NEW_IO_NAMESPACE::numpunct; -using _STLP_NEW_IO_NAMESPACE::numpunct_byname; - -// _lib.category.collate_, collation: -using _STLP_NEW_IO_NAMESPACE::collate; -using _STLP_NEW_IO_NAMESPACE::collate_byname; - -// _lib.category.time_, date and time: -using _STLP_NEW_IO_NAMESPACE::time_base; -using _STLP_NEW_IO_NAMESPACE::time_get; -using _STLP_NEW_IO_NAMESPACE::time_get_byname; -using _STLP_NEW_IO_NAMESPACE::time_put; -using _STLP_NEW_IO_NAMESPACE::time_put_byname; - -// _lib.category.monetary_, money: -using _STLP_NEW_IO_NAMESPACE::money_base; -using _STLP_NEW_IO_NAMESPACE::money_get; -using _STLP_NEW_IO_NAMESPACE::money_put; -using _STLP_NEW_IO_NAMESPACE::moneypunct; -using _STLP_NEW_IO_NAMESPACE::moneypunct_byname; - -#if !defined (_STLP_OWN_IOSTREAMS) && !defined (_STLP_NO_NATIVE_MESSAGE_FACET) -using _STLP_NEW_IO_NAMESPACE::messages_base; -using _STLP_NEW_IO_NAMESPACE::messages; -using _STLP_NEW_IO_NAMESPACE::messages_byname; -#endif // _MSL_NO_MESSAGE_FACET -#endif /* !defined(_STLP_NO_IMPORT_LOCALE) */ +#if !defined(_STLP_NO_IMPORT_LOCALE) + +// from +#if !defined (_STLP_NO_MBSTATE_T) +using _STLP_VENDOR_MB_NAMESPACE::mbstate_t; +#endif + +// _lib.locale_, locale: +using _STLP_NEW_IO_NAMESPACE::locale; +using _STLP_NEW_IO_NAMESPACE::use_facet; +using _STLP_NEW_IO_NAMESPACE::has_facet; + +// _lib.locale.convenience_, convenience interfaces: +using _STLP_NEW_IO_NAMESPACE::isspace; +using _STLP_NEW_IO_NAMESPACE::isprint; +using _STLP_NEW_IO_NAMESPACE::iscntrl; +using _STLP_NEW_IO_NAMESPACE::isupper; +using _STLP_NEW_IO_NAMESPACE::islower; +using _STLP_NEW_IO_NAMESPACE::isalpha; +using _STLP_NEW_IO_NAMESPACE::isdigit; +using _STLP_NEW_IO_NAMESPACE::ispunct; +using _STLP_NEW_IO_NAMESPACE::isxdigit; +using _STLP_NEW_IO_NAMESPACE::isalnum; +using _STLP_NEW_IO_NAMESPACE::isgraph; +using _STLP_NEW_IO_NAMESPACE::toupper; +using _STLP_NEW_IO_NAMESPACE::tolower; + +// _lib.category.ctype_ and _lib.facet.ctype.special_, ctype: +using _STLP_NEW_IO_NAMESPACE::ctype_base; +using _STLP_NEW_IO_NAMESPACE::ctype; +using _STLP_NEW_IO_NAMESPACE::ctype_byname; +using _STLP_NEW_IO_NAMESPACE::codecvt_base; +using _STLP_NEW_IO_NAMESPACE::codecvt; +using _STLP_NEW_IO_NAMESPACE::codecvt_byname; + +// _lib.category.numeric_ and _lib.facet.numpunct_, numeric: +using _STLP_NEW_IO_NAMESPACE::num_get; +using _STLP_NEW_IO_NAMESPACE::num_put; +using _STLP_NEW_IO_NAMESPACE::numpunct; +using _STLP_NEW_IO_NAMESPACE::numpunct_byname; + +// _lib.category.collate_, collation: +using _STLP_NEW_IO_NAMESPACE::collate; +using _STLP_NEW_IO_NAMESPACE::collate_byname; + +// _lib.category.time_, date and time: +using _STLP_NEW_IO_NAMESPACE::time_base; +using _STLP_NEW_IO_NAMESPACE::time_get; +using _STLP_NEW_IO_NAMESPACE::time_get_byname; +using _STLP_NEW_IO_NAMESPACE::time_put; +using _STLP_NEW_IO_NAMESPACE::time_put_byname; + +// _lib.category.monetary_, money: +using _STLP_NEW_IO_NAMESPACE::money_base; +using _STLP_NEW_IO_NAMESPACE::money_get; +using _STLP_NEW_IO_NAMESPACE::money_put; +using _STLP_NEW_IO_NAMESPACE::moneypunct; +using _STLP_NEW_IO_NAMESPACE::moneypunct_byname; + +#if !defined (_STLP_OWN_IOSTREAMS) && !defined (_STLP_NO_NATIVE_MESSAGE_FACET) +using _STLP_NEW_IO_NAMESPACE::messages_base; +using _STLP_NEW_IO_NAMESPACE::messages; +using _STLP_NEW_IO_NAMESPACE::messages_byname; +#endif // _MSL_NO_MESSAGE_FACET +#endif /* !defined(_STLP_NO_IMPORT_LOCALE) */ diff --git a/sdk/include/c++/stlport/using/ostream b/sdk/include/c++/stlport/using/ostream index f505f1cb79f..162b32d8b13 100644 --- a/sdk/include/c++/stlport/using/ostream +++ b/sdk/include/c++/stlport/using/ostream @@ -1,10 +1,10 @@ -using _STLP_NEW_IO_NAMESPACE::basic_ostream; -using _STLP_NEW_IO_NAMESPACE::ostream; - -# ifndef _STLP_NO_WIDE_STREAMS -using _STLP_NEW_IO_NAMESPACE::wostream; -# endif - -using _STLP_NEW_IO_NAMESPACE::endl; -using _STLP_NEW_IO_NAMESPACE::ends; -using _STLP_NEW_IO_NAMESPACE::flush; +using _STLP_NEW_IO_NAMESPACE::basic_ostream; +using _STLP_NEW_IO_NAMESPACE::ostream; + +# ifndef _STLP_NO_WIDE_STREAMS +using _STLP_NEW_IO_NAMESPACE::wostream; +# endif + +using _STLP_NEW_IO_NAMESPACE::endl; +using _STLP_NEW_IO_NAMESPACE::ends; +using _STLP_NEW_IO_NAMESPACE::flush; diff --git a/sdk/include/c++/stlport/using/sstream b/sdk/include/c++/stlport/using/sstream index f9ab695cf51..925c37e2da6 100644 --- a/sdk/include/c++/stlport/using/sstream +++ b/sdk/include/c++/stlport/using/sstream @@ -1,16 +1,16 @@ -using _STLP_NEW_IO_NAMESPACE::basic_stringbuf; -using _STLP_NEW_IO_NAMESPACE::stringbuf; - -using _STLP_NEW_IO_NAMESPACE::basic_istringstream; -using _STLP_NEW_IO_NAMESPACE::basic_ostringstream; -using _STLP_NEW_IO_NAMESPACE::basic_stringstream; -using _STLP_NEW_IO_NAMESPACE::istringstream; -using _STLP_NEW_IO_NAMESPACE::ostringstream; -using _STLP_NEW_IO_NAMESPACE::stringstream; - -#ifndef _STLP_NO_WIDE_STREAMS -using _STLP_NEW_IO_NAMESPACE::wstringbuf; -using _STLP_NEW_IO_NAMESPACE::wistringstream; -using _STLP_NEW_IO_NAMESPACE::wostringstream; -using _STLP_NEW_IO_NAMESPACE::wstringstream; -#endif +using _STLP_NEW_IO_NAMESPACE::basic_stringbuf; +using _STLP_NEW_IO_NAMESPACE::stringbuf; + +using _STLP_NEW_IO_NAMESPACE::basic_istringstream; +using _STLP_NEW_IO_NAMESPACE::basic_ostringstream; +using _STLP_NEW_IO_NAMESPACE::basic_stringstream; +using _STLP_NEW_IO_NAMESPACE::istringstream; +using _STLP_NEW_IO_NAMESPACE::ostringstream; +using _STLP_NEW_IO_NAMESPACE::stringstream; + +#ifndef _STLP_NO_WIDE_STREAMS +using _STLP_NEW_IO_NAMESPACE::wstringbuf; +using _STLP_NEW_IO_NAMESPACE::wistringstream; +using _STLP_NEW_IO_NAMESPACE::wostringstream; +using _STLP_NEW_IO_NAMESPACE::wstringstream; +#endif diff --git a/sdk/include/c++/stlport/using/streambuf b/sdk/include/c++/stlport/using/streambuf index 9507277c23c..308241dee80 100644 --- a/sdk/include/c++/stlport/using/streambuf +++ b/sdk/include/c++/stlport/using/streambuf @@ -1,5 +1,5 @@ -using _STLP_NEW_IO_NAMESPACE::basic_streambuf; -using _STLP_NEW_IO_NAMESPACE::streambuf; -#ifndef _STLP_NO_WIDE_STREAMS -using _STLP_NEW_IO_NAMESPACE::wstreambuf; -# endif +using _STLP_NEW_IO_NAMESPACE::basic_streambuf; +using _STLP_NEW_IO_NAMESPACE::streambuf; +#ifndef _STLP_NO_WIDE_STREAMS +using _STLP_NEW_IO_NAMESPACE::wstreambuf; +# endif diff --git a/sdk/include/c++/stlport/using/strstream b/sdk/include/c++/stlport/using/strstream index d10490589e3..eb26ac1f557 100644 --- a/sdk/include/c++/stlport/using/strstream +++ b/sdk/include/c++/stlport/using/strstream @@ -1,4 +1,4 @@ -using _STLP_NEW_IO_NAMESPACE::strstreambuf; -using _STLP_NEW_IO_NAMESPACE::istrstream; -using _STLP_NEW_IO_NAMESPACE::ostrstream; -using _STLP_NEW_IO_NAMESPACE::strstream; +using _STLP_NEW_IO_NAMESPACE::strstreambuf; +using _STLP_NEW_IO_NAMESPACE::istrstream; +using _STLP_NEW_IO_NAMESPACE::ostrstream; +using _STLP_NEW_IO_NAMESPACE::strstream; diff --git a/sdk/include/c++/stlport/utility b/sdk/include/c++/stlport/utility index d9b908f5f90..4aaaa5935d4 100644 --- a/sdk/include/c++/stlport/utility +++ b/sdk/include/c++/stlport/utility @@ -1,60 +1,60 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_UTILITY - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x75 -# include -#elif (_STLP_OUTERMOST_HEADER_ID == 0x75) && !defined (_STLP_DONT_POP_HEADER_ID) -# define _STLP_DONT_POP_HEADER_ID -# define _STLP_UTILITY -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x75) && !defined (_STLP_DONT_POP_HEADER_ID) -# ifndef _STLP_INTERNAL_PAIR_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x75) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(utility) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x75) -# if !defined (_STLP_DONT_POP_HEADER_ID) -# include -# undef _STLP_OUTERMOST_HEADER_ID -# else -# undef _STLP_DONT_POP_HEADER_ID -# endif -#endif - -#endif /* _STLP_UTILITY */ - -// Local Variables: -// mode:C++ -// End: +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_UTILITY + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x75 +# include +#elif (_STLP_OUTERMOST_HEADER_ID == 0x75) && !defined (_STLP_DONT_POP_HEADER_ID) +# define _STLP_DONT_POP_HEADER_ID +# define _STLP_UTILITY +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x75) && !defined (_STLP_DONT_POP_HEADER_ID) +# ifndef _STLP_INTERNAL_PAIR_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x75) || defined (_STLP_DONT_POP_HEADER_ID) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(utility) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x75) +# if !defined (_STLP_DONT_POP_HEADER_ID) +# include +# undef _STLP_OUTERMOST_HEADER_ID +# else +# undef _STLP_DONT_POP_HEADER_ID +# endif +#endif + +#endif /* _STLP_UTILITY */ + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/valarray b/sdk/include/c++/stlport/valarray index 5cabf09ade1..0cb07767ca9 100644 --- a/sdk/include/c++/stlport/valarray +++ b/sdk/include/c++/stlport/valarray @@ -1,51 +1,51 @@ -/* - * Copyright (c) 1999 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_VALARRAY - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x76 -# include -# define _STLP_VALARRAY -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x76) -# ifndef _STLP_VALARRAY_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(valarray) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x76) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_VALARRAY */ - - -// Local Variables: -// mode:C++ -// End: +/* + * Copyright (c) 1999 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_VALARRAY + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x76 +# include +# define _STLP_VALARRAY +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x76) +# ifndef _STLP_VALARRAY_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x76) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(valarray) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x76) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_VALARRAY */ + + +// Local Variables: +// mode:C++ +// End: diff --git a/sdk/include/c++/stlport/vector b/sdk/include/c++/stlport/vector index 7ac808bb381..92c41b744f0 100644 --- a/sdk/include/c++/stlport/vector +++ b/sdk/include/c++/stlport/vector @@ -1,59 +1,59 @@ -/* - * - * Copyright (c) 1994 - * Hewlett-Packard Company - * - * Copyright (c) 1996,1997 - * Silicon Graphics Computer Systems, Inc. - * - * Copyright (c) 1999 - * Boris Fomitchev - * - * This material is provided "as is", with absolutely no warranty expressed - * or implied. Any use is at your own risk. - * - * Permission to use or copy this software for any purpose is hereby granted - * without fee, provided the above notices are retained on all copies. - * Permission to modify the code and to distribute modified code is granted, - * provided the above notices are retained, and a notice that the code was - * modified is included with the above copyright notice. - * - */ - -#ifndef _STLP_VECTOR - -#ifndef _STLP_OUTERMOST_HEADER_ID -# define _STLP_OUTERMOST_HEADER_ID 0x77 -# include -# define _STLP_VECTOR -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x77) -# ifndef _STLP_INTERNAL_ALGOBASE_H -# include -# endif - -# ifndef _STLP_INTERNAL_VECTOR_H -# include -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID != 0x77) || defined (_STLP_IMPORT_VENDOR_STD) -# if defined (_STLP_HAS_INCLUDE_NEXT) -# include_next -# else -# include _STLP_NATIVE_HEADER(vector) -# endif -#endif - -#if (_STLP_OUTERMOST_HEADER_ID == 0x77) -# include -# undef _STLP_OUTERMOST_HEADER_ID -#endif - -#endif /* _STLP_VECTOR */ - -// Local Variables: -// mode:C++ -// End: - +/* + * + * Copyright (c) 1994 + * Hewlett-Packard Company + * + * Copyright (c) 1996,1997 + * Silicon Graphics Computer Systems, Inc. + * + * Copyright (c) 1999 + * Boris Fomitchev + * + * This material is provided "as is", with absolutely no warranty expressed + * or implied. Any use is at your own risk. + * + * Permission to use or copy this software for any purpose is hereby granted + * without fee, provided the above notices are retained on all copies. + * Permission to modify the code and to distribute modified code is granted, + * provided the above notices are retained, and a notice that the code was + * modified is included with the above copyright notice. + * + */ + +#ifndef _STLP_VECTOR + +#ifndef _STLP_OUTERMOST_HEADER_ID +# define _STLP_OUTERMOST_HEADER_ID 0x77 +# include +# define _STLP_VECTOR +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x77) +# ifndef _STLP_INTERNAL_ALGOBASE_H +# include +# endif + +# ifndef _STLP_INTERNAL_VECTOR_H +# include +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID != 0x77) || defined (_STLP_IMPORT_VENDOR_STD) +# if defined (_STLP_HAS_INCLUDE_NEXT) +# include_next +# else +# include _STLP_NATIVE_HEADER(vector) +# endif +#endif + +#if (_STLP_OUTERMOST_HEADER_ID == 0x77) +# include +# undef _STLP_OUTERMOST_HEADER_ID +#endif + +#endif /* _STLP_VECTOR */ + +// Local Variables: +// mode:C++ +// End: + diff --git a/sdk/include/c++/typeinfo b/sdk/include/c++/typeinfo index 43dbb26e906..f9e7c32635e 100644 --- a/sdk/include/c++/typeinfo +++ b/sdk/include/c++/typeinfo @@ -1,65 +1,65 @@ -// RTTI support for C++ - -#ifndef _TYPEINFO -#define _TYPEINFO - -#include - -extern "C++" { - -class type_info { -public: - virtual ~type_info(); - - int before(const type_info &) const; - const char *name() const; - const char *raw_name() const; - - int operator==(const type_info &) const; - int operator!=(const type_info &) const; -private: - char *_name; - char _mangled[32]; - - type_info(const type_info &); - type_info &operator=(const type_info &); -}; - -class bad_cast : public exception -{ -public: - bad_cast(const char *name = "bad cast") throw() - : exception(name) { } - bad_cast(const char * const *) throw(); - bad_cast(const char * const &) throw(); - - virtual ~bad_cast() throw() { } -}; - -class bad_typeid : public exception -{ -public: - bad_typeid(const char *name = "bad typeid") throw() - : exception(name) { } - - virtual ~bad_typeid() throw() { } -}; - -class __non_rtti_object : public bad_typeid -{ -public: - __non_rtti_object(const char *name) throw() - : bad_typeid(name) { } - - virtual ~__non_rtti_object() throw() { } -}; - -namespace std -{ - using ::type_info; - using ::bad_cast; - using ::bad_typeid; -} // namespace std - -} // extern "C++" -#endif +// RTTI support for C++ + +#ifndef _TYPEINFO +#define _TYPEINFO + +#include + +extern "C++" { + +class type_info { +public: + virtual ~type_info(); + + int before(const type_info &) const; + const char *name() const; + const char *raw_name() const; + + int operator==(const type_info &) const; + int operator!=(const type_info &) const; +private: + char *_name; + char _mangled[32]; + + type_info(const type_info &); + type_info &operator=(const type_info &); +}; + +class bad_cast : public exception +{ +public: + bad_cast(const char *name = "bad cast") throw() + : exception(name) { } + bad_cast(const char * const *) throw(); + bad_cast(const char * const &) throw(); + + virtual ~bad_cast() throw() { } +}; + +class bad_typeid : public exception +{ +public: + bad_typeid(const char *name = "bad typeid") throw() + : exception(name) { } + + virtual ~bad_typeid() throw() { } +}; + +class __non_rtti_object : public bad_typeid +{ +public: + __non_rtti_object(const char *name) throw() + : bad_typeid(name) { } + + virtual ~__non_rtti_object() throw() { } +}; + +namespace std +{ + using ::type_info; + using ::bad_cast; + using ::bad_typeid; +} // namespace std + +} // extern "C++" +#endif diff --git a/sdk/include/psdk/access.idl b/sdk/include/psdk/access.idl index 569218bbf64..e7beb99a2c8 100644 --- a/sdk/include/psdk/access.idl +++ b/sdk/include/psdk/access.idl @@ -1,79 +1,79 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a8c-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IAccessor : IUnknown -{ - - typedef DWORD DBACCESSORFLAGS; - - typedef DWORD DBBINDSTATUS; - - [local] - HRESULT AddRefAccessor([in] HACCESSOR hAccessor, - [in, out, unique, annotation("__out_opt")] DBREFCOUNT *pcRefCount); - - [call_as(AddRefAccessor)] - HRESULT RemoteAddRefAccessor([in] HACCESSOR hAccessor, - [in, out, unique] DBREFCOUNT *pcRefCount, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT CreateAccessor([in] DBACCESSORFLAGS dwAccessorFlags, - [in] DBCOUNTITEM cBindings, - [in, size_is(cBindings), annotation("__in_ecount(cBindings)")] const DBBINDING rgBindings[], - [in] DBLENGTH cbRowSize, - [out, annotation("__out")] HACCESSOR *phAccessor, - [out, size_is(cBindings), annotation("__out_ecount_opt(cBindings)")] DBBINDSTATUS rgStatus[]); - - [call_as(CreateAccessor)] - HRESULT RemoteCreateAccessor([in] DBACCESSORFLAGS dwAccessorFlags, - [in] DBCOUNTITEM cBindings, - [in, unique, size_is((ULONG)cBindings)] DBBINDING *rgBindings, - [in] DBLENGTH cbRowSize, - [out] HACCESSOR *phAccessor, - [in, out, unique, size_is((ULONG)cBindings)] DBBINDSTATUS *rgStatus, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT GetBindings([in] HACCESSOR hAccessor, - [out, annotation("__out")] DBACCESSORFLAGS *pdwAccessorFlags, - [in, out, annotation("__out_opt")] DBCOUNTITEM *pcBindings, - [out, size_is(,*pcBindings), annotation("__deref_out_ecount_opt(*pcBindings)")] DBBINDING **prgBindings); - - [call_as(GetBindings)] - HRESULT RemoteGetBindings([in] HACCESSOR hAccessor, - [out] DBACCESSORFLAGS *pdwAccessorFlags, - [in, out] DBCOUNTITEM *pcBindings, - [out, size_is(,(ULONG)*pcBindings)] DBBINDING **prgBindings, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT ReleaseAccessor([in] HACCESSOR hAccessor, - [in, out, unique, annotation("__out_opt")] DBREFCOUNT *pcRefCount); - - [call_as(ReleaseAccessor)] - HRESULT RemoteReleaseAccessor([in] HACCESSOR hAccessor, - [in, out, unique] DBREFCOUNT *pcRefCount, - [out] IErrorInfo **ppErrorInfoRem); - -}; +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a8c-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IAccessor : IUnknown +{ + + typedef DWORD DBACCESSORFLAGS; + + typedef DWORD DBBINDSTATUS; + + [local] + HRESULT AddRefAccessor([in] HACCESSOR hAccessor, + [in, out, unique, annotation("__out_opt")] DBREFCOUNT *pcRefCount); + + [call_as(AddRefAccessor)] + HRESULT RemoteAddRefAccessor([in] HACCESSOR hAccessor, + [in, out, unique] DBREFCOUNT *pcRefCount, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT CreateAccessor([in] DBACCESSORFLAGS dwAccessorFlags, + [in] DBCOUNTITEM cBindings, + [in, size_is(cBindings), annotation("__in_ecount(cBindings)")] const DBBINDING rgBindings[], + [in] DBLENGTH cbRowSize, + [out, annotation("__out")] HACCESSOR *phAccessor, + [out, size_is(cBindings), annotation("__out_ecount_opt(cBindings)")] DBBINDSTATUS rgStatus[]); + + [call_as(CreateAccessor)] + HRESULT RemoteCreateAccessor([in] DBACCESSORFLAGS dwAccessorFlags, + [in] DBCOUNTITEM cBindings, + [in, unique, size_is((ULONG)cBindings)] DBBINDING *rgBindings, + [in] DBLENGTH cbRowSize, + [out] HACCESSOR *phAccessor, + [in, out, unique, size_is((ULONG)cBindings)] DBBINDSTATUS *rgStatus, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT GetBindings([in] HACCESSOR hAccessor, + [out, annotation("__out")] DBACCESSORFLAGS *pdwAccessorFlags, + [in, out, annotation("__out_opt")] DBCOUNTITEM *pcBindings, + [out, size_is(,*pcBindings), annotation("__deref_out_ecount_opt(*pcBindings)")] DBBINDING **prgBindings); + + [call_as(GetBindings)] + HRESULT RemoteGetBindings([in] HACCESSOR hAccessor, + [out] DBACCESSORFLAGS *pdwAccessorFlags, + [in, out] DBCOUNTITEM *pcBindings, + [out, size_is(,(ULONG)*pcBindings)] DBBINDING **prgBindings, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT ReleaseAccessor([in] HACCESSOR hAccessor, + [in, out, unique, annotation("__out_opt")] DBREFCOUNT *pcRefCount); + + [call_as(ReleaseAccessor)] + HRESULT RemoteReleaseAccessor([in] HACCESSOR hAccessor, + [in, out, unique] DBREFCOUNT *pcRefCount, + [out] IErrorInfo **ppErrorInfoRem); + +}; diff --git a/sdk/include/psdk/asynot.idl b/sdk/include/psdk/asynot.idl index b745bd9c796..2f52713a49c 100644 --- a/sdk/include/psdk/asynot.idl +++ b/sdk/include/psdk/asynot.idl @@ -1,59 +1,59 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a96-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IDBAsynchNotify : IUnknown -{ - [local] - HRESULT OnLowResource([in] DB_DWRESERVE dwReserved); - - [call_as(OnLowResource)] - HRESULT RemoteOnLowResource([in] DB_DWRESERVE dwReserved); - - [local] - HRESULT OnProgress([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [in] DBCOUNTITEM ulProgress, - [in] DBCOUNTITEM ulProgressMax, - [in] DBASYNCHPHASE eAsynchPhase, - [in, annotation("__in_opt")] LPOLESTR pwszStatusText); - - [call_as(OnProgress)] - HRESULT RemoteOnProgress([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [in] DBCOUNTITEM ulProgress, - [in] DBCOUNTITEM ulProgressMax, - [in] DBASYNCHPHASE eAsynchPhase, - [in, unique, string] LPOLESTR pwszStatusText); - - [local] - HRESULT OnStop([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [in] HRESULT hrStatus, - [in, annotation("__in_opt")] LPOLESTR pwszStatusText); - - [call_as(OnStop)] - HRESULT RemoteOnStop([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [in] HRESULT hrStatus, - [in, unique, string] LPOLESTR pwszStatusText); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a96-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IDBAsynchNotify : IUnknown +{ + [local] + HRESULT OnLowResource([in] DB_DWRESERVE dwReserved); + + [call_as(OnLowResource)] + HRESULT RemoteOnLowResource([in] DB_DWRESERVE dwReserved); + + [local] + HRESULT OnProgress([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [in] DBCOUNTITEM ulProgress, + [in] DBCOUNTITEM ulProgressMax, + [in] DBASYNCHPHASE eAsynchPhase, + [in, annotation("__in_opt")] LPOLESTR pwszStatusText); + + [call_as(OnProgress)] + HRESULT RemoteOnProgress([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [in] DBCOUNTITEM ulProgress, + [in] DBCOUNTITEM ulProgressMax, + [in] DBASYNCHPHASE eAsynchPhase, + [in, unique, string] LPOLESTR pwszStatusText); + + [local] + HRESULT OnStop([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [in] HRESULT hrStatus, + [in, annotation("__in_opt")] LPOLESTR pwszStatusText); + + [call_as(OnStop)] + HRESULT RemoteOnStop([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [in] HRESULT hrStatus, + [in, unique, string] LPOLESTR pwszStatusText); +} diff --git a/sdk/include/psdk/asysta.idl b/sdk/include/psdk/asysta.idl index 40bca846530..e3e009e3b80 100644 --- a/sdk/include/psdk/asysta.idl +++ b/sdk/include/psdk/asysta.idl @@ -1,51 +1,51 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a95-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IDBAsynchStatus : IUnknown -{ - [local] - HRESULT Abort([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation); - - [call_as(Abort)] - HRESULT RemoteAbort([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT GetStatus([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [out, annotation("__out_opt")] DBCOUNTITEM *pulProgress, - [out, annotation("__out_opt")] DBCOUNTITEM *pulProgressMax, - [out, annotation("__out")] DBASYNCHPHASE *peAsynchPhase, - [out, annotation("__deref_opt_inout_opt")] LPOLESTR *ppwszStatusText); - - [call_as(GetStatus)] - HRESULT RemoteGetStatus([in] HCHAPTER hChapter, - [in] DBASYNCHOP eOperation, - [in, out, unique] DBCOUNTITEM *pulProgress, - [in, out, unique] DBCOUNTITEM *pulProgressMax, - [in, out, unique] DBASYNCHPHASE *peAsynchPhase, - [in, out, unique] LPOLESTR *ppwszStatusText, - [out] IErrorInfo **ppErrorInfoRem); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a95-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IDBAsynchStatus : IUnknown +{ + [local] + HRESULT Abort([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation); + + [call_as(Abort)] + HRESULT RemoteAbort([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT GetStatus([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [out, annotation("__out_opt")] DBCOUNTITEM *pulProgress, + [out, annotation("__out_opt")] DBCOUNTITEM *pulProgressMax, + [out, annotation("__out")] DBASYNCHPHASE *peAsynchPhase, + [out, annotation("__deref_opt_inout_opt")] LPOLESTR *ppwszStatusText); + + [call_as(GetStatus)] + HRESULT RemoteGetStatus([in] HCHAPTER hChapter, + [in] DBASYNCHOP eOperation, + [in, out, unique] DBCOUNTITEM *pulProgress, + [in, out, unique] DBCOUNTITEM *pulProgressMax, + [in, out, unique] DBASYNCHPHASE *peAsynchPhase, + [in, out, unique] LPOLESTR *ppwszStatusText, + [out] IErrorInfo **ppErrorInfoRem); +} diff --git a/sdk/include/psdk/bdaiface.idl b/sdk/include/psdk/bdaiface.idl index 712015c9bbb..930e4c3f36e 100644 --- a/sdk/include/psdk/bdaiface.idl +++ b/sdk/include/psdk/bdaiface.idl @@ -1,607 +1,607 @@ -#ifndef DO_NO_IMPORTS -import "unknwn.idl"; -import "strmif.idl"; -import "bdatypes.h"; -#endif - -/************************************************************ - * interface IBDA_NetworkProvider - */ -[ - object, - uuid(fd501041-8ebe-11ce-8183-00aa00577da2), - pointer_default(unique) -] -interface IBDA_NetworkProvider : IUnknown -{ - HRESULT PutSignalSource( - [in] ULONG ulSignalSource); - - HRESULT GetSignalSource( - [in, out] ULONG * pulSignalSource); - - HRESULT GetNetworkType( - [in, out] GUID * pguidNetworkType); - - HRESULT PutTuningSpace( - [in] REFGUID guidTuningSpace); - - HRESULT GetTuningSpace( - [in, out] GUID * pguidTuingSpace); - - HRESULT RegisterDeviceFilter( - [in] IUnknown * pUnkFilterControl, - [in, out] ULONG * ppvRegisitrationContext); - - HRESULT UnRegisterDeviceFilter( - [in] ULONG pvRegistrationContext); -} - - -/************************************************************ - * interface IBDA_EthernetFilter - */ -[ - object, - uuid(71985F43-1CA1-11d3-9CC8-00C04F7971E0), - pointer_default(unique) -] -interface IBDA_EthernetFilter : IUnknown -{ - HRESULT GetMulticastListSize( - [in, out] ULONG * pulcbAddresses); - - HRESULT PutMulticastList( - [in] ULONG ulcbAddresses, - [in] BYTE * pAddressList); - - HRESULT GetMulticastList( - [in, out] ULONG * pulcbAddresses, - [out] BYTE * pAddressList); - - HRESULT PutMulticastMode( - [in] ULONG ulModeMask); - - HRESULT GetMulticastMode( - [out] ULONG * pulModeMask); - -} - -/************************************************************ - * interface IBDA_IPV4Filter - */ -[ - object, - uuid(71985F44-1CA1-11d3-9CC8-00C04F7971E0), - pointer_default(unique) -] - -interface IBDA_IPV4Filter : IUnknown -{ - HRESULT GetMulticastListSize( - [in, out] ULONG * pulcbAddresses); - - HRESULT PutMulticastList( - [in] ULONG ulcbAddresses, - [in] BYTE * pAddressList); - - HRESULT GetMulticastList( - [in, out] ULONG * pulcbAddresses, - [out] BYTE * pAddressList); - - HRESULT PutMulticastMode( - [in] ULONG ulModeMask); - - HRESULT GetMulticastMode( - [out] ULONG * pulModeMask); -} - -/************************************************************ - * interface IBDA_IPV6Filter - */ - -[ - object, - uuid(E1785A74-2A23-4fb3-9245-A8F88017EF33), - pointer_default(unique) -] -interface IBDA_IPV6Filter : IUnknown -{ - - HRESULT GetMulticastListSize( - [in, out] ULONG * pulcbAddresses); - - HRESULT PutMulticastList( - [in] ULONG ulcbAddresses, - [in] BYTE * pAddressList); - - HRESULT GetMulticastList( - [in, out] ULONG * pulcbAddresses, - [out] BYTE * pAddressList); - - HRESULT PutMulticastMode( - [in] ULONG ulModeMask); - - HRESULT GetMulticastMode( - [out] ULONG * pulModeMask); -} - -/************************************************************ - * interface IBDA_DeviceControl - */ - -[ - object, - uuid(FD0A5AF3-B41D-11d2-9C95-00C04F7971E0), - pointer_default(unique) -] -interface IBDA_DeviceControl : IUnknown -{ - HRESULT StartChanges(void); - HRESULT CheckChanges(void); - HRESULT CommitChanges(void); - HRESULT GetChangeState( - [in, out] ULONG * pState); -} - -/************************************************************ - * interface IBDA_PinControl - */ -[ - object, - uuid(0DED49D5-A8B7-4d5d-97A1-12B0C195874D), - pointer_default(unique) -] -interface IBDA_PinControl : IUnknown -{ - HRESULT GetPinID( - [in, out] ULONG * pulPinID); - - HRESULT GetPinType( - [in, out] ULONG * pulPinType); - - HRESULT RegistrationContext( - [in, out] ULONG * pulRegistrationCtx); -} - -/************************************************************ - * interface IBDA_SignalProperties - */ -[ - object, - uuid(D2F1644B-B409-11d2-BC69-00A0C9EE9E16), - pointer_default(unique) -] -interface IBDA_SignalProperties : IUnknown -{ - HRESULT PutNetworkType( - [in] REFGUID guidNetworkType); - - HRESULT GetNetworkType( - [in, out] GUID * pguidNetworkType); - - HRESULT PutSignalSource( - [in] ULONG ulSignalSource); - - HRESULT GetSignalSource( - [in, out] ULONG * pulSignalSource); - - HRESULT PutTuningSpace( - [in] REFGUID guidTuningSpace); - - HRESULT GetTuningSpace( - [in, out] GUID * pguidTuingSpace); -} - - -/************************************************************ - * interface IBDA_SignalStatistics - */ -[ - object, - uuid(1347D106-CF3A-428a-A5CB-AC0D9A2A4338), - pointer_default(unique) -] -interface IBDA_SignalStatistics : IUnknown -{ - HRESULT put_SignalStrength( - [in] LONG lDbStrength); - - HRESULT get_SignalStrength( - [in, out] LONG * plDbStrength); - - HRESULT put_SignalQuality( - [in] LONG lPercentQuality); - - HRESULT get_SignalQuality( - [in, out] LONG * plPercentQuality); - - HRESULT put_SignalPresent( - [in] BOOLEAN fPresent); - - HRESULT get_SignalPresent( - [in, out] BOOLEAN * pfPresent); - - HRESULT put_SignalLocked( - [in] BOOLEAN fLocked); - - HRESULT get_SignalLocked( - [in, out] BOOLEAN * pfLocked); - - HRESULT put_SampleTime( - [in] LONG lmsSampleTime); - - HRESULT get_SampleTime( - [in, out] LONG * plmsSampleTime); -} - -/************************************************************ - * interface IBDA_Topology - */ -[ - object, - uuid(79B56888-7FEA-4690-B45D-38FD3C7849BE), - pointer_default(unique) -] -interface IBDA_Topology : IUnknown -{ - HRESULT GetNodeTypes( - [in, out] ULONG * pulcNodeTypes, - [in] ULONG ulcNodeTypesMax, - [in, out] ULONG * rgulNodeTypes); - - HRESULT GetNodeDescriptors( - [in, out] ULONG * ulcNodeDescriptors, - [in] ULONG ulcNodeDescriptorsMax, - [in, out] BDANODE_DESCRIPTOR * rgNodeDescriptors); - - HRESULT GetNodeInterfaces( - [in] ULONG ulNodeType, - [in, out] ULONG * pulcInterfaces, - [in] ULONG ulcInterfacesMax, - [in, out] GUID * rgguidInterfaces); - - HRESULT GetPinTypes( - [in, out] ULONG * pulcPinTypes, - [in] ULONG ulcPinTypesMax, - [in, out] ULONG * rgulPinTypes); - - HRESULT GetTemplateConnections( - [in, out] ULONG * pulcConnections, - [in] ULONG ulcConnectionsMax, - [in, out, ] BDA_TEMPLATE_CONNECTION * rgConnections); - - HRESULT CreatePin( - [in] ULONG ulPinType, - [in, out] ULONG * pulPinId); - - HRESULT DeletePin( - [in] ULONG ulPinId); - - HRESULT SetMediaType( - [in] ULONG ulPinId, - [in] AM_MEDIA_TYPE * pMediaType); - - HRESULT SetMedium( - [in] ULONG ulPinId, - [in] REGPINMEDIUM * pMedium); - - HRESULT CreateTopology( - [in] ULONG ulInputPinId, - [in] ULONG ulOutputPinId); - - HRESULT GetControlNode( - [in] ULONG ulInputPinId, - [in] ULONG ulOutputPinId, - [in] ULONG ulNodeType, - [in, out] IUnknown ** ppControlNode); -} - -/************************************************************ - * interface IBDA_VoidTransform - */ -[ - object, - uuid(71985F46-1CA1-11d3-9CC8-00C04F7971E0), - pointer_default(unique) -] -interface IBDA_VoidTransform : IUnknown -{ - HRESULT Start(); - - HRESULT Stop(); -} - -/************************************************************ - * interface IBDA_NullTransform - */ - -[ - object, - uuid(DDF15B0D-BD25-11d2-9CA0-00C04F7971E0), - pointer_default(unique) -] -interface IBDA_NullTransform : IUnknown -{ - HRESULT Start(); - - HRESULT Stop(); -} - -/************************************************************ - * interface IBDA_FrequencyFilter - */ - -[ - object, - uuid(71985F47-1CA1-11d3-9CC8-00C04F7971E0), - pointer_default(unique) -] -interface IBDA_FrequencyFilter : IUnknown -{ - HRESULT put_Autotune( - [in] ULONG ulTransponder); - - HRESULT get_Autotune( - [in, out] ULONG * pulTransponder); - - HRESULT put_Frequency( - [in] ULONG ulFrequency); - - HRESULT get_Frequency( - [in, out] ULONG * pulFrequency); - - HRESULT put_Polarity( - [in] Polarisation Polarity); - - HRESULT get_Polarity( - [in, out] Polarisation * pPolarity); - - HRESULT put_Range( - [in] ULONG ulRange); - - HRESULT get_Range( - [in, out] ULONG * pulRange); - - HRESULT put_Bandwidth( - [in] ULONG ulBandwidth); - - HRESULT get_Bandwidth( - [in, out] ULONG * pulBandwidth); - - HRESULT put_FrequencyMultiplier( - [in] ULONG ulMultiplier); - - HRESULT get_FrequencyMultiplier( - [in, out] ULONG * pulMultiplier); -} - -/************************************************************ - * interface IBDA_LNBInfo - */ -[ - object, - uuid(992CF102-49F9-4719-A664-C4F23E2408F4), - pointer_default(unique) -] -interface IBDA_LNBInfo : IUnknown -{ - HRESULT put_LocalOscilatorFrequencyLowBand( - [in] ULONG ulLOFLow); - - HRESULT get_LocalOscilatorFrequencyLowBand( - [in, out] ULONG * pulLOFLow); - - HRESULT put_LocalOscilatorFrequencyHighBand( - [in] ULONG ulLOFHigh); - - HRESULT get_LocalOscilatorFrequencyHighBand( - [in, out] ULONG * pulLOFHigh); - - HRESULT put_HighLowSwitchFrequency( - [in] ULONG ulSwitchFrequency); - - HRESULT get_HighLowSwitchFrequency( - [in, out] ULONG * pulSwitchFrequency); -} - -/************************************************************ - * interface IBDA_AutoDemodulate - */ - -[ - object, - uuid(DDF15B12-BD25-11d2-9CA0-00C04F7971E0), - pointer_default(unique) -] -interface IBDA_AutoDemodulate : IUnknown -{ - HRESULT put_AutoDemodulate(); -} - -/************************************************************ - * interface IBDA_DigitalDemodulator - */ - -[ - object, - uuid(EF30F379-985B-4d10-B640-A79D5E04E1E0), - pointer_default(unique) -] -interface IBDA_DigitalDemodulator : IUnknown -{ - HRESULT put_ModulationType( - [in] ModulationType * pModulationType); - - HRESULT get_ModulationType( - [in, out] ModulationType * pModulationType); - - HRESULT put_InnerFECMethod( - [in] FECMethod * pFECMethod); - - HRESULT get_InnerFECMethod( - [in, out] FECMethod * pFECMethod); - - HRESULT put_InnerFECRate( - [in] BinaryConvolutionCodeRate * pFECRate); - - HRESULT get_InnerFECRate( - [in, out] BinaryConvolutionCodeRate * pFECRate); - - HRESULT put_OuterFECMethod( - [in] FECMethod * pFECMethod); - - HRESULT get_OuterFECMethod( - [in, out] FECMethod * pFECMethod); - - HRESULT put_OuterFECRate( - [in] BinaryConvolutionCodeRate * pFECRate); - - HRESULT get_OuterFECRate( - [in, out] BinaryConvolutionCodeRate * pFECRate); - - HRESULT put_SymbolRate( - [in] ULONG * pSymbolRate); - - HRESULT get_SymbolRate( - [in, out] ULONG * pSymbolRate); - - HRESULT put_SpectralInversion( - [in] SpectralInversion * pSpectralInversion); - - HRESULT get_SpectralInversion( - [in, out] SpectralInversion * pSpectralInversion); -} - -typedef enum -{ - KSPROPERTY_IPSINK_MULTICASTLIST, - KSPROPERTY_IPSINK_ADAPTER_DESCRIPTION, - KSPROPERTY_IPSINK_ADAPTER_ADDRESS -}KSPROPERTY_IPSINK; - -/************************************************************ - * interface IBDA_IPSinkControl - */ - -[ - object, - uuid(3F4DC8E2-4050-11d3-8F4B-00C04F7971E2), - pointer_default(unique), -] -interface IBDA_IPSinkControl : IUnknown -{ - HRESULT GetMulticastList( - [in, out] unsigned long *pulcbSize, - [in, out] BYTE **pbBuffer); - - HRESULT GetAdapterIPAddress( - [in, out] unsigned long *pulcbSize, - [in, out] BYTE ** pbBuffer); - -} - -/************************************************************ - * interface IBDA_IPSinkInfo - */ -[ - object, - uuid(A750108F-492E-4d51-95F7-649B23FF7AD7), - pointer_default(unique) -] -interface IBDA_IPSinkInfo : IUnknown -{ - HRESULT get_MulticastList( - [in, out] ULONG * pulcbAddresses, - [out] BYTE **ppbAddressList); - - HRESULT get_AdapterIPAddress( - [out] BSTR *pbstrBuffer); - - HRESULT get_AdapterDescription( - [out] BSTR *pbstrBuffer); -} - -/************************************************************ - * interface IEnumPIDMap - */ - -[ - object, - uuid(afb6c2a2-2c41-11d3-8a60-0000f81e0e4a), - pointer_default(unique) -] -interface IEnumPIDMap : IUnknown -{ - HRESULT Next( - [in] ULONG cRequest, - [in, out] PID_MAP * pPIDMap, - [out] ULONG * pcReceived); - - HRESULT Skip( - [in] ULONG cRecords); - - HRESULT Reset(); - - HRESULT Clone( - [out] IEnumPIDMap ** ppIEnumPIDMap); -} ; - -/************************************************************ - * interface IMPEG2PIDMap - */ - -[ - object, - uuid(afb6c2a1-2c41-11d3-8a60-0000f81e0e4a), - pointer_default(unique) -] -interface IMPEG2PIDMap : IUnknown -{ - HRESULT MapPID( - [in] ULONG culPID, - [in] ULONG * pulPID, - [in] MEDIA_SAMPLE_CONTENT MediaSampleContent); - - HRESULT UnmapPID( - [in] ULONG culPID, - [in] ULONG * pulPID); - - HRESULT EnumPIDMap( - [out] IEnumPIDMap ** pIEnumPIDMap); -} ; - -/************************************************************ - * interface IFrequencyMap - */ - - [ - object, - uuid(06FB45C1-693C-4ea7-B79F-7A6A54D8DEF2), - pointer_default(unique), - ] - - interface IFrequencyMap : IUnknown - { - HRESULT get_FrequencyMapping( - [out] ULONG* ulCount, - [out] ULONG** ppulList); - - HRESULT put_FrequencyMapping( - [in] ULONG ulCount, - [in] ULONG *pList); - - HRESULT get_CountryCode([out] ULONG *pulCountryCode); - - HRESULT put_CountryCode( - [in] ULONG ulCountryCode); - - HRESULT get_DefaultFrequencyMapping( - [in] ULONG ulCountryCode, - [out] ULONG* pulCount, - [out] ULONG** ppulList); - - HRESULT get_CountryCodeList( - [out] ULONG* pulCount, - [out] ULONG** ppulList); - }; +#ifndef DO_NO_IMPORTS +import "unknwn.idl"; +import "strmif.idl"; +import "bdatypes.h"; +#endif + +/************************************************************ + * interface IBDA_NetworkProvider + */ +[ + object, + uuid(fd501041-8ebe-11ce-8183-00aa00577da2), + pointer_default(unique) +] +interface IBDA_NetworkProvider : IUnknown +{ + HRESULT PutSignalSource( + [in] ULONG ulSignalSource); + + HRESULT GetSignalSource( + [in, out] ULONG * pulSignalSource); + + HRESULT GetNetworkType( + [in, out] GUID * pguidNetworkType); + + HRESULT PutTuningSpace( + [in] REFGUID guidTuningSpace); + + HRESULT GetTuningSpace( + [in, out] GUID * pguidTuingSpace); + + HRESULT RegisterDeviceFilter( + [in] IUnknown * pUnkFilterControl, + [in, out] ULONG * ppvRegisitrationContext); + + HRESULT UnRegisterDeviceFilter( + [in] ULONG pvRegistrationContext); +} + + +/************************************************************ + * interface IBDA_EthernetFilter + */ +[ + object, + uuid(71985F43-1CA1-11d3-9CC8-00C04F7971E0), + pointer_default(unique) +] +interface IBDA_EthernetFilter : IUnknown +{ + HRESULT GetMulticastListSize( + [in, out] ULONG * pulcbAddresses); + + HRESULT PutMulticastList( + [in] ULONG ulcbAddresses, + [in] BYTE * pAddressList); + + HRESULT GetMulticastList( + [in, out] ULONG * pulcbAddresses, + [out] BYTE * pAddressList); + + HRESULT PutMulticastMode( + [in] ULONG ulModeMask); + + HRESULT GetMulticastMode( + [out] ULONG * pulModeMask); + +} + +/************************************************************ + * interface IBDA_IPV4Filter + */ +[ + object, + uuid(71985F44-1CA1-11d3-9CC8-00C04F7971E0), + pointer_default(unique) +] + +interface IBDA_IPV4Filter : IUnknown +{ + HRESULT GetMulticastListSize( + [in, out] ULONG * pulcbAddresses); + + HRESULT PutMulticastList( + [in] ULONG ulcbAddresses, + [in] BYTE * pAddressList); + + HRESULT GetMulticastList( + [in, out] ULONG * pulcbAddresses, + [out] BYTE * pAddressList); + + HRESULT PutMulticastMode( + [in] ULONG ulModeMask); + + HRESULT GetMulticastMode( + [out] ULONG * pulModeMask); +} + +/************************************************************ + * interface IBDA_IPV6Filter + */ + +[ + object, + uuid(E1785A74-2A23-4fb3-9245-A8F88017EF33), + pointer_default(unique) +] +interface IBDA_IPV6Filter : IUnknown +{ + + HRESULT GetMulticastListSize( + [in, out] ULONG * pulcbAddresses); + + HRESULT PutMulticastList( + [in] ULONG ulcbAddresses, + [in] BYTE * pAddressList); + + HRESULT GetMulticastList( + [in, out] ULONG * pulcbAddresses, + [out] BYTE * pAddressList); + + HRESULT PutMulticastMode( + [in] ULONG ulModeMask); + + HRESULT GetMulticastMode( + [out] ULONG * pulModeMask); +} + +/************************************************************ + * interface IBDA_DeviceControl + */ + +[ + object, + uuid(FD0A5AF3-B41D-11d2-9C95-00C04F7971E0), + pointer_default(unique) +] +interface IBDA_DeviceControl : IUnknown +{ + HRESULT StartChanges(void); + HRESULT CheckChanges(void); + HRESULT CommitChanges(void); + HRESULT GetChangeState( + [in, out] ULONG * pState); +} + +/************************************************************ + * interface IBDA_PinControl + */ +[ + object, + uuid(0DED49D5-A8B7-4d5d-97A1-12B0C195874D), + pointer_default(unique) +] +interface IBDA_PinControl : IUnknown +{ + HRESULT GetPinID( + [in, out] ULONG * pulPinID); + + HRESULT GetPinType( + [in, out] ULONG * pulPinType); + + HRESULT RegistrationContext( + [in, out] ULONG * pulRegistrationCtx); +} + +/************************************************************ + * interface IBDA_SignalProperties + */ +[ + object, + uuid(D2F1644B-B409-11d2-BC69-00A0C9EE9E16), + pointer_default(unique) +] +interface IBDA_SignalProperties : IUnknown +{ + HRESULT PutNetworkType( + [in] REFGUID guidNetworkType); + + HRESULT GetNetworkType( + [in, out] GUID * pguidNetworkType); + + HRESULT PutSignalSource( + [in] ULONG ulSignalSource); + + HRESULT GetSignalSource( + [in, out] ULONG * pulSignalSource); + + HRESULT PutTuningSpace( + [in] REFGUID guidTuningSpace); + + HRESULT GetTuningSpace( + [in, out] GUID * pguidTuingSpace); +} + + +/************************************************************ + * interface IBDA_SignalStatistics + */ +[ + object, + uuid(1347D106-CF3A-428a-A5CB-AC0D9A2A4338), + pointer_default(unique) +] +interface IBDA_SignalStatistics : IUnknown +{ + HRESULT put_SignalStrength( + [in] LONG lDbStrength); + + HRESULT get_SignalStrength( + [in, out] LONG * plDbStrength); + + HRESULT put_SignalQuality( + [in] LONG lPercentQuality); + + HRESULT get_SignalQuality( + [in, out] LONG * plPercentQuality); + + HRESULT put_SignalPresent( + [in] BOOLEAN fPresent); + + HRESULT get_SignalPresent( + [in, out] BOOLEAN * pfPresent); + + HRESULT put_SignalLocked( + [in] BOOLEAN fLocked); + + HRESULT get_SignalLocked( + [in, out] BOOLEAN * pfLocked); + + HRESULT put_SampleTime( + [in] LONG lmsSampleTime); + + HRESULT get_SampleTime( + [in, out] LONG * plmsSampleTime); +} + +/************************************************************ + * interface IBDA_Topology + */ +[ + object, + uuid(79B56888-7FEA-4690-B45D-38FD3C7849BE), + pointer_default(unique) +] +interface IBDA_Topology : IUnknown +{ + HRESULT GetNodeTypes( + [in, out] ULONG * pulcNodeTypes, + [in] ULONG ulcNodeTypesMax, + [in, out] ULONG * rgulNodeTypes); + + HRESULT GetNodeDescriptors( + [in, out] ULONG * ulcNodeDescriptors, + [in] ULONG ulcNodeDescriptorsMax, + [in, out] BDANODE_DESCRIPTOR * rgNodeDescriptors); + + HRESULT GetNodeInterfaces( + [in] ULONG ulNodeType, + [in, out] ULONG * pulcInterfaces, + [in] ULONG ulcInterfacesMax, + [in, out] GUID * rgguidInterfaces); + + HRESULT GetPinTypes( + [in, out] ULONG * pulcPinTypes, + [in] ULONG ulcPinTypesMax, + [in, out] ULONG * rgulPinTypes); + + HRESULT GetTemplateConnections( + [in, out] ULONG * pulcConnections, + [in] ULONG ulcConnectionsMax, + [in, out, ] BDA_TEMPLATE_CONNECTION * rgConnections); + + HRESULT CreatePin( + [in] ULONG ulPinType, + [in, out] ULONG * pulPinId); + + HRESULT DeletePin( + [in] ULONG ulPinId); + + HRESULT SetMediaType( + [in] ULONG ulPinId, + [in] AM_MEDIA_TYPE * pMediaType); + + HRESULT SetMedium( + [in] ULONG ulPinId, + [in] REGPINMEDIUM * pMedium); + + HRESULT CreateTopology( + [in] ULONG ulInputPinId, + [in] ULONG ulOutputPinId); + + HRESULT GetControlNode( + [in] ULONG ulInputPinId, + [in] ULONG ulOutputPinId, + [in] ULONG ulNodeType, + [in, out] IUnknown ** ppControlNode); +} + +/************************************************************ + * interface IBDA_VoidTransform + */ +[ + object, + uuid(71985F46-1CA1-11d3-9CC8-00C04F7971E0), + pointer_default(unique) +] +interface IBDA_VoidTransform : IUnknown +{ + HRESULT Start(); + + HRESULT Stop(); +} + +/************************************************************ + * interface IBDA_NullTransform + */ + +[ + object, + uuid(DDF15B0D-BD25-11d2-9CA0-00C04F7971E0), + pointer_default(unique) +] +interface IBDA_NullTransform : IUnknown +{ + HRESULT Start(); + + HRESULT Stop(); +} + +/************************************************************ + * interface IBDA_FrequencyFilter + */ + +[ + object, + uuid(71985F47-1CA1-11d3-9CC8-00C04F7971E0), + pointer_default(unique) +] +interface IBDA_FrequencyFilter : IUnknown +{ + HRESULT put_Autotune( + [in] ULONG ulTransponder); + + HRESULT get_Autotune( + [in, out] ULONG * pulTransponder); + + HRESULT put_Frequency( + [in] ULONG ulFrequency); + + HRESULT get_Frequency( + [in, out] ULONG * pulFrequency); + + HRESULT put_Polarity( + [in] Polarisation Polarity); + + HRESULT get_Polarity( + [in, out] Polarisation * pPolarity); + + HRESULT put_Range( + [in] ULONG ulRange); + + HRESULT get_Range( + [in, out] ULONG * pulRange); + + HRESULT put_Bandwidth( + [in] ULONG ulBandwidth); + + HRESULT get_Bandwidth( + [in, out] ULONG * pulBandwidth); + + HRESULT put_FrequencyMultiplier( + [in] ULONG ulMultiplier); + + HRESULT get_FrequencyMultiplier( + [in, out] ULONG * pulMultiplier); +} + +/************************************************************ + * interface IBDA_LNBInfo + */ +[ + object, + uuid(992CF102-49F9-4719-A664-C4F23E2408F4), + pointer_default(unique) +] +interface IBDA_LNBInfo : IUnknown +{ + HRESULT put_LocalOscilatorFrequencyLowBand( + [in] ULONG ulLOFLow); + + HRESULT get_LocalOscilatorFrequencyLowBand( + [in, out] ULONG * pulLOFLow); + + HRESULT put_LocalOscilatorFrequencyHighBand( + [in] ULONG ulLOFHigh); + + HRESULT get_LocalOscilatorFrequencyHighBand( + [in, out] ULONG * pulLOFHigh); + + HRESULT put_HighLowSwitchFrequency( + [in] ULONG ulSwitchFrequency); + + HRESULT get_HighLowSwitchFrequency( + [in, out] ULONG * pulSwitchFrequency); +} + +/************************************************************ + * interface IBDA_AutoDemodulate + */ + +[ + object, + uuid(DDF15B12-BD25-11d2-9CA0-00C04F7971E0), + pointer_default(unique) +] +interface IBDA_AutoDemodulate : IUnknown +{ + HRESULT put_AutoDemodulate(); +} + +/************************************************************ + * interface IBDA_DigitalDemodulator + */ + +[ + object, + uuid(EF30F379-985B-4d10-B640-A79D5E04E1E0), + pointer_default(unique) +] +interface IBDA_DigitalDemodulator : IUnknown +{ + HRESULT put_ModulationType( + [in] ModulationType * pModulationType); + + HRESULT get_ModulationType( + [in, out] ModulationType * pModulationType); + + HRESULT put_InnerFECMethod( + [in] FECMethod * pFECMethod); + + HRESULT get_InnerFECMethod( + [in, out] FECMethod * pFECMethod); + + HRESULT put_InnerFECRate( + [in] BinaryConvolutionCodeRate * pFECRate); + + HRESULT get_InnerFECRate( + [in, out] BinaryConvolutionCodeRate * pFECRate); + + HRESULT put_OuterFECMethod( + [in] FECMethod * pFECMethod); + + HRESULT get_OuterFECMethod( + [in, out] FECMethod * pFECMethod); + + HRESULT put_OuterFECRate( + [in] BinaryConvolutionCodeRate * pFECRate); + + HRESULT get_OuterFECRate( + [in, out] BinaryConvolutionCodeRate * pFECRate); + + HRESULT put_SymbolRate( + [in] ULONG * pSymbolRate); + + HRESULT get_SymbolRate( + [in, out] ULONG * pSymbolRate); + + HRESULT put_SpectralInversion( + [in] SpectralInversion * pSpectralInversion); + + HRESULT get_SpectralInversion( + [in, out] SpectralInversion * pSpectralInversion); +} + +typedef enum +{ + KSPROPERTY_IPSINK_MULTICASTLIST, + KSPROPERTY_IPSINK_ADAPTER_DESCRIPTION, + KSPROPERTY_IPSINK_ADAPTER_ADDRESS +}KSPROPERTY_IPSINK; + +/************************************************************ + * interface IBDA_IPSinkControl + */ + +[ + object, + uuid(3F4DC8E2-4050-11d3-8F4B-00C04F7971E2), + pointer_default(unique), +] +interface IBDA_IPSinkControl : IUnknown +{ + HRESULT GetMulticastList( + [in, out] unsigned long *pulcbSize, + [in, out] BYTE **pbBuffer); + + HRESULT GetAdapterIPAddress( + [in, out] unsigned long *pulcbSize, + [in, out] BYTE ** pbBuffer); + +} + +/************************************************************ + * interface IBDA_IPSinkInfo + */ +[ + object, + uuid(A750108F-492E-4d51-95F7-649B23FF7AD7), + pointer_default(unique) +] +interface IBDA_IPSinkInfo : IUnknown +{ + HRESULT get_MulticastList( + [in, out] ULONG * pulcbAddresses, + [out] BYTE **ppbAddressList); + + HRESULT get_AdapterIPAddress( + [out] BSTR *pbstrBuffer); + + HRESULT get_AdapterDescription( + [out] BSTR *pbstrBuffer); +} + +/************************************************************ + * interface IEnumPIDMap + */ + +[ + object, + uuid(afb6c2a2-2c41-11d3-8a60-0000f81e0e4a), + pointer_default(unique) +] +interface IEnumPIDMap : IUnknown +{ + HRESULT Next( + [in] ULONG cRequest, + [in, out] PID_MAP * pPIDMap, + [out] ULONG * pcReceived); + + HRESULT Skip( + [in] ULONG cRecords); + + HRESULT Reset(); + + HRESULT Clone( + [out] IEnumPIDMap ** ppIEnumPIDMap); +} ; + +/************************************************************ + * interface IMPEG2PIDMap + */ + +[ + object, + uuid(afb6c2a1-2c41-11d3-8a60-0000f81e0e4a), + pointer_default(unique) +] +interface IMPEG2PIDMap : IUnknown +{ + HRESULT MapPID( + [in] ULONG culPID, + [in] ULONG * pulPID, + [in] MEDIA_SAMPLE_CONTENT MediaSampleContent); + + HRESULT UnmapPID( + [in] ULONG culPID, + [in] ULONG * pulPID); + + HRESULT EnumPIDMap( + [out] IEnumPIDMap ** pIEnumPIDMap); +} ; + +/************************************************************ + * interface IFrequencyMap + */ + + [ + object, + uuid(06FB45C1-693C-4ea7-B79F-7A6A54D8DEF2), + pointer_default(unique), + ] + + interface IFrequencyMap : IUnknown + { + HRESULT get_FrequencyMapping( + [out] ULONG* ulCount, + [out] ULONG** ppulList); + + HRESULT put_FrequencyMapping( + [in] ULONG ulCount, + [in] ULONG *pList); + + HRESULT get_CountryCode([out] ULONG *pulCountryCode); + + HRESULT put_CountryCode( + [in] ULONG ulCountryCode); + + HRESULT get_DefaultFrequencyMapping( + [in] ULONG ulCountryCode, + [out] ULONG* pulCount, + [out] ULONG** ppulList); + + HRESULT get_CountryCodeList( + [out] ULONG* pulCount, + [out] ULONG** ppulList); + }; diff --git a/sdk/include/psdk/binres.idl b/sdk/include/psdk/binres.idl index f09d124fdef..3797c028820 100644 --- a/sdk/include/psdk/binres.idl +++ b/sdk/include/psdk/binres.idl @@ -1,49 +1,49 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733ab1-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IBindResource : IUnknown -{ - [local] - HRESULT Bind([in] IUnknown *pUnkOuter, - [in] LPCOLESTR pwszURL, - [in] DBBINDURLFLAG dwBindURLFlags, - [in] REFGUID rguid, - [in] REFIID riid, - [in] IAuthenticate *pAuthenticate, - [in, out, unique] DBIMPLICITSESSION *pImplSession, - [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, - [out, iid_is(riid)] IUnknown **ppUnk); - - [call_as(Bind)] - HRESULT RemoteBind([in] IUnknown *pUnkOuter, - [in] LPCOLESTR pwszURL, - [in] DBBINDURLFLAG dwBindURLFlags, - [in] REFGUID rguid, - [in] REFIID riid, - [in] IAuthenticate *pAuthenticate, - [in] IUnknown *pSessionUnkOuter, - [in, unique] IID *piid, - [in, out, unique, iid_is(piid)] IUnknown **ppSession, - [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, - [out, iid_is(riid)] IUnknown **ppUnk); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733ab1-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IBindResource : IUnknown +{ + [local] + HRESULT Bind([in] IUnknown *pUnkOuter, + [in] LPCOLESTR pwszURL, + [in] DBBINDURLFLAG dwBindURLFlags, + [in] REFGUID rguid, + [in] REFIID riid, + [in] IAuthenticate *pAuthenticate, + [in, out, unique] DBIMPLICITSESSION *pImplSession, + [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, + [out, iid_is(riid)] IUnknown **ppUnk); + + [call_as(Bind)] + HRESULT RemoteBind([in] IUnknown *pUnkOuter, + [in] LPCOLESTR pwszURL, + [in] DBBINDURLFLAG dwBindURLFlags, + [in] REFGUID rguid, + [in] REFIID riid, + [in] IAuthenticate *pAuthenticate, + [in] IUnknown *pSessionUnkOuter, + [in, unique] IID *piid, + [in, out, unique, iid_is(piid)] IUnknown **ppSession, + [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, + [out, iid_is(riid)] IUnknown **ppUnk); +} diff --git a/sdk/include/psdk/cmdbas.idl b/sdk/include/psdk/cmdbas.idl index 01be4604f38..f55db220aa7 100644 --- a/sdk/include/psdk/cmdbas.idl +++ b/sdk/include/psdk/cmdbas.idl @@ -1,62 +1,62 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a63-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface ICommand : IUnknown -{ - [local] - HRESULT Cancel(); - - [call_as(Cancel)] - HRESULT RemoteCancel([out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT Execute([in, annotation("__in_opt")] IUnknown *pUnkOuter, - [in] REFIID riid, - [in, out, annotation("__inout_opt")] DBPARAMS *pParams, - [out, annotation("__out_opt")] DBROWCOUNT *pcRowsAffected, - [out, iid_is(riid), annotation("__deref_opt_out")] IUnknown **ppRowset); - - [call_as(Execute)] - HRESULT RemoteExecute([in] IUnknown *pUnkOuter, - [in] REFIID riid, - [in] HACCESSOR hAccessor, - [in] DB_UPARAMS cParamSets, - [in, unique] GUID *pGuid, - [in] ULONG ulGuidOffset, - [in, unique] RMTPACK *pInputParams, - [in, out, unique] RMTPACK *pOutputParams, - [in] DBCOUNTITEM cBindings, - [in, unique, size_is(cBindings)] DBBINDING *rgBindings, - [in, out, unique, size_is(cBindings)] DBSTATUS *rgStatus, - [in, out, unique] DBROWCOUNT *pcRowsAffected, - [in, out, unique, iid_is(riid)] IUnknown **ppRowset); - - [local] - HRESULT GetDBSession([in] REFIID riid, - [out, iid_is(riid), annotation("__deref_out_opt")] IUnknown **ppSession); - - [call_as(GetDBSession)] - HRESULT RemoteGetDBSession([in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppSession, - [out] IErrorInfo **ppErrorInfoRem); -}; +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a63-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface ICommand : IUnknown +{ + [local] + HRESULT Cancel(); + + [call_as(Cancel)] + HRESULT RemoteCancel([out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT Execute([in, annotation("__in_opt")] IUnknown *pUnkOuter, + [in] REFIID riid, + [in, out, annotation("__inout_opt")] DBPARAMS *pParams, + [out, annotation("__out_opt")] DBROWCOUNT *pcRowsAffected, + [out, iid_is(riid), annotation("__deref_opt_out")] IUnknown **ppRowset); + + [call_as(Execute)] + HRESULT RemoteExecute([in] IUnknown *pUnkOuter, + [in] REFIID riid, + [in] HACCESSOR hAccessor, + [in] DB_UPARAMS cParamSets, + [in, unique] GUID *pGuid, + [in] ULONG ulGuidOffset, + [in, unique] RMTPACK *pInputParams, + [in, out, unique] RMTPACK *pOutputParams, + [in] DBCOUNTITEM cBindings, + [in, unique, size_is(cBindings)] DBBINDING *rgBindings, + [in, out, unique, size_is(cBindings)] DBSTATUS *rgStatus, + [in, out, unique] DBROWCOUNT *pcRowsAffected, + [in, out, unique, iid_is(riid)] IUnknown **ppRowset); + + [local] + HRESULT GetDBSession([in] REFIID riid, + [out, iid_is(riid), annotation("__deref_out_opt")] IUnknown **ppSession); + + [call_as(GetDBSession)] + HRESULT RemoteGetDBSession([in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppSession, + [out] IErrorInfo **ppErrorInfoRem); +}; diff --git a/sdk/include/psdk/cmdtxt.idl b/sdk/include/psdk/cmdtxt.idl index 32208848353..467a67c2c7c 100644 --- a/sdk/include/psdk/cmdtxt.idl +++ b/sdk/include/psdk/cmdtxt.idl @@ -1,44 +1,44 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a27-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface ICommandText : ICommand -{ - [local] - HRESULT GetCommandText([in, out /*, annotation("__inout_opt")*/] GUID *pguidDialect, - [out /*, annotation("__deref_out")*/] LPOLESTR *ppwszCommand); - - [call_as(GetCommandText)] - HRESULT RemoteGetCommandText([in, out, unique] GUID *pguidDialect, - [out] LPOLESTR *ppwszCommand, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT SetCommandText([in] REFGUID rguidDialect, - [in, unique /*, annotation("__in_z_opt")*/] LPCOLESTR pwszCommand); - - [call_as(SetCommandText)] - HRESULT RemoteSetCommandText([in] REFGUID rguidDialect, - [in, unique] LPCOLESTR pwszCommand, - [out] IErrorInfo **ppErrorInfoRem); - -}; +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a27-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface ICommandText : ICommand +{ + [local] + HRESULT GetCommandText([in, out /*, annotation("__inout_opt")*/] GUID *pguidDialect, + [out /*, annotation("__deref_out")*/] LPOLESTR *ppwszCommand); + + [call_as(GetCommandText)] + HRESULT RemoteGetCommandText([in, out, unique] GUID *pguidDialect, + [out] LPOLESTR *ppwszCommand, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT SetCommandText([in] REFGUID rguidDialect, + [in, unique /*, annotation("__in_z_opt")*/] LPCOLESTR pwszCommand); + + [call_as(SetCommandText)] + HRESULT RemoteSetCommandText([in] REFGUID rguidDialect, + [in, unique] LPCOLESTR pwszCommand, + [out] IErrorInfo **ppErrorInfoRem); + +}; diff --git a/sdk/include/psdk/crtrow.idl b/sdk/include/psdk/crtrow.idl index 7088e00e721..98c0bce8cb9 100644 --- a/sdk/include/psdk/crtrow.idl +++ b/sdk/include/psdk/crtrow.idl @@ -1,51 +1,51 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733ab2-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface ICreateRow : IUnknown -{ - [local] - HRESULT CreateRow([in, unique] IUnknown *pUnkOuter, - [in] LPCOLESTR pwszURL, - [in] DBBINDURLFLAG dwBindURLFlags, - [in] REFGUID rguid, - [in] REFIID riid, - [in, unique] IAuthenticate *pAuthenticate, - [in, out, unique] DBIMPLICITSESSION *pImplSession, - [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, - [out, annotation("__deref_opt_out_opt")] LPOLESTR *ppwszNewURL, - [out, iid_is(riid)] IUnknown **ppUnk); - - [call_as(CreateRow)] - HRESULT RemoteCreateRow([in] IUnknown *pUnkOuter, - [in] LPCOLESTR pwszURL, - [in] DBBINDURLFLAG dwBindURLFlags, - [in] REFGUID rguid, - [in] REFIID riid, - [in] IAuthenticate *pAuthenticate, - [in] IUnknown *pSessionUnkOuter, - [in, unique] IID *piid, - [in, out, unique, iid_is(piid)] IUnknown **ppSession, - [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, - [in, out, unique] LPOLESTR *ppwszNewURL, - [out, iid_is(riid)] IUnknown **ppUnk); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733ab2-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface ICreateRow : IUnknown +{ + [local] + HRESULT CreateRow([in, unique] IUnknown *pUnkOuter, + [in] LPCOLESTR pwszURL, + [in] DBBINDURLFLAG dwBindURLFlags, + [in] REFGUID rguid, + [in] REFIID riid, + [in, unique] IAuthenticate *pAuthenticate, + [in, out, unique] DBIMPLICITSESSION *pImplSession, + [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, + [out, annotation("__deref_opt_out_opt")] LPOLESTR *ppwszNewURL, + [out, iid_is(riid)] IUnknown **ppUnk); + + [call_as(CreateRow)] + HRESULT RemoteCreateRow([in] IUnknown *pUnkOuter, + [in] LPCOLESTR pwszURL, + [in] DBBINDURLFLAG dwBindURLFlags, + [in] REFGUID rguid, + [in] REFIID riid, + [in] IAuthenticate *pAuthenticate, + [in] IUnknown *pSessionUnkOuter, + [in, unique] IID *piid, + [in, out, unique, iid_is(piid)] IUnknown **ppSession, + [in, out, unique] DBBINDURLSTATUS *pdwBindStatus, + [in, out, unique] LPOLESTR *ppwszNewURL, + [out, iid_is(riid)] IUnknown **ppUnk); +} diff --git a/sdk/include/psdk/dbccmd.idl b/sdk/include/psdk/dbccmd.idl index 99274bc05ba..28763d202fc 100644 --- a/sdk/include/psdk/dbccmd.idl +++ b/sdk/include/psdk/dbccmd.idl @@ -1,36 +1,36 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a1d-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IDBCreateCommand : IUnknown -{ - [local] - HRESULT CreateCommand([in] IUnknown *pUnkOuter, - [in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppCommand); - - [call_as(CreateCommand)] - HRESULT RemoteCreateCommand([in] IUnknown *pUnkOuter, - [in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppCommand, - [out] IErrorInfo **ppErrorInfoRem); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a1d-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IDBCreateCommand : IUnknown +{ + [local] + HRESULT CreateCommand([in] IUnknown *pUnkOuter, + [in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppCommand); + + [call_as(CreateCommand)] + HRESULT RemoteCreateCommand([in] IUnknown *pUnkOuter, + [in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppCommand, + [out] IErrorInfo **ppErrorInfoRem); +} diff --git a/sdk/include/psdk/dbcses.idl b/sdk/include/psdk/dbcses.idl index 3bdb0d779d4..54418159472 100644 --- a/sdk/include/psdk/dbcses.idl +++ b/sdk/include/psdk/dbcses.idl @@ -1,36 +1,36 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a5d-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IDBCreateSession : IUnknown -{ - [local] - HRESULT CreateSession([in] IUnknown *pUnkOuter, - [in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppDBSession); - - [call_as(CreateSession)] - HRESULT RemoteCreateSession([in] IUnknown *pUnkOuter, - [in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppDBSession, - [out] IErrorInfo **ppErrorInfoRem); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a5d-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IDBCreateSession : IUnknown +{ + [local] + HRESULT CreateSession([in] IUnknown *pUnkOuter, + [in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppDBSession); + + [call_as(CreateSession)] + HRESULT RemoteCreateSession([in] IUnknown *pUnkOuter, + [in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppDBSession, + [out] IErrorInfo **ppErrorInfoRem); +} diff --git a/sdk/include/psdk/dbdsad.idl b/sdk/include/psdk/dbdsad.idl index c6fb2b4ea4b..ad2695efb85 100644 --- a/sdk/include/psdk/dbdsad.idl +++ b/sdk/include/psdk/dbdsad.idl @@ -1,75 +1,75 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a7a-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IDBDataSourceAdmin : IUnknown -{ - [local] - HRESULT CreateDataSource([in] ULONG cPropertySets, - [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[], - [in] IUnknown *pUnkOuter, - [in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppDBSession); - - [call_as(CreateDataSource)] - HRESULT RemoteCreateDataSource([in] ULONG cPropertySets, - [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, - [in] IUnknown *pUnkOuter, - [in] REFIID riid, - [in, out, unique, iid_is(riid)] IUnknown **ppDBSession, - [in] ULONG cTotalProps, - [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT DestroyDataSource(); - - [call_as(DestroyDataSource)] - HRESULT RemoteDestroyDataSource([out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT GetCreationProperties([in] ULONG cPropertyIDSets, - [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[], - [in, out] ULONG *pcPropertyInfoSets, - [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets, - [out, annotation("__deref_out_z_opt")] OLECHAR **ppDescBuffer); - - [call_as(GetCreationProperties)] - HRESULT RemoteGetCreationProperties([in] ULONG cPropertyIDSets, - [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, - [in, out] ULONG *pcPropertyInfoSets, - [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets, - [in, out] DBCOUNTITEM *pcOffsets, - [out, size_is(,(ULONG)*pcOffsets)] DBBYTEOFFSET **prgDescOffsets, - [in, out] ULONG *pcbDescBuffer, - [in, out, unique, size_is(,*pcbDescBuffer)] OLECHAR **ppDescBuffer, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT ModifyDataSource([in] ULONG cPropertySets, - [in, size_is(cPropertySets)] DBPROPSET rgPropertySets[]); - - [call_as(ModifyDataSource)] - HRESULT RemoteModifyDataSource([in] ULONG cPropertySets, - [in, size_is(cPropertySets)] DBPROPSET *rgPropertySets, - [out] IErrorInfo **ppErrorInfoRem); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a7a-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IDBDataSourceAdmin : IUnknown +{ + [local] + HRESULT CreateDataSource([in] ULONG cPropertySets, + [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[], + [in] IUnknown *pUnkOuter, + [in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppDBSession); + + [call_as(CreateDataSource)] + HRESULT RemoteCreateDataSource([in] ULONG cPropertySets, + [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, + [in] IUnknown *pUnkOuter, + [in] REFIID riid, + [in, out, unique, iid_is(riid)] IUnknown **ppDBSession, + [in] ULONG cTotalProps, + [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT DestroyDataSource(); + + [call_as(DestroyDataSource)] + HRESULT RemoteDestroyDataSource([out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT GetCreationProperties([in] ULONG cPropertyIDSets, + [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[], + [in, out] ULONG *pcPropertyInfoSets, + [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets, + [out, annotation("__deref_out_z_opt")] OLECHAR **ppDescBuffer); + + [call_as(GetCreationProperties)] + HRESULT RemoteGetCreationProperties([in] ULONG cPropertyIDSets, + [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, + [in, out] ULONG *pcPropertyInfoSets, + [out, size_is(,*pcPropertyInfoSets)] DBPROPINFOSET **prgPropertyInfoSets, + [in, out] DBCOUNTITEM *pcOffsets, + [out, size_is(,(ULONG)*pcOffsets)] DBBYTEOFFSET **prgDescOffsets, + [in, out] ULONG *pcbDescBuffer, + [in, out, unique, size_is(,*pcbDescBuffer)] OLECHAR **ppDescBuffer, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT ModifyDataSource([in] ULONG cPropertySets, + [in, size_is(cPropertySets)] DBPROPSET rgPropertySets[]); + + [call_as(ModifyDataSource)] + HRESULT RemoteModifyDataSource([in] ULONG cPropertySets, + [in, size_is(cPropertySets)] DBPROPSET *rgPropertySets, + [out] IErrorInfo **ppErrorInfoRem); +} diff --git a/sdk/include/psdk/opnrst.idl b/sdk/include/psdk/opnrst.idl index e6b5237ee57..07c23805fc9 100644 --- a/sdk/include/psdk/opnrst.idl +++ b/sdk/include/psdk/opnrst.idl @@ -1,47 +1,47 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a69-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IOpenRowset : IUnknown -{ - [local] - HRESULT OpenRowset([in] IUnknown *pUnkOuter, - [in, unique] DBID *pTableID, - [in, unique] DBID *pIndexID, - [in] REFIID riid, - [in] ULONG cPropertySets, - [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[], - [out, iid_is(riid)] IUnknown **ppRowset); - - [call_as(OpenRowset)] - HRESULT RemoteOpenRowset([in] IUnknown *pUnkOuter, - [in, unique] DBID *pTableID, - [in, unique] DBID *pIndexID, - [in] REFIID riid, - [in] ULONG cPropertySets, - [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, - [in, out, unique, iid_is(riid)] IUnknown **ppRowset, - [in] ULONG cTotalProps, - [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, - [out] IErrorInfo **ppErrorInfoRem); - -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a69-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IOpenRowset : IUnknown +{ + [local] + HRESULT OpenRowset([in] IUnknown *pUnkOuter, + [in, unique] DBID *pTableID, + [in, unique] DBID *pIndexID, + [in] REFIID riid, + [in] ULONG cPropertySets, + [in, out, size_is(cPropertySets)] DBPROPSET rgPropertySets[], + [out, iid_is(riid)] IUnknown **ppRowset); + + [call_as(OpenRowset)] + HRESULT RemoteOpenRowset([in] IUnknown *pUnkOuter, + [in, unique] DBID *pTableID, + [in, unique] DBID *pIndexID, + [in] REFIID riid, + [in] ULONG cPropertySets, + [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, + [in, out, unique, iid_is(riid)] IUnknown **ppRowset, + [in] ULONG cTotalProps, + [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, + [out] IErrorInfo **ppErrorInfoRem); + +} diff --git a/sdk/include/psdk/row.idl b/sdk/include/psdk/row.idl index 59df27948a5..f56eade5de1 100644 --- a/sdk/include/psdk/row.idl +++ b/sdk/include/psdk/row.idl @@ -1,42 +1,42 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - local, - object, - uuid(0c733ab4-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IRow : IUnknown -{ - [local] - HRESULT GetColumns([in] DBORDINAL cColumns, - [in, out, size_is(cColumns), annotation("__inout_ecount(cColumns)")] DBCOLUMNACCESS rgColumns[]); - - - HRESULT GetSourceRowset([in, annotation("__in")] REFIID riid, - [out, iid_is(riid), annotation("__deref_opt_out_opt")] IUnknown **ppRowset, - [out, annotation("__out_opt")] HROW *phRow); - - HRESULT Open([in, unique, annotation("__in_opt")] IUnknown *pUnkOuter, - [in, annotation("__in")] DBID *pColumnID, - [in, annotation("__in")] REFGUID rguidColumnType, - [in] DWORD dwBindFlags, - [in, annotation("__in")] REFIID riid, - [out, iid_is(riid), annotation("__deref_opt_out")] IUnknown **ppUnk); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + local, + object, + uuid(0c733ab4-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IRow : IUnknown +{ + [local] + HRESULT GetColumns([in] DBORDINAL cColumns, + [in, out, size_is(cColumns), annotation("__inout_ecount(cColumns)")] DBCOLUMNACCESS rgColumns[]); + + + HRESULT GetSourceRowset([in, annotation("__in")] REFIID riid, + [out, iid_is(riid), annotation("__deref_opt_out_opt")] IUnknown **ppRowset, + [out, annotation("__out_opt")] HROW *phRow); + + HRESULT Open([in, unique, annotation("__in_opt")] IUnknown *pUnkOuter, + [in, annotation("__in")] DBID *pColumnID, + [in, annotation("__in")] REFGUID rguidColumnType, + [in] DWORD dwBindFlags, + [in, annotation("__in")] REFIID riid, + [out, iid_is(riid), annotation("__deref_opt_out")] IUnknown **ppUnk); +} diff --git a/sdk/include/psdk/rowchg.idl b/sdk/include/psdk/rowchg.idl index 86c7ad49655..7bfa50673eb 100644 --- a/sdk/include/psdk/rowchg.idl +++ b/sdk/include/psdk/rowchg.idl @@ -1,30 +1,30 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - local, - object, - uuid(0c733ab5-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IRowChange : IUnknown -{ - [local] - HRESULT SetColumns([in] DBORDINAL cColumns, - [in, out, size_is(cColumns), annotation("__in_ecount(cColumns)")] DBCOLUMNACCESS rgColumns[]); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + local, + object, + uuid(0c733ab5-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IRowChange : IUnknown +{ + [local] + HRESULT SetColumns([in] DBORDINAL cColumns, + [in, out, size_is(cColumns), annotation("__in_ecount(cColumns)")] DBCOLUMNACCESS rgColumns[]); +} diff --git a/sdk/include/psdk/rstbas.idl b/sdk/include/psdk/rstbas.idl index d7859ed5085..94d23f1ee3b 100644 --- a/sdk/include/psdk/rstbas.idl +++ b/sdk/include/psdk/rstbas.idl @@ -1,51 +1,51 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - local, - object, - uuid(0c733a7c-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IRowset : IUnknown -{ - typedef DWORD DBROWOPTIONS; - - HRESULT AddRefRows([in] DBCOUNTITEM cRows, - [in, size_is(cRows)] const HROW rghRows[], - [out, size_is(cRows)] DBREFCOUNT rgRefCounts[], - [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]); - - HRESULT GetData([in] HROW hRow, - [in] HACCESSOR hAccessor, - [out] void *pData); - - HRESULT GetNextRows([in] HCHAPTER hReserved, - [in] DBROWOFFSET lRowsOffset, - [in] DBROWCOUNT cRows, - [out] DBCOUNTITEM *pcRowObtained, - [out, size_is(,cRows)] HROW **prghRows); - - HRESULT ReleaseRows([in] DBCOUNTITEM cRows, - [in, size_is(cRows)] const HROW rghRows[], - [in, size_is(cRows)] DBROWOPTIONS rgRowOptions[], - [out, size_is(cRows)] DBREFCOUNT rgRefCounts[], - [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]); - - HRESULT RestartPosition([in] HCHAPTER hReserved); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + local, + object, + uuid(0c733a7c-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IRowset : IUnknown +{ + typedef DWORD DBROWOPTIONS; + + HRESULT AddRefRows([in] DBCOUNTITEM cRows, + [in, size_is(cRows)] const HROW rghRows[], + [out, size_is(cRows)] DBREFCOUNT rgRefCounts[], + [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]); + + HRESULT GetData([in] HROW hRow, + [in] HACCESSOR hAccessor, + [out] void *pData); + + HRESULT GetNextRows([in] HCHAPTER hReserved, + [in] DBROWOFFSET lRowsOffset, + [in] DBROWCOUNT cRows, + [out] DBCOUNTITEM *pcRowObtained, + [out, size_is(,cRows)] HROW **prghRows); + + HRESULT ReleaseRows([in] DBCOUNTITEM cRows, + [in, size_is(cRows)] const HROW rghRows[], + [in, size_is(cRows)] DBROWOPTIONS rgRowOptions[], + [out, size_is(cRows)] DBREFCOUNT rgRefCounts[], + [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]); + + HRESULT RestartPosition([in] HCHAPTER hReserved); +} diff --git a/sdk/include/psdk/rstinf.idl b/sdk/include/psdk/rstinf.idl index 16d269377a0..7c9779bab6d 100644 --- a/sdk/include/psdk/rstinf.idl +++ b/sdk/include/psdk/rstinf.idl @@ -1,58 +1,58 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a55-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IRowsetInfo : IUnknown -{ - [local] - HRESULT GetProperties([in] const ULONG cPropertyIDSets, - [in, size_is(cPropertyIDSets), annotation("__in_ecount_opt(cPropertyIDSets)")] const DBPROPIDSET rgPropertyIDSets[], - [in, out, annotation("__out")] ULONG *pcPropertySets, - [out, size_is(,*pcPropertySets), annotation("__deref_out_ecount_opt(*pcPropertySets)")] DBPROPSET **prgPropertySets); - - [call_as(GetProperties)] - HRESULT RemoteGetProperties([in] ULONG cPropertyIDSets, - [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, - [in, out] ULONG *pcPropertySets, - [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets, - [out] IErrorInfo **ppErrorInfoRem); - - [local] - HRESULT GetReferencedRowset([in] DBORDINAL iOrdinal, - [in, annotation("__in")] REFIID riid, - [out, iid_is(riid), annotation("deref_out_opt")] IUnknown **ppReferencedRowset); - - [call_as(GetReferencedRowset)] - HRESULT RemoteGetReferencedRowset([in] DBORDINAL iOrdinal, - [in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppReferencedRowset, - [out] IErrorInfo **ppErrorInfoRem); - [local] - HRESULT GetSpecification([in, annotation("__in")] REFIID riid, - [out, iid_is(riid), annotation("__deref_out_opt")] IUnknown **ppSpecification); - - [call_as(GetSpecification)] - HRESULT RemoteGetSpecification([in] REFIID riid, - [out, iid_is(riid)] IUnknown **ppSpecification, - [out] IErrorInfo **ppErrorInfoRem); - -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a55-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IRowsetInfo : IUnknown +{ + [local] + HRESULT GetProperties([in] const ULONG cPropertyIDSets, + [in, size_is(cPropertyIDSets), annotation("__in_ecount_opt(cPropertyIDSets)")] const DBPROPIDSET rgPropertyIDSets[], + [in, out, annotation("__out")] ULONG *pcPropertySets, + [out, size_is(,*pcPropertySets), annotation("__deref_out_ecount_opt(*pcPropertySets)")] DBPROPSET **prgPropertySets); + + [call_as(GetProperties)] + HRESULT RemoteGetProperties([in] ULONG cPropertyIDSets, + [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, + [in, out] ULONG *pcPropertySets, + [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets, + [out] IErrorInfo **ppErrorInfoRem); + + [local] + HRESULT GetReferencedRowset([in] DBORDINAL iOrdinal, + [in, annotation("__in")] REFIID riid, + [out, iid_is(riid), annotation("deref_out_opt")] IUnknown **ppReferencedRowset); + + [call_as(GetReferencedRowset)] + HRESULT RemoteGetReferencedRowset([in] DBORDINAL iOrdinal, + [in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppReferencedRowset, + [out] IErrorInfo **ppErrorInfoRem); + [local] + HRESULT GetSpecification([in, annotation("__in")] REFIID riid, + [out, iid_is(riid), annotation("__deref_out_opt")] IUnknown **ppSpecification); + + [call_as(GetSpecification)] + HRESULT RemoteGetSpecification([in] REFIID riid, + [out, iid_is(riid)] IUnknown **ppSpecification, + [out] IErrorInfo **ppErrorInfoRem); + +} diff --git a/sdk/include/psdk/rstloc.idl b/sdk/include/psdk/rstloc.idl index f579581c367..266aabf65a4 100644 --- a/sdk/include/psdk/rstloc.idl +++ b/sdk/include/psdk/rstloc.idl @@ -1,67 +1,67 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - local, - object, - uuid(0c733a7d-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface IRowsetLocate : IRowset -{ - typedef DWORD DBCOMPARE; - - enum DBCOMPAREENUM - { - DBCOMPARE_LT, - DBCOMPARE_EQ, - DBCOMPARE_GT, - DBCOMPARE_NE, - DBCOMPARE_NOTCOMPARABLE - }; - - HRESULT Compare([in] HCHAPTER hReserved, - [in] DBBKMARK cbBookmark1, - [in, size_is(cbBookmark1)] const BYTE *pBookmark1, - [in] DBBKMARK cbBookmark2, - [in, size_is(cbBookmark2)] const BYTE *pBookmark2, - [out] DBCOMPARE *pComparison); - - HRESULT GetRowsAt([in] HWATCHREGION hReserved1, - [in] HCHAPTER hReserved2, - [in] DBBKMARK cbBookmark, - [in, size_is(cbBookmark)] const BYTE *pBookmark, - [in] DBROWOFFSET lRowsOffset, - [in] DBROWCOUNT cRows, - [out] DBCOUNTITEM *pcRowsObtained, - [out, size_is(,cRows)] HROW **prghRows); - - HRESULT GetRowsByBookmark([in] HCHAPTER hReserved, - [in] DBCOUNTITEM cRows, - [in, size_is(cRows)] const DBBKMARK rgcbBookmarks[], - [in, size_is(cRows)] const BYTE *rgpBookmarks[], - [out, size_is(cRows)] HROW rghRows[], - [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]); - - HRESULT Hash([in] HCHAPTER hReserved, - [in] DBBKMARK cBookmarks, - [in, size_is(cBookmarks)] const DBBKMARK rgcbBookmarks[], - [in, size_is(cBookmarks)] const BYTE *rgpBookmarks[], - [out, size_is(cBookmarks)] DBHASHVALUE rgHashedValues[], - [out, size_is(cBookmarks)] DBROWSTATUS rgBookmarkStatus[]); -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + local, + object, + uuid(0c733a7d-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface IRowsetLocate : IRowset +{ + typedef DWORD DBCOMPARE; + + enum DBCOMPAREENUM + { + DBCOMPARE_LT, + DBCOMPARE_EQ, + DBCOMPARE_GT, + DBCOMPARE_NE, + DBCOMPARE_NOTCOMPARABLE + }; + + HRESULT Compare([in] HCHAPTER hReserved, + [in] DBBKMARK cbBookmark1, + [in, size_is(cbBookmark1)] const BYTE *pBookmark1, + [in] DBBKMARK cbBookmark2, + [in, size_is(cbBookmark2)] const BYTE *pBookmark2, + [out] DBCOMPARE *pComparison); + + HRESULT GetRowsAt([in] HWATCHREGION hReserved1, + [in] HCHAPTER hReserved2, + [in] DBBKMARK cbBookmark, + [in, size_is(cbBookmark)] const BYTE *pBookmark, + [in] DBROWOFFSET lRowsOffset, + [in] DBROWCOUNT cRows, + [out] DBCOUNTITEM *pcRowsObtained, + [out, size_is(,cRows)] HROW **prghRows); + + HRESULT GetRowsByBookmark([in] HCHAPTER hReserved, + [in] DBCOUNTITEM cRows, + [in, size_is(cRows)] const DBBKMARK rgcbBookmarks[], + [in, size_is(cRows)] const BYTE *rgpBookmarks[], + [out, size_is(cRows)] HROW rghRows[], + [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]); + + HRESULT Hash([in] HCHAPTER hReserved, + [in] DBBKMARK cBookmarks, + [in, size_is(cBookmarks)] const DBBKMARK rgcbBookmarks[], + [in, size_is(cBookmarks)] const BYTE *rgpBookmarks[], + [out, size_is(cBookmarks)] DBHASHVALUE rgHashedValues[], + [out, size_is(cBookmarks)] DBROWSTATUS rgBookmarkStatus[]); +} diff --git a/sdk/include/psdk/sesprp.idl b/sdk/include/psdk/sesprp.idl index d621be18a3a..b4aa727bad5 100644 --- a/sdk/include/psdk/sesprp.idl +++ b/sdk/include/psdk/sesprp.idl @@ -1,51 +1,51 @@ -/* - * Copyright (C) 2009 Huw Davies - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library 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 - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA - */ - -[ - object, - uuid(0c733a85-2a1c-11ce-ade5-00aa0044773d), - pointer_default(unique) -] -interface ISessionProperties : IUnknown -{ - [local] - HRESULT GetProperties([in] ULONG cPropertyIDSets, - [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[], - [in, out] ULONG *pcPropertySets, - [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets); - - [call_as(GetProperties)] - HRESULT RemoteGetProperties([in] ULONG cPropertyIDSets, - [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, - [in, out] ULONG *pcPropertySets, - [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets, - [out] IErrorInfo **ppErrorInfoRem); - - - [local] - HRESULT SetProperties([in] ULONG cPropertySets, - [in, out, unique, size_is(cPropertySets)] DBPROPSET rgPropertySets[]); - - [call_as(SetProperties)] - HRESULT RemoteSetProperties([in] ULONG cPropertySets, - [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, - [in] ULONG cTotalProps, - [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, - [out] IErrorInfo **ppErrorInfoRem); - -} +/* + * Copyright (C) 2009 Huw Davies + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA + */ + +[ + object, + uuid(0c733a85-2a1c-11ce-ade5-00aa0044773d), + pointer_default(unique) +] +interface ISessionProperties : IUnknown +{ + [local] + HRESULT GetProperties([in] ULONG cPropertyIDSets, + [in, size_is(cPropertyIDSets)] const DBPROPIDSET rgPropertyIDSets[], + [in, out] ULONG *pcPropertySets, + [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets); + + [call_as(GetProperties)] + HRESULT RemoteGetProperties([in] ULONG cPropertyIDSets, + [in, unique, size_is(cPropertyIDSets)] const DBPROPIDSET *rgPropertyIDSets, + [in, out] ULONG *pcPropertySets, + [out, size_is(,*pcPropertySets)] DBPROPSET **prgPropertySets, + [out] IErrorInfo **ppErrorInfoRem); + + + [local] + HRESULT SetProperties([in] ULONG cPropertySets, + [in, out, unique, size_is(cPropertySets)] DBPROPSET rgPropertySets[]); + + [call_as(SetProperties)] + HRESULT RemoteSetProperties([in] ULONG cPropertySets, + [in, unique, size_is(cPropertySets)] DBPROPSET *rgPropertySets, + [in] ULONG cTotalProps, + [out, size_is(cTotalProps)] DBPROPSTATUS *rgPropStatus, + [out] IErrorInfo **ppErrorInfoRem); + +} diff --git a/sdk/include/reactos/mc/bootmsg.mc b/sdk/include/reactos/mc/bootmsg.mc index a374fc0015a..3ab18e6f039 100644 --- a/sdk/include/reactos/mc/bootmsg.mc +++ b/sdk/include/reactos/mc/bootmsg.mc @@ -1,17 +1,17 @@ -MessageId=9001 -SymbolicName=BM_MSG_FIRST -Language=English -BM_MSG_FIRST -. - -MessageId=9002 -SymbolicName=BM_MSG_BCD_ERROR -Language=English -The Boot Configuration Data for your PC is missing or contains errors. -. - -MessageId=9999 -SymbolicName=BM_MSG_TEST -Language=English -We are A-ok!!! -. +MessageId=9001 +SymbolicName=BM_MSG_FIRST +Language=English +BM_MSG_FIRST +. + +MessageId=9002 +SymbolicName=BM_MSG_BCD_ERROR +Language=English +The Boot Configuration Data for your PC is missing or contains errors. +. + +MessageId=9999 +SymbolicName=BM_MSG_TEST +Language=English +We are A-ok!!! +. diff --git a/sdk/include/reactos/mc/bugcodes.mc b/sdk/include/reactos/mc/bugcodes.mc index 574e0060277..d1d701c962f 100644 --- a/sdk/include/reactos/mc/bugcodes.mc +++ b/sdk/include/reactos/mc/bugcodes.mc @@ -1,1711 +1,1711 @@ -MessageIdTypedef=ULONG - -SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS - Informational=0x1:STATUS_SEVERITY_INFORMATIONAL - Warning=0x2:STATUS_SEVERITY_WARNING - Error=0x3:STATUS_SEVERITY_ERROR - ) - -FacilityNames=(System=0x0:FACILITY_SYSTEM - Runtime=0x2:FACILITY_RUNTIME - Stubs=0x3:FACILITY_STUBS - Io=0x4:FACILITY_IO_ERROR_CODE - ) - -LanguageNames=(English=0x409:MSG00409) - -MessageId=0x7E -Severity=Informational -Facility=System -SymbolicName=WINDOWS_NT_BANNER -Language=English -ReactOS Version %s -Build %s -Reporting NT %s (Build %u%s) -. - -MessageId=0x87 -Severity=Informational -Facility=System -SymbolicName=WINDOWS_NT_CSD_STRING -Language=English -Service Pack -. - -MessageId=0x88 -Severity=Informational -Facility=System -SymbolicName=WINDOWS_NT_INFO_STRING -Language=English -%u System Processor [%u MB Memory] %Z -. - -MessageId=0x89 -Severity=Informational -Facility=System -SymbolicName=WINDOWS_NT_MP_STRING -Language=English -MultiProcessor Kernel -. - -MessageId=0x8A -Severity=Informational -Facility=System -SymbolicName=THREAD_TERMINATE_HELD_MUTEX -Language=English -A kernel thread terminated while holding a mutex -. - -MessageId=0x9D -Severity=Informational -Facility=System -SymbolicName=WINDOWS_NT_INFO_STRING_PLURAL -Language=English -%u System Processors [%u MB Memory] %Z -. - -MessageId=0x9F -Severity=Informational -Facility=System -SymbolicName=REACTOS_COPYRIGHT_NOTICE -Language=English -\n\nReactOS is free software, covered by the GNU General Public License, - and you\n are welcome to change it and/or distribute copies of it under - certain\n conditions. There is absolutely no warranty for ReactOS.\n -. - -MessageId=0x7F -Severity=Warning -Facility=System -SymbolicName=BUGCHECK_MESSAGE_INTRO -Language=English -A problem has been detected and ReactOS has been shut down to prevent damage -to your computer. -. - -MessageId=0x80 -Severity=Warning -Facility=System -SymbolicName=BUGCODE_ID_DRIVER -Language=English -The problem seems to be caused by the following file: - -. - -MessageId=0x81 -Severity=Warning -Facility=System -SymbolicName=PSS_MESSAGE_INTRO -Language=English -If this is the first time you've seen this Stop error screen, -restart your computer. If this screen appears again, follow -these steps: - -. - -MessageId=0x82 -Severity=Warning -Facility=System -SymbolicName=BUGCODE_PSS_MESSAGE -Language=English -Check to make sure any new hardware or software is properly installed. -If this is a new installation, ask your hardware or software manufacturer -for any ReactOS updates you might need. - -If problems continue, disable or remove any newly installed hardware -or software. Disable BIOS memory options such as caching or shadowing. -If you need to use Safe Mode to remove or disable components, restart -your computer, press F8 to select Advanced Startup Options, and then -select Safe Mode. -. - -MessageId=0x83 -Severity=Warning -Facility=System -SymbolicName=BUGCHECK_TECH_INFO -Language=English -Technical information: -. - -MessageId=0x0 -Severity=Success -Facility=System -SymbolicName=UNDEFINED_BUG_CODE -Language=English -The bug code is undefined. Please use an existing code instead. -. - -MessageId=0x01 -Severity=Success -Facility=System -SymbolicName=APC_INDEX_MISMATCH -Language=English -APC_INDEX_MISMATCH -. - -MessageId=0x02 -Severity=Success -Facility=System -SymbolicName=DEVICE_QUEUE_NOT_BUSY -Language=English -DEVICE_QUEUE_NOT_BUSY -. - -MessageId=0x3 -Severity=Success -Facility=System -SymbolicName=INVALID_AFFINITY_SET -Language=English -INVALID_AFFINITY_SET -. - -MessageId=0x04 -Severity=Success -Facility=System -SymbolicName=INVALID_DATA_ACCESS_TRAP -Language=English -INVALID_DATA_ACCESS_TRAP -. - -MessageId=0x05 -Severity=Success -Facility=System -SymbolicName=INVALID_PROCESS_ATTACH_ATTEMPT -Language=English -INVALID_PROCESS_ATTACH_ATTEMPT -. - -MessageId=0x06 -Severity=Success -Facility=System -SymbolicName=INVALID_PROCESS_DETACH_ATTEMPT -Language=English -INVALID_PROCESS_DETACH_ATTEMPT -. - -MessageId=0x7 -Severity=Success -Facility=System -SymbolicName=INVALID_SOFTWARE_INTERRUPT -Language=English -INVALID_SOFTWARE_INTERRUPT -. - -MessageId=0x08 -Severity=Success -Facility=System -SymbolicName=IRQL_NOT_DISPATCH_LEVEL -Language=English -IRQL_NOT_DISPATCH_LEVEL -. - -MessageId=0x09 -Severity=Success -Facility=System -SymbolicName=IRQL_NOT_GREATER_OR_EQUAL -Language=English -IRQL_NOT_GREATER_OR_EQUAL -. - -MessageId=0x0A -Severity=Success -Facility=System -SymbolicName=IRQL_NOT_LESS_OR_EQUAL -Language=English -IRQL_NOT_LESS_OR_EQUAL -. - -MessageId=0x0B -Severity=Success -Facility=System -SymbolicName=NO_EXCEPTION_HANDLING_SUPPORT -Language=English -NO_EXCEPTION_HANDLING_SUPPORT -. - -MessageId=0x0C -Severity=Success -Facility=System -SymbolicName=MAXIMUM_WAIT_OBJECTS_EXCEEDED -Language=English -MAXIMUM_WAIT_OBJECTS_EXCEEDED -. - -MessageId=0x0D -Severity=Success -Facility=System -SymbolicName=MUTEX_LEVEL_NUMBER_VIOLATION -Language=English -MUTEX_LEVEL_NUMBER_VIOLATION -. - -MessageId=0x0E -Severity=Success -Facility=System -SymbolicName=NO_USER_MODE_CONTEXT -Language=English -NO_USER_MODE_CONTEXT -. - -MessageId=0x0F -Severity=Success -Facility=System -SymbolicName=SPIN_LOCK_ALREADY_OWNED -Language=English -SPIN_LOCK_ALREADY_OWNED -. - -MessageId=0x10 -Severity=Success -Facility=System -SymbolicName=SPIN_LOCK_NOT_OWNED -Language=English -SPIN_LOCK_NOT_OWNED -. - -MessageId=0x11 -Severity=Success -Facility=System -SymbolicName=THREAD_NOT_MUTEX_OWNER -Language=English -THREAD_NOT_MUTEX_OWNER -. - -MessageId=0x12 -Severity=Success -Facility=System -SymbolicName=TRAP_CAUSE_UNKNOWN -Language=English -TRAP_CAUSE_UNKNOWN -. - -MessageId=0x13 -Severity=Success -Facility=System -SymbolicName=EMPTY_THREAD_REAPER_LIST -Language=English -EMPTY_THREAD_REAPER_LIST -. - -MessageId=0x14 -Severity=Success -Facility=System -SymbolicName=CREATE_DELETE_LOCK_NOT_LOCKED -Language=English -The thread reaper was handed a thread to reap, but the thread's process' -. - -MessageId=0x15 -Severity=Success -Facility=System -SymbolicName=LAST_CHANCE_CALLED_FROM_KMODE -Language=English -LAST_CHANCE_CALLED_FROM_KMODE -. - -MessageId=0x16 -Severity=Success -Facility=System -SymbolicName=CID_HANDLE_CREATION -Language=English -CID_HANDLE_CREATION -. - -MessageId=0x17 -Severity=Success -Facility=System -SymbolicName=CID_HANDLE_DELETION -Language=English -CID_HANDLE_DELETION -. - -MessageId=0x18 -Severity=Success -Facility=System -SymbolicName=REFERENCE_BY_POINTER -Language=English -REFERENCE_BY_POINTER -. - -MessageId=0x19 -Severity=Success -Facility=System -SymbolicName=BAD_POOL_HEADER -Language=English -BAD_POOL_HEADER -. - -MessageId=0x1A -Severity=Success -Facility=System -SymbolicName=MEMORY_MANAGEMENT -Language=English -MEMORY_MANAGEMENT -. - -MessageId=0x1B -Severity=Success -Facility=System -SymbolicName=PFN_SHARE_COUNT -Language=English -PFN_SHARE_COUNT -. - -MessageId=0x1C -Severity=Success -Facility=System -SymbolicName=PFN_REFERENCE_COUNT -Language=English -PFN_REFERENCE_COUNT -. - -MessageId=0x1D -Severity=Success -Facility=System -SymbolicName=NO_SPINLOCK_AVAILABLE -Language=English -NO_SPINLOCK_AVAILABLE -. - -MessageId=0x1E -Severity=Success -Facility=System -SymbolicName=KMODE_EXCEPTION_NOT_HANDLED -Language=English -Check to be sure you have adequate disk space. If a driver is -identified in the Stop message, disable the driver or check -with the manufacturer for driver updates. Try changing video -adapters. - -Check with your hardware vendor for any BIOS updates. Disable -BIOS memory options such as caching or shadowing. If you need -to use Safe Mode to remove or disable components, restart your -computer, press F8 to select Advanced Startup Options, and then -select Safe Mode. -. - -MessageId=0x1F -Severity=Success -Facility=System -SymbolicName=SHARED_RESOURCE_CONV_ERROR -Language=English -SHARED_RESOURCE_CONV_ERROR -. - -MessageId=0x20 -Severity=Success -Facility=System -SymbolicName=KERNEL_APC_PENDING_DURING_EXIT -Language=English -KERNEL_APC_PENDING_DURING_EXIT -. - -MessageId=0x21 -Severity=Success -Facility=System -SymbolicName=QUOTA_UNDERFLOW -Language=English -QUOTA_UNDERFLOW -. - -MessageId=0x22 -Severity=Success -Facility=System -SymbolicName=FILE_SYSTEM -Language=English -FILE_SYSTEM -. - -MessageId=0x23 -Severity=Success -Facility=System -SymbolicName=FAT_FILE_SYSTEM -Language=English -Disable or uninstall any anti-virus, disk defragmentation -or backup utilities. Check your hard drive configuration, -and check for any updated drivers. Run CHKDSK /F to check -for hard drive corruption, and then restart your computer. -. - -MessageId=0x24 -Severity=Success -Facility=System -SymbolicName=NTFS_FILE_SYSTEM -Language=English -NTFS_FILE_SYSTEM -. - -MessageId=0x25 -Severity=Success -Facility=System -SymbolicName=NPFS_FILE_SYSTEM -Language=English -NPFS_FILE_SYSTEM -. - -MessageId=0x26 -Severity=Success -Facility=System -SymbolicName=CDFS_FILE_SYSTEM -Language=English -CDFS_FILE_SYSTEM -. - -MessageId=0x27 -Severity=Success -Facility=System -SymbolicName=RDR_FILE_SYSTEM -Language=English -RDR_FILE_SYSTEM -. - -MessageId=0x28 -Severity=Success -Facility=System -SymbolicName=CORRUPT_ACCESS_TOKEN -Language=English -CORRUPT_ACCESS_TOKEN -. - -MessageId=0x29 -Severity=Success -Facility=System -SymbolicName=SECURITY_SYSTEM -Language=English -SECURITY_SYSTEM -. - -MessageId=0x2A -Severity=Success -Facility=System -SymbolicName=INCONSISTENT_IRP -Language=English -INCONSISTENT_IRP -. - -MessageId=0x2B -Severity=Success -Facility=System -SymbolicName=PANIC_STACK_SWITCH -Language=English -PANIC_STACK_SWITCH -. - -MessageId=0x2C -Severity=Success -Facility=System -SymbolicName=PORT_DRIVER_INTERNAL -Language=English -PORT_DRIVER_INTERNAL -. - -MessageId=0x2D -Severity=Success -Facility=System -SymbolicName=SCSI_DISK_DRIVER_INTERNAL -Language=English -SCSI_DISK_DRIVER_INTERNAL -. - -MessageId=0x2E -Severity=Success -Facility=System -SymbolicName=DATA_BUS_ERROR -Language=English -Run system diagnostics supplied by your hardware manufacturer. -In particular, run a memory check, and check for faulty or -mismatched memory. Try changing video adapters. - -Check with your hardware vendor for any BIOS updates. Disable -BIOS memory options such as caching or shadowing. If you need -to use Safe Mode to remove or disable components, restart your -computer, press F8 to select Advanced Startup Options, and then -select Safe Mode. -. - -MessageId=0x2F -Severity=Success -Facility=System -SymbolicName=INSTRUCTION_BUS_ERROR -Language=English -INSTRUCTION_BUS_ERROR -. - -MessageId=0x30 -Severity=Success -Facility=System -SymbolicName=SET_OF_INVALID_CONTEXT -Language=English -SET_OF_INVALID_CONTEXT -. - -MessageId=0x31 -Severity=Success -Facility=System -SymbolicName=PHASE0_INITIALIZATION_FAILED -Language=English -PHASE0_INITIALIZATION_FAILED -. - -MessageId=0x32 -Severity=Success -Facility=System -SymbolicName=PHASE1_INITIALIZATION_FAILED -Language=English -PHASE1_INITIALIZATION_FAILED -. - -MessageId=0x33 -Severity=Success -Facility=System -SymbolicName=UNEXPECTED_INITIALIZATION_CALL -Language=English -UNEXPECTED_INITIALIZATION_CALL -. - -MessageId=0x34 -Severity=Success -Facility=System -SymbolicName=CACHE_MANAGER -Language=English -CACHE_MANAGER -. - -MessageId=0x35 -Severity=Success -Facility=System -SymbolicName=NO_MORE_IRP_STACK_LOCATIONS -Language=English -NO_MORE_IRP_STACK_LOCATIONS -. - -MessageId=0x36 -Severity=Success -Facility=System -SymbolicName=DEVICE_REFERENCE_COUNT_NOT_ZERO -Language=English -DEVICE_REFERENCE_COUNT_NOT_ZERO -. - -MessageId=0x37 -Severity=Success -Facility=System -SymbolicName=FLOPPY_INTERNAL_ERROR -Language=English -FLOPPY_INTERNAL_ERROR -. - -MessageId=0x38 -Severity=Success -Facility=System -SymbolicName=SERIAL_DRIVER_INTERNAL -Language=English -SERIAL_DRIVER_INTERNAL -. - -MessageId=0x39 -Severity=Success -Facility=System -SymbolicName=SYSTEM_EXIT_OWNED_MUTEX -Language=English -SYSTEM_EXIT_OWNED_MUTEX -. - -MessageId=0x3E -Severity=Success -Facility=System -SymbolicName=MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED -Language=English -MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED -. - -MessageId=0x3F -Severity=Success -Facility=System -SymbolicName=NO_MORE_SYSTEM_PTES -Language=English -Remove any recently installed software including backup -utilities or disk-intensive applications. - -If you need to use Safe Mode to remove or disable components, -restart your computer, press F8 to select Advanced Startup -Options, and then select Safe Mode. -. - -MessageId=0x40 -Severity=Success -Facility=System -SymbolicName=TARGET_MDL_TOO_SMALL -Language=English -TARGET_MDL_TOO_SMALL -. - -MessageId=0x41 -Severity=Success -Facility=System -SymbolicName=MUST_SUCCEED_POOL_EMPTY -Language=English -MUST_SUCCEED_POOL_EMPTY -. - -MessageId=0x42 -Severity=Success -Facility=System -SymbolicName=ATDISK_DRIVER_INTERNAL -Language=English -ATDISK_DRIVER_INTERNAL -. - -MessageId=0x44 -Severity=Success -Facility=System -SymbolicName=MULTIPLE_IRP_COMPLETE_REQUESTS -Language=English -MULTIPLE_IRP_COMPLETE_REQUESTS -. - -MessageId=0x45 -Severity=Success -Facility=System -SymbolicName=INSUFFICIENT_SYSTEM_MAP_REGS -Language=English -INSUFFICIENT_SYSTEM_MAP_REGS -. - -MessageId=0x48 -Severity=Success -Facility=System -SymbolicName=CANCEL_STATE_IN_COMPLETED_IRP -Language=English -CANCEL_STATE_IN_COMPLETED_IRP -. - -MessageId=0x49 -Severity=Success -Facility=System -SymbolicName=PAGE_FAULT_WITH_INTERRUPTS_OFF -Language=English -PAGE_FAULT_WITH_INTERRUPTS_OFF -. - -MessageId=0x4A -Severity=Success -Facility=System -SymbolicName=IRQL_GT_ZERO_AT_SYSTEM_SERVICE -Language=English -IRQL_GT_ZERO_AT_SYSTEM_SERVICE -. - -MessageId=0x4B -Severity=Success -Facility=System -SymbolicName=STREAMS_INTERNAL_ERROR -Language=English -STREAMS_INTERNAL_ERROR -. - -MessageId=0x4C -Severity=Success -Facility=System -SymbolicName=FATAL_UNHANDLED_HARD_ERROR -Language=English -FATAL_UNHANDLED_HARD_ERROR -. - -MessageId=0x4D -Severity=Success -Facility=System -SymbolicName=NO_PAGES_AVAILABLE -Language=English -NO_PAGES_AVAILABLE -. - -MessageId=0x4E -Severity=Success -Facility=System -SymbolicName=PFN_LIST_CORRUPT -Language=English -PFN_LIST_CORRUPT -. - -MessageId=0x4F -Severity=Success -Facility=System -SymbolicName=NDIS_INTERNAL_ERROR -Language=English -NDIS_INTERNAL_ERROR -. - -MessageId=0x50 -Severity=Success -Facility=System -SymbolicName=PAGE_FAULT_IN_NONPAGED_AREA -Language=English -PAGE_FAULT_IN_NONPAGED_AREA -. - -MessageId=0x51 -Severity=Success -Facility=System -SymbolicName=REGISTRY_ERROR -Language=English -REGISTRY_ERROR -. - -MessageId=0x52 -Severity=Success -Facility=System -SymbolicName=MAILSLOT_FILE_SYSTEM -Language=English -MAILSLOT_FILE_SYSTEM -. - -MessageId=0x53 -Severity=Success -Facility=System -SymbolicName=NO_BOOT_DEVICE -Language=English -NO_BOOT_DEVICE -. - -MessageId=0x54 -Severity=Success -Facility=System -SymbolicName=LM_SERVER_INTERNAL_ERROR -Language=English -LM_SERVER_INTERNAL_ERROR -. - -MessageId=0x55 -Severity=Success -Facility=System -SymbolicName=DATA_COHERENCY_EXCEPTION -Language=English -DATA_COHERENCY_EXCEPTION -. - -MessageId=0x56 -Severity=Success -Facility=System -SymbolicName=INSTRUCTION_COHERENCY_EXCEPTION -Language=English -INSTRUCTION_COHERENCY_EXCEPTION -. - -MessageId=0x57 -Severity=Success -Facility=System -SymbolicName=XNS_INTERNAL_ERROR -Language=English -XNS_INTERNAL_ERROR -. - -MessageId=0x58 -Severity=Success -Facility=System -SymbolicName=FTDISK_INTERNAL_ERROR -Language=English -FTDISK_INTERNAL_ERROR -. - -MessageId=0x59 -Severity=Success -Facility=System -SymbolicName=PINBALL_FILE_SYSTEM -Language=English -PINBALL_FILE_SYSTEM -. - -MessageId=0x5A -Severity=Success -Facility=System -SymbolicName=CRITICAL_SERVICE_FAILED -Language=English -CRITICAL_SERVICE_FAILED -. - -MessageId=0x5B -Severity=Success -Facility=System -SymbolicName=SET_ENV_VAR_FAILED -Language=English -SET_ENV_VAR_FAILED -. - -MessageId=0x5C -Severity=Success -Facility=System -SymbolicName=HAL_INITIALIZATION_FAILED -Language=English -HAL_INITIALIZATION_FAILED -. - -MessageId=0x5D -Severity=Success -Facility=System -SymbolicName=UNSUPPORTED_PROCESSOR -Language=English -UNSUPPORTED_PROCESSOR -. - -MessageId=0x5E -Severity=Success -Facility=System -SymbolicName=OBJECT_INITIALIZATION_FAILED -Language=English -OBJECT_INITIALIZATION_FAILED -. - -MessageId=0x5F -Severity=Success -Facility=System -SymbolicName=SECURITY_INITIALIZATION_FAILED -Language=English -SECURITY_INITIALIZATION_FAILED -. - -MessageId=0x60 -Severity=Success -Facility=System -SymbolicName=PROCESS_INITIALIZATION_FAILED -Language=English -PROCESS_INITIALIZATION_FAILED -. - -MessageId=0x61 -Severity=Success -Facility=System -SymbolicName=HAL1_INITIALIZATION_FAILED -Language=English -HAL1_INITIALIZATION_FAILED -. - -MessageId=0x62 -Severity=Success -Facility=System -SymbolicName=OBJECT1_INITIALIZATION_FAILED -Language=English -OBJECT1_INITIALIZATION_FAILED -. - -MessageId=0x63 -Severity=Success -Facility=System -SymbolicName=SECURITY1_INITIALIZATION_FAILED -Language=English -SECURITY1_INITIALIZATION_FAILED -. - -MessageId=0x64 -Severity=Success -Facility=System -SymbolicName=SYMBOLIC_INITIALIZATION_FAILED -Language=English -SYMBOLIC_INITIALIZATION_FAILED -. - -MessageId=0x65 -Severity=Success -Facility=System -SymbolicName=MEMORY1_INITIALIZATION_FAILED -Language=English -MEMORY1_INITIALIZATION_FAILED -. - -MessageId=0x66 -Severity=Success -Facility=System -SymbolicName=CACHE_INITIALIZATION_FAILED -Language=English -CACHE_INITIALIZATION_FAILED -. - -MessageId=0x67 -Severity=Success -Facility=System -SymbolicName=CONFIG_INITIALIZATION_FAILED -Language=English -CONFIG_INITIALIZATION_FAILED -. - -MessageId=0x68 -Severity=Success -Facility=System -SymbolicName=FILE_INITIALIZATION_FAILED -Language=English -FILE_INITIALIZATION_FAILED -. - -MessageId=0x69 -Severity=Success -Facility=System -SymbolicName=IO1_INITIALIZATION_FAILED -Language=English -IO1_INITIALIZATION_FAILED -. - -MessageId=0x6A -Severity=Success -Facility=System -SymbolicName=LPC_INITIALIZATION_FAILED -Language=English -LPC_INITIALIZATION_FAILED -. - -MessageId=0x6B -Severity=Success -Facility=System -SymbolicName=PROCESS1_INITIALIZATION_FAILED -Language=English -PROCESS1_INITIALIZATION_FAILED -. - -MessageId=0x6C -Severity=Success -Facility=System -SymbolicName=REFMON_INITIALIZATION_FAILED -Language=English -REFMON_INITIALIZATION_FAILED -. - -MessageId=0x6D -Severity=Success -Facility=System -SymbolicName=SESSION1_INITIALIZATION_FAILED -Language=English -SESSION1_INITIALIZATION_FAILED -. - -MessageId=0x6E -Severity=Success -Facility=System -SymbolicName=SESSION2_INITIALIZATION_FAILED -Language=English -SESSION2_INITIALIZATION_FAILED -. - -MessageId=0x6F -Severity=Success -Facility=System -SymbolicName=SESSION3_INITIALIZATION_FAILED -Language=English -SESSION3_INITIALIZATION_FAILED -. - -MessageId=0x70 -Severity=Success -Facility=System -SymbolicName=SESSION4_INITIALIZATION_FAILED -Language=English -SESSION4_INITIALIZATION_FAILED -. - -MessageId=0x71 -Severity=Success -Facility=System -SymbolicName=SESSION5_INITIALIZATION_FAILED -Language=English -SESSION5_INITIALIZATION_FAILED -. - -MessageId=0x72 -Severity=Success -Facility=System -SymbolicName=ASSIGN_DRIVE_LETTERS_FAILED -Language=English -ASSIGN_DRIVE_LETTERS_FAILED -. - -MessageId=0x73 -Severity=Success -Facility=System -SymbolicName=CONFIG_LIST_FAILED -Language=English -CONFIG_LIST_FAILED -. - -MessageId=0x74 -Severity=Success -Facility=System -SymbolicName=BAD_SYSTEM_CONFIG_INFO -Language=English -BAD_SYSTEM_CONFIG_INFO -. - -MessageId=0x75 -Severity=Success -Facility=System -SymbolicName=CANNOT_WRITE_CONFIGURATION -Language=English -CANNOT_WRITE_CONFIGURATION -. - -MessageId=0x76 -Severity=Success -Facility=System -SymbolicName=PROCESS_HAS_LOCKED_PAGES -Language=English -PROCESS_HAS_LOCKED_PAGES -. - -MessageId=0x77 -Severity=Success -Facility=System -SymbolicName=KERNEL_STACK_INPAGE_ERROR -Language=English -KERNEL_STACK_INPAGE_ERROR -. - -MessageId=0x78 -Severity=Success -Facility=System -SymbolicName=PHASE0_EXCEPTION -Language=English -PHASE0_EXCEPTION -. - -MessageId=0x79 -Severity=Success -Facility=System -SymbolicName=MISMATCHED_HAL -Language=English -Mismatched Kernel and HAL image -. - -MessageId=0x7A -Severity=Success -Facility=System -SymbolicName=KERNEL_DATA_INPAGE_ERROR -Language=English -KERNEL_DATA_INPAGE_ERROR -. - -MessageId=0x7B -Severity=Success -Facility=System -SymbolicName=INACCESSIBLE_BOOT_DEVICE -Language=English -Check for viruses on your computer. Remove any newly installed -hard drives or hard drive controllers. Check your hard drive -to make sure it is properly configured and terminated. -Run CHKDSK /F to check for hard drive corruption, and then -restart your computer. -. - -MessageId=0x7C -Severity=Success -Facility=System -SymbolicName=BUGCODE_NDIS_DRIVER -Language=English -BUGCODE_NDIS_DRIVER -. - -MessageId=0x7D -Severity=Success -Facility=System -SymbolicName=INSTALL_MORE_MEMORY -Language=English -INSTALL_MORE_MEMORY -. - -MessageId=0x7E -Severity=Success -Facility=System -SymbolicName=SYSTEM_THREAD_EXCEPTION_NOT_HANDLED -Language=English -SYSTEM_THREAD_EXCEPTION_NOT_HANDLED -. - -MessageId=0x7F -Severity=Success -Facility=System -SymbolicName=UNEXPECTED_KERNEL_MODE_TRAP -Language=English -Run a system diagnostic utility supplied by your hardware manufacturer. -In particular, run a memory check, and check for faulty or mismatched -memory. Try changing video adapters. - -Disable or remove any newly installed hardware and drivers. Disable or -remove any newly installed software. If you need to use Safe Mode to -remove or disable components, restart your computer, press F8 to select -Advanced Startup Options, and then select Safe Mode. -. - -MessageId=0x80 -Severity=Success -Facility=System -SymbolicName=NMI_HARDWARE_FAILURE -Language=English -Hardware malfunction -. - -MessageId=0x81 -Severity=Success -Facility=System -SymbolicName=SPIN_LOCK_INIT_FAILURE -Language=English -SPIN_LOCK_INIT_FAILURE -. - -MessageId=0x8E -Severity=Success -Facility=System -SymbolicName=KERNEL_MODE_EXCEPTION_NOT_HANDLED -Language=English -KERNEL_MODE_EXCEPTION_NOT_HANDLED -. - -MessageId=0x8F -Severity=Success -Facility=System -SymbolicName=PP0_INITIALIZATION_FAILED -Language=English -PP0_INITIALIZATION_FAILED -. - -MessageId=0x90 -Severity=Success -Facility=System -SymbolicName=PP1_INITIALIZATION_FAILED -Language=English -PP1_INITIALIZATION_FAILED -. - -MessageId=0x93 -Severity=Success -Facility=System -SymbolicName=INVALID_KERNEL_HANDLE -Language=English -INVALID_KERNEL_HANDLE -. - -MessageId=0x94 -Severity=Success -Facility=System -SymbolicName=KERNEL_STACK_LOCKED_AT_EXIT -Language=English -KERNEL_STACK_LOCKED_AT_EXIT -. - -MessageId=0x96 -Severity=Success -Facility=System -SymbolicName=INVALID_WORK_QUEUE_ITEM -Language=English -INVALID_WORK_QUEUE_ITEM -. - -MessageId=0x9A -Severity=Success -Facility=System -SymbolicName=MORAL_EXCEPTION_ERROR -Language=English -An attempt was made to execute a proprietary machine code instruction. -The system has been shut down to prevent damage to your conscience. - -If this is the first time you have seen this error screen, read -. - -If problems continue, remove all nonfree software from your computer. -. - -MessageId=0xA0 -Severity=Success -Facility=System -SymbolicName=INTERNAL_POWER_ERROR -Language=English -INTERNAL_POWER_ERROR -. - -MessageId=0xA1 -Severity=Success -Facility=System -SymbolicName=PCI_BUS_DRIVER_INTERNAL -Language=English -Inconsistency detected in the PCI Bus driver's internal structures. -. - -MessageId=0xA5 -Severity=Success -Facility=System -SymbolicName=ACPI_BIOS_ERROR -Language=English -The BIOS in this system is not fully ACPI compliant. Please contact your -system vendor for an updated BIOS. -. - -MessageId=0xA8 -Severity=Informational -Facility=System -SymbolicName=BOOTING_IN_SAFEMODE_MINIMAL -Language=English -The system is booting in safemode - Minimal Services -. - -MessageId=0xA9 -Severity=Informational -Facility=System -SymbolicName=BOOTING_IN_SAFEMODE_NETWORK -Language=English -The system is booting in safemode - Minimal Services with Network -. - -MessageId=0xAA -Severity=Informational -Facility=System -SymbolicName=BOOTING_IN_SAFEMODE_DSREPAIR -Language=English -The system is booting in safemode - Directory Services Repair -. - -MessageId=0xAC -Severity=Success -Facility=System -SymbolicName=HAL_MEMORY_ALLOCATION -Language=English -Allocate from NonPaged Pool failed for a HAL critical allocation. -. - -MessageId=0xB4 -Severity=Success -Facility=System -SymbolicName=VIDEO_DRIVER_INIT_FAILURE -Language=English -The video driver failed to initialize -. - -MessageId=0xB7 -Severity=Informational -Facility=System -SymbolicName=BOOTLOG_ENABLED -Language=English -Boot Logging Enabled -. - -MessageId=0xB8 -Severity=Success -Facility=System -SymbolicName=ATTEMPTED_SWITCH_FROM_DPC -Language=English -A wait operation, attach process, or yield was attempted from a DPC routine. -. - -MessageId=0xBE -Severity=Success -Facility=System -SymbolicName=ATTEMPTED_WRITE_TO_READONLY_MEMORY -Language=English -An attempt was made to write to read-only memory. -. - -MessageId=0xC1 -Severity=Success -Facility=System -SymbolicName=SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION -Language=English -SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION -. - -MessageId=0xC2 -Severity=Success -Facility=System -SymbolicName=BAD_POOL_CALLER -Language=English -BAD_POOL_CALLER -. - -MessageId=0xC3 -Severity=Success -Facility=System -SymbolicName=BUGCODE_PSS_MESSAGE_SIGNATURE -Language=English -A system file that is owned by ReactOS was replaced by an application -running on your system. The operating system detected this and tried to -verify the validity of the file's signature. The operating system found that -the file signature is not valid and put the original, correct file back -so that your operating system will continue to function properly. -. - -MessageId=0xC4 -Severity=Success -Facility=System -SymbolicName=DRIVER_VERIFIER_DETECTED_VIOLATION -Language=English -Driver Verifier has detected a fatal error condition. -. - -MessageId=0xC5 -Severity=Success -Facility=System -SymbolicName=DRIVER_CORRUPTED_EXPOOL -Language=English -A device driver has pool. - -Check to make sure any new hardware or software is properly installed. -If this is a new installation, ask your hardware or software manufacturer -for any ReactOS updates you might need. - -Run the driver verifier against any new (or suspect) drivers. -If that doesn't reveal the corrupting driver, try enabling special pool. -Both of these features are intended to catch the corruption at an earlier -point where the offending driver can be identified. - -If you need to use Safe Mode to remove or disable components, -restart your computer, press F8 to select Advanced Startup Options, -and then select Safe Mode. -. - -MessageId=0xC6 -Severity=Success -Facility=System -SymbolicName=DRIVER_CAUGHT_MODIFYING_FREED_POOL -Language=English -A device driver attempting to corrupt the system has been caught. -The faulty driver currently on the kernel stack must be replaced -with a working version. -. - -MessageId=0xC8 -Severity=Success -Facility=System -SymbolicName=IRQL_UNEXPECTED_VALUE -Language=English -The processor's IRQL is not valid for the currently executing context. -This is a software error condition and is usually caused by a device -driver changing IRQL and not restoring it to its previous value when -it has finished its task. -. - -MessageId=0xCA -Severity=Success -Facility=System -SymbolicName=PNP_DETECTED_FATAL_ERROR -Language=English -Plug and Play detected an error most likely caused by a faulty driver. -. - -MessageId=0xCB -Severity=Success -Facility=System -SymbolicName=DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS -Language=English -DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS -. - -MessageId=0xCC -Severity=Success -Facility=System -SymbolicName=PAGE_FAULT_IN_FREED_SPECIAL_POOL -Language=English -PAGE_FAULT_IN_FREED_SPECIAL_POOL -. - -MessageId=0xCD -Severity=Success -Facility=System -SymbolicName=PAGE_FAULT_BEYOND_END_OF_ALLOCATION -Language=English -PAGE_FAULT_BEYOND_END_OF_ALLOCATION -. - -MessageId=0xCE -Severity=Success -Facility=System -SymbolicName=DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS -Language=English -DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS -. - -MessageId=0xD0 -Severity=Success -Facility=System -SymbolicName=DRIVER_CORRUPTED_MMPOOL -Language=English -DRIVER_CORRUPTED_MMPOOL -. - -MessageId=0xD1 -Severity=Success -Facility=System -SymbolicName=DRIVER_IRQL_NOT_LESS_OR_EQUAL -Language=English -DRIVER_IRQL_NOT_LESS_OR_EQUAL -. - -MessageId=0xD3 -Severity=Success -Facility=System -SymbolicName=DRIVER_PORTION_MUST_BE_NONPAGED -Language=English -The driver mistakenly marked a part of its image pageable instead of non-pageable. -. - -MessageId=0xD4 -Severity=Success -Facility=System -SymbolicName=SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD -Language=English -The driver unloaded without cancelling pending operations. -. - -MessageId=0xD5 -Severity=Success -Facility=System -SymbolicName=DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL -Language=English -DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL -. - -MessageId=0xD6 -Severity=Success -Facility=System -SymbolicName=DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION -Language=English -DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION -. - -MessageId=0xD7 -Severity=Success -Facility=System -SymbolicName=DRIVER_UNMAPPING_INVALID_VIEW -Language=English -The driver is attempting to unmap an invalid memory address. -. - -MessageId=0xD8 -Severity=Success -Facility=System -SymbolicName=DRIVER_USED_EXCESSIVE_PTES -Language=English -The driver has used an excessive number of system PTEs. -. - -MessageId=0xD9 -Severity=Success -Facility=System -SymbolicName=LOCKED_PAGES_TRACKER_CORRUPTION -Language=English -The system's structures tracking locked pages have been corrupted. -. - -MessageId=0xDA -Severity=Success -Facility=System -SymbolicName=SYSTEM_PTE_MISUSE -Language=English -The driver has called a system PTE routine in an improper way. -. - -MessageId=0xDB -Severity=Success -Facility=System -SymbolicName=DRIVER_CORRUPTED_SYSPTES -Language=English -The driver has corrupted system PTEs. -. - -MessageId=0xDC -Severity=Success -Facility=System -SymbolicName=DRIVER_INVALID_STACK_ACCESS -Language=English -The driver has accessed an invalid stack address. -. - -MessageId=0xDE -Severity=Success -Facility=System -SymbolicName=POOL_CORRUPTION_IN_FILE_AREA -Language=English -Kernel pool corruption has been detected in an area marked to be written to disk. -. - -MessageId=0xDF -Severity=Success -Facility=System -SymbolicName=IMPERSONATING_WORKER_THREAD -Language=English -A worker thread is impersonating another process. The work item forgot to -disable impersonation before it returned. -. - -MessageId=0xE0 -Severity=Success -Facility=System -SymbolicName=ACPI_BIOS_FATAL_ERROR -Language=English - -Your computer (BIOS) has reported that a component in your system is faulty and -has prevented ReactOS from operating. You can determine which component is -faulty by running the diagnostic disk or tool that came with your computer. - -If you do not have this tool, you must contact your system vendor and report -this error message to them. They will be able to assist you in correcting this -hardware problem thereby allowing ReactOS to operate. -. - -MessageId=0xE1 -Severity=Success -Facility=System -SymbolicName=WORKER_THREAD_RETURNED_AT_BAD_IRQL -Language=English -WORKER_THREAD_RETURNED_AT_BAD_IRQL -. - -MessageId=0xE2 -Severity=Success -Facility=System -SymbolicName=MANUALLY_INITIATED_CRASH -Language=English -MANUALLY_INITIATED_CRASH -. - -MessageId=0xE3 -Severity=Success -Facility=System -SymbolicName=RESOURCE_NOT_OWNED -Language=English -RESOURCE_NOT_OWNED -. - -MessageId=0xE4 -Severity=Success -Facility=System -SymbolicName=WORKER_INVALID -Language=English -If Parameter1 == 0, an executive worker item was found in memory which -must not contain such items. Usually this is memory being freed. This -is usually caused by a device driver that has not cleaned up properly -before freeing memory. - -If Parameter1 == 1, an attempt was made to queue an executive worker item -with a usermode execution routine. -. - -MessageId=0xE5 -Severity=Success -Facility=System -SymbolicName=POWER_FAILURE_SIMULATE -Language=English -POWER_FAILURE_SIMULATE -. - -MessageId=0xE8 -Severity=Success -Facility=System -SymbolicName=INVALID_CANCEL_OF_FILE_OPEN -Language=English -Invalid cancel of a open file. It already has handle. -. - -MessageId=0xE9 -Severity=Success -Facility=System -SymbolicName=ACTIVE_EX_WORKER_THREAD_TERMINATION -Language=English -An executive worker thread is being terminated without having gone through the worker thread rundown code. -Work items queued to the Ex worker queue must not terminate their threads. -A stack trace should indicate the culprit. -. - -MessageId=0xEA -Severity=Success -Facility=System -SymbolicName=THREAD_STUCK_IN_DEVICE_DRIVER -Language=English - -The device driver got stuck in an infinite loop. This usually indicates -problem with the device itself or with the device driver programming the -hardware incorrectly. - -Please check with your hardware device vendor for any driver updates. -. - -MessageId=0xEF -Severity=Success -Facility=System -SymbolicName=CRITICAL_PROCESS_DIED -Language=English -The kernel attempted to ready a thread that was in an incorrect state such as terminated. -. - -MessageId=0xF4 -Severity=Success -Facility=System -SymbolicName=CRITICAL_OBJECT_TERMINATION -Language=English -A process or thread crucial to system operation has unexpectedly exited or been terminated. -. - -MessageId=0xF6 -Severity=Success -Facility=System -SymbolicName=PCI_VERIFIER_DETECTED_VIOLATION -Language=English -The PCI driver has detected an error in a PCI device or BIOS being verified. -. - -MessageId=0xF7 -Severity=Success -Facility=System -SymbolicName=DRIVER_OVERRAN_STACK_BUFFER -Language=English -A driver has overrun a stack-based buffer. This overrun could potentially -allow a malicious user to gain control of this machine. -. - -MessageId=0xF8 -Severity=Success -Facility=System -SymbolicName=RAMDISK_BOOT_INITIALIZATION_FAILED -Language=English -An initialization failure occurred while attempting to boot from the RAM disk. -. - -MessageId=0xF9 -Severity=Success -Facility=System -SymbolicName=DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN -Language=English -STATUS_REPARSE was returned from a FSD when trying to open a volume. -. - -MessageId=0xFA -Severity=Success -Facility=System -SymbolicName=HTTP_DRIVER_CORRUPTED -Language=English -Corruption was detected in the HTTP kernel driver. -. - -MessageId=0xFC -Severity=Success -Facility=System -SymbolicName=ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY -Language=English -An attempt was made to execute to non-executable memory. -. - -MessageId=0xFD -Severity=Success -Facility=System -SymbolicName=DIRTY_NOWRITE_PAGES_CONGESTION -Language=English -DIRTY_NOWRITE_PAGES_CONGESTION -. - -MessageId=0xFE -Severity=Success -Facility=System -SymbolicName=BUGCODE_USB_DRIVER -Language=English -A fatal error occurred in the USB driver stack. -. - -MessageId=0x139 -Severity=Success -Facility=System -SymbolicName=KERNEL_SECURITY_CHECK_FAILURE -Language=English -A critical kernel security check failed. -. +MessageIdTypedef=ULONG + +SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS + Informational=0x1:STATUS_SEVERITY_INFORMATIONAL + Warning=0x2:STATUS_SEVERITY_WARNING + Error=0x3:STATUS_SEVERITY_ERROR + ) + +FacilityNames=(System=0x0:FACILITY_SYSTEM + Runtime=0x2:FACILITY_RUNTIME + Stubs=0x3:FACILITY_STUBS + Io=0x4:FACILITY_IO_ERROR_CODE + ) + +LanguageNames=(English=0x409:MSG00409) + +MessageId=0x7E +Severity=Informational +Facility=System +SymbolicName=WINDOWS_NT_BANNER +Language=English +ReactOS Version %s +Build %s +Reporting NT %s (Build %u%s) +. + +MessageId=0x87 +Severity=Informational +Facility=System +SymbolicName=WINDOWS_NT_CSD_STRING +Language=English +Service Pack +. + +MessageId=0x88 +Severity=Informational +Facility=System +SymbolicName=WINDOWS_NT_INFO_STRING +Language=English +%u System Processor [%u MB Memory] %Z +. + +MessageId=0x89 +Severity=Informational +Facility=System +SymbolicName=WINDOWS_NT_MP_STRING +Language=English +MultiProcessor Kernel +. + +MessageId=0x8A +Severity=Informational +Facility=System +SymbolicName=THREAD_TERMINATE_HELD_MUTEX +Language=English +A kernel thread terminated while holding a mutex +. + +MessageId=0x9D +Severity=Informational +Facility=System +SymbolicName=WINDOWS_NT_INFO_STRING_PLURAL +Language=English +%u System Processors [%u MB Memory] %Z +. + +MessageId=0x9F +Severity=Informational +Facility=System +SymbolicName=REACTOS_COPYRIGHT_NOTICE +Language=English +\n\nReactOS is free software, covered by the GNU General Public License, + and you\n are welcome to change it and/or distribute copies of it under + certain\n conditions. There is absolutely no warranty for ReactOS.\n +. + +MessageId=0x7F +Severity=Warning +Facility=System +SymbolicName=BUGCHECK_MESSAGE_INTRO +Language=English +A problem has been detected and ReactOS has been shut down to prevent damage +to your computer. +. + +MessageId=0x80 +Severity=Warning +Facility=System +SymbolicName=BUGCODE_ID_DRIVER +Language=English +The problem seems to be caused by the following file: + +. + +MessageId=0x81 +Severity=Warning +Facility=System +SymbolicName=PSS_MESSAGE_INTRO +Language=English +If this is the first time you've seen this Stop error screen, +restart your computer. If this screen appears again, follow +these steps: + +. + +MessageId=0x82 +Severity=Warning +Facility=System +SymbolicName=BUGCODE_PSS_MESSAGE +Language=English +Check to make sure any new hardware or software is properly installed. +If this is a new installation, ask your hardware or software manufacturer +for any ReactOS updates you might need. + +If problems continue, disable or remove any newly installed hardware +or software. Disable BIOS memory options such as caching or shadowing. +If you need to use Safe Mode to remove or disable components, restart +your computer, press F8 to select Advanced Startup Options, and then +select Safe Mode. +. + +MessageId=0x83 +Severity=Warning +Facility=System +SymbolicName=BUGCHECK_TECH_INFO +Language=English +Technical information: +. + +MessageId=0x0 +Severity=Success +Facility=System +SymbolicName=UNDEFINED_BUG_CODE +Language=English +The bug code is undefined. Please use an existing code instead. +. + +MessageId=0x01 +Severity=Success +Facility=System +SymbolicName=APC_INDEX_MISMATCH +Language=English +APC_INDEX_MISMATCH +. + +MessageId=0x02 +Severity=Success +Facility=System +SymbolicName=DEVICE_QUEUE_NOT_BUSY +Language=English +DEVICE_QUEUE_NOT_BUSY +. + +MessageId=0x3 +Severity=Success +Facility=System +SymbolicName=INVALID_AFFINITY_SET +Language=English +INVALID_AFFINITY_SET +. + +MessageId=0x04 +Severity=Success +Facility=System +SymbolicName=INVALID_DATA_ACCESS_TRAP +Language=English +INVALID_DATA_ACCESS_TRAP +. + +MessageId=0x05 +Severity=Success +Facility=System +SymbolicName=INVALID_PROCESS_ATTACH_ATTEMPT +Language=English +INVALID_PROCESS_ATTACH_ATTEMPT +. + +MessageId=0x06 +Severity=Success +Facility=System +SymbolicName=INVALID_PROCESS_DETACH_ATTEMPT +Language=English +INVALID_PROCESS_DETACH_ATTEMPT +. + +MessageId=0x7 +Severity=Success +Facility=System +SymbolicName=INVALID_SOFTWARE_INTERRUPT +Language=English +INVALID_SOFTWARE_INTERRUPT +. + +MessageId=0x08 +Severity=Success +Facility=System +SymbolicName=IRQL_NOT_DISPATCH_LEVEL +Language=English +IRQL_NOT_DISPATCH_LEVEL +. + +MessageId=0x09 +Severity=Success +Facility=System +SymbolicName=IRQL_NOT_GREATER_OR_EQUAL +Language=English +IRQL_NOT_GREATER_OR_EQUAL +. + +MessageId=0x0A +Severity=Success +Facility=System +SymbolicName=IRQL_NOT_LESS_OR_EQUAL +Language=English +IRQL_NOT_LESS_OR_EQUAL +. + +MessageId=0x0B +Severity=Success +Facility=System +SymbolicName=NO_EXCEPTION_HANDLING_SUPPORT +Language=English +NO_EXCEPTION_HANDLING_SUPPORT +. + +MessageId=0x0C +Severity=Success +Facility=System +SymbolicName=MAXIMUM_WAIT_OBJECTS_EXCEEDED +Language=English +MAXIMUM_WAIT_OBJECTS_EXCEEDED +. + +MessageId=0x0D +Severity=Success +Facility=System +SymbolicName=MUTEX_LEVEL_NUMBER_VIOLATION +Language=English +MUTEX_LEVEL_NUMBER_VIOLATION +. + +MessageId=0x0E +Severity=Success +Facility=System +SymbolicName=NO_USER_MODE_CONTEXT +Language=English +NO_USER_MODE_CONTEXT +. + +MessageId=0x0F +Severity=Success +Facility=System +SymbolicName=SPIN_LOCK_ALREADY_OWNED +Language=English +SPIN_LOCK_ALREADY_OWNED +. + +MessageId=0x10 +Severity=Success +Facility=System +SymbolicName=SPIN_LOCK_NOT_OWNED +Language=English +SPIN_LOCK_NOT_OWNED +. + +MessageId=0x11 +Severity=Success +Facility=System +SymbolicName=THREAD_NOT_MUTEX_OWNER +Language=English +THREAD_NOT_MUTEX_OWNER +. + +MessageId=0x12 +Severity=Success +Facility=System +SymbolicName=TRAP_CAUSE_UNKNOWN +Language=English +TRAP_CAUSE_UNKNOWN +. + +MessageId=0x13 +Severity=Success +Facility=System +SymbolicName=EMPTY_THREAD_REAPER_LIST +Language=English +EMPTY_THREAD_REAPER_LIST +. + +MessageId=0x14 +Severity=Success +Facility=System +SymbolicName=CREATE_DELETE_LOCK_NOT_LOCKED +Language=English +The thread reaper was handed a thread to reap, but the thread's process' +. + +MessageId=0x15 +Severity=Success +Facility=System +SymbolicName=LAST_CHANCE_CALLED_FROM_KMODE +Language=English +LAST_CHANCE_CALLED_FROM_KMODE +. + +MessageId=0x16 +Severity=Success +Facility=System +SymbolicName=CID_HANDLE_CREATION +Language=English +CID_HANDLE_CREATION +. + +MessageId=0x17 +Severity=Success +Facility=System +SymbolicName=CID_HANDLE_DELETION +Language=English +CID_HANDLE_DELETION +. + +MessageId=0x18 +Severity=Success +Facility=System +SymbolicName=REFERENCE_BY_POINTER +Language=English +REFERENCE_BY_POINTER +. + +MessageId=0x19 +Severity=Success +Facility=System +SymbolicName=BAD_POOL_HEADER +Language=English +BAD_POOL_HEADER +. + +MessageId=0x1A +Severity=Success +Facility=System +SymbolicName=MEMORY_MANAGEMENT +Language=English +MEMORY_MANAGEMENT +. + +MessageId=0x1B +Severity=Success +Facility=System +SymbolicName=PFN_SHARE_COUNT +Language=English +PFN_SHARE_COUNT +. + +MessageId=0x1C +Severity=Success +Facility=System +SymbolicName=PFN_REFERENCE_COUNT +Language=English +PFN_REFERENCE_COUNT +. + +MessageId=0x1D +Severity=Success +Facility=System +SymbolicName=NO_SPINLOCK_AVAILABLE +Language=English +NO_SPINLOCK_AVAILABLE +. + +MessageId=0x1E +Severity=Success +Facility=System +SymbolicName=KMODE_EXCEPTION_NOT_HANDLED +Language=English +Check to be sure you have adequate disk space. If a driver is +identified in the Stop message, disable the driver or check +with the manufacturer for driver updates. Try changing video +adapters. + +Check with your hardware vendor for any BIOS updates. Disable +BIOS memory options such as caching or shadowing. If you need +to use Safe Mode to remove or disable components, restart your +computer, press F8 to select Advanced Startup Options, and then +select Safe Mode. +. + +MessageId=0x1F +Severity=Success +Facility=System +SymbolicName=SHARED_RESOURCE_CONV_ERROR +Language=English +SHARED_RESOURCE_CONV_ERROR +. + +MessageId=0x20 +Severity=Success +Facility=System +SymbolicName=KERNEL_APC_PENDING_DURING_EXIT +Language=English +KERNEL_APC_PENDING_DURING_EXIT +. + +MessageId=0x21 +Severity=Success +Facility=System +SymbolicName=QUOTA_UNDERFLOW +Language=English +QUOTA_UNDERFLOW +. + +MessageId=0x22 +Severity=Success +Facility=System +SymbolicName=FILE_SYSTEM +Language=English +FILE_SYSTEM +. + +MessageId=0x23 +Severity=Success +Facility=System +SymbolicName=FAT_FILE_SYSTEM +Language=English +Disable or uninstall any anti-virus, disk defragmentation +or backup utilities. Check your hard drive configuration, +and check for any updated drivers. Run CHKDSK /F to check +for hard drive corruption, and then restart your computer. +. + +MessageId=0x24 +Severity=Success +Facility=System +SymbolicName=NTFS_FILE_SYSTEM +Language=English +NTFS_FILE_SYSTEM +. + +MessageId=0x25 +Severity=Success +Facility=System +SymbolicName=NPFS_FILE_SYSTEM +Language=English +NPFS_FILE_SYSTEM +. + +MessageId=0x26 +Severity=Success +Facility=System +SymbolicName=CDFS_FILE_SYSTEM +Language=English +CDFS_FILE_SYSTEM +. + +MessageId=0x27 +Severity=Success +Facility=System +SymbolicName=RDR_FILE_SYSTEM +Language=English +RDR_FILE_SYSTEM +. + +MessageId=0x28 +Severity=Success +Facility=System +SymbolicName=CORRUPT_ACCESS_TOKEN +Language=English +CORRUPT_ACCESS_TOKEN +. + +MessageId=0x29 +Severity=Success +Facility=System +SymbolicName=SECURITY_SYSTEM +Language=English +SECURITY_SYSTEM +. + +MessageId=0x2A +Severity=Success +Facility=System +SymbolicName=INCONSISTENT_IRP +Language=English +INCONSISTENT_IRP +. + +MessageId=0x2B +Severity=Success +Facility=System +SymbolicName=PANIC_STACK_SWITCH +Language=English +PANIC_STACK_SWITCH +. + +MessageId=0x2C +Severity=Success +Facility=System +SymbolicName=PORT_DRIVER_INTERNAL +Language=English +PORT_DRIVER_INTERNAL +. + +MessageId=0x2D +Severity=Success +Facility=System +SymbolicName=SCSI_DISK_DRIVER_INTERNAL +Language=English +SCSI_DISK_DRIVER_INTERNAL +. + +MessageId=0x2E +Severity=Success +Facility=System +SymbolicName=DATA_BUS_ERROR +Language=English +Run system diagnostics supplied by your hardware manufacturer. +In particular, run a memory check, and check for faulty or +mismatched memory. Try changing video adapters. + +Check with your hardware vendor for any BIOS updates. Disable +BIOS memory options such as caching or shadowing. If you need +to use Safe Mode to remove or disable components, restart your +computer, press F8 to select Advanced Startup Options, and then +select Safe Mode. +. + +MessageId=0x2F +Severity=Success +Facility=System +SymbolicName=INSTRUCTION_BUS_ERROR +Language=English +INSTRUCTION_BUS_ERROR +. + +MessageId=0x30 +Severity=Success +Facility=System +SymbolicName=SET_OF_INVALID_CONTEXT +Language=English +SET_OF_INVALID_CONTEXT +. + +MessageId=0x31 +Severity=Success +Facility=System +SymbolicName=PHASE0_INITIALIZATION_FAILED +Language=English +PHASE0_INITIALIZATION_FAILED +. + +MessageId=0x32 +Severity=Success +Facility=System +SymbolicName=PHASE1_INITIALIZATION_FAILED +Language=English +PHASE1_INITIALIZATION_FAILED +. + +MessageId=0x33 +Severity=Success +Facility=System +SymbolicName=UNEXPECTED_INITIALIZATION_CALL +Language=English +UNEXPECTED_INITIALIZATION_CALL +. + +MessageId=0x34 +Severity=Success +Facility=System +SymbolicName=CACHE_MANAGER +Language=English +CACHE_MANAGER +. + +MessageId=0x35 +Severity=Success +Facility=System +SymbolicName=NO_MORE_IRP_STACK_LOCATIONS +Language=English +NO_MORE_IRP_STACK_LOCATIONS +. + +MessageId=0x36 +Severity=Success +Facility=System +SymbolicName=DEVICE_REFERENCE_COUNT_NOT_ZERO +Language=English +DEVICE_REFERENCE_COUNT_NOT_ZERO +. + +MessageId=0x37 +Severity=Success +Facility=System +SymbolicName=FLOPPY_INTERNAL_ERROR +Language=English +FLOPPY_INTERNAL_ERROR +. + +MessageId=0x38 +Severity=Success +Facility=System +SymbolicName=SERIAL_DRIVER_INTERNAL +Language=English +SERIAL_DRIVER_INTERNAL +. + +MessageId=0x39 +Severity=Success +Facility=System +SymbolicName=SYSTEM_EXIT_OWNED_MUTEX +Language=English +SYSTEM_EXIT_OWNED_MUTEX +. + +MessageId=0x3E +Severity=Success +Facility=System +SymbolicName=MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED +Language=English +MULTIPROCESSOR_CONFIGURATION_NOT_SUPPORTED +. + +MessageId=0x3F +Severity=Success +Facility=System +SymbolicName=NO_MORE_SYSTEM_PTES +Language=English +Remove any recently installed software including backup +utilities or disk-intensive applications. + +If you need to use Safe Mode to remove or disable components, +restart your computer, press F8 to select Advanced Startup +Options, and then select Safe Mode. +. + +MessageId=0x40 +Severity=Success +Facility=System +SymbolicName=TARGET_MDL_TOO_SMALL +Language=English +TARGET_MDL_TOO_SMALL +. + +MessageId=0x41 +Severity=Success +Facility=System +SymbolicName=MUST_SUCCEED_POOL_EMPTY +Language=English +MUST_SUCCEED_POOL_EMPTY +. + +MessageId=0x42 +Severity=Success +Facility=System +SymbolicName=ATDISK_DRIVER_INTERNAL +Language=English +ATDISK_DRIVER_INTERNAL +. + +MessageId=0x44 +Severity=Success +Facility=System +SymbolicName=MULTIPLE_IRP_COMPLETE_REQUESTS +Language=English +MULTIPLE_IRP_COMPLETE_REQUESTS +. + +MessageId=0x45 +Severity=Success +Facility=System +SymbolicName=INSUFFICIENT_SYSTEM_MAP_REGS +Language=English +INSUFFICIENT_SYSTEM_MAP_REGS +. + +MessageId=0x48 +Severity=Success +Facility=System +SymbolicName=CANCEL_STATE_IN_COMPLETED_IRP +Language=English +CANCEL_STATE_IN_COMPLETED_IRP +. + +MessageId=0x49 +Severity=Success +Facility=System +SymbolicName=PAGE_FAULT_WITH_INTERRUPTS_OFF +Language=English +PAGE_FAULT_WITH_INTERRUPTS_OFF +. + +MessageId=0x4A +Severity=Success +Facility=System +SymbolicName=IRQL_GT_ZERO_AT_SYSTEM_SERVICE +Language=English +IRQL_GT_ZERO_AT_SYSTEM_SERVICE +. + +MessageId=0x4B +Severity=Success +Facility=System +SymbolicName=STREAMS_INTERNAL_ERROR +Language=English +STREAMS_INTERNAL_ERROR +. + +MessageId=0x4C +Severity=Success +Facility=System +SymbolicName=FATAL_UNHANDLED_HARD_ERROR +Language=English +FATAL_UNHANDLED_HARD_ERROR +. + +MessageId=0x4D +Severity=Success +Facility=System +SymbolicName=NO_PAGES_AVAILABLE +Language=English +NO_PAGES_AVAILABLE +. + +MessageId=0x4E +Severity=Success +Facility=System +SymbolicName=PFN_LIST_CORRUPT +Language=English +PFN_LIST_CORRUPT +. + +MessageId=0x4F +Severity=Success +Facility=System +SymbolicName=NDIS_INTERNAL_ERROR +Language=English +NDIS_INTERNAL_ERROR +. + +MessageId=0x50 +Severity=Success +Facility=System +SymbolicName=PAGE_FAULT_IN_NONPAGED_AREA +Language=English +PAGE_FAULT_IN_NONPAGED_AREA +. + +MessageId=0x51 +Severity=Success +Facility=System +SymbolicName=REGISTRY_ERROR +Language=English +REGISTRY_ERROR +. + +MessageId=0x52 +Severity=Success +Facility=System +SymbolicName=MAILSLOT_FILE_SYSTEM +Language=English +MAILSLOT_FILE_SYSTEM +. + +MessageId=0x53 +Severity=Success +Facility=System +SymbolicName=NO_BOOT_DEVICE +Language=English +NO_BOOT_DEVICE +. + +MessageId=0x54 +Severity=Success +Facility=System +SymbolicName=LM_SERVER_INTERNAL_ERROR +Language=English +LM_SERVER_INTERNAL_ERROR +. + +MessageId=0x55 +Severity=Success +Facility=System +SymbolicName=DATA_COHERENCY_EXCEPTION +Language=English +DATA_COHERENCY_EXCEPTION +. + +MessageId=0x56 +Severity=Success +Facility=System +SymbolicName=INSTRUCTION_COHERENCY_EXCEPTION +Language=English +INSTRUCTION_COHERENCY_EXCEPTION +. + +MessageId=0x57 +Severity=Success +Facility=System +SymbolicName=XNS_INTERNAL_ERROR +Language=English +XNS_INTERNAL_ERROR +. + +MessageId=0x58 +Severity=Success +Facility=System +SymbolicName=FTDISK_INTERNAL_ERROR +Language=English +FTDISK_INTERNAL_ERROR +. + +MessageId=0x59 +Severity=Success +Facility=System +SymbolicName=PINBALL_FILE_SYSTEM +Language=English +PINBALL_FILE_SYSTEM +. + +MessageId=0x5A +Severity=Success +Facility=System +SymbolicName=CRITICAL_SERVICE_FAILED +Language=English +CRITICAL_SERVICE_FAILED +. + +MessageId=0x5B +Severity=Success +Facility=System +SymbolicName=SET_ENV_VAR_FAILED +Language=English +SET_ENV_VAR_FAILED +. + +MessageId=0x5C +Severity=Success +Facility=System +SymbolicName=HAL_INITIALIZATION_FAILED +Language=English +HAL_INITIALIZATION_FAILED +. + +MessageId=0x5D +Severity=Success +Facility=System +SymbolicName=UNSUPPORTED_PROCESSOR +Language=English +UNSUPPORTED_PROCESSOR +. + +MessageId=0x5E +Severity=Success +Facility=System +SymbolicName=OBJECT_INITIALIZATION_FAILED +Language=English +OBJECT_INITIALIZATION_FAILED +. + +MessageId=0x5F +Severity=Success +Facility=System +SymbolicName=SECURITY_INITIALIZATION_FAILED +Language=English +SECURITY_INITIALIZATION_FAILED +. + +MessageId=0x60 +Severity=Success +Facility=System +SymbolicName=PROCESS_INITIALIZATION_FAILED +Language=English +PROCESS_INITIALIZATION_FAILED +. + +MessageId=0x61 +Severity=Success +Facility=System +SymbolicName=HAL1_INITIALIZATION_FAILED +Language=English +HAL1_INITIALIZATION_FAILED +. + +MessageId=0x62 +Severity=Success +Facility=System +SymbolicName=OBJECT1_INITIALIZATION_FAILED +Language=English +OBJECT1_INITIALIZATION_FAILED +. + +MessageId=0x63 +Severity=Success +Facility=System +SymbolicName=SECURITY1_INITIALIZATION_FAILED +Language=English +SECURITY1_INITIALIZATION_FAILED +. + +MessageId=0x64 +Severity=Success +Facility=System +SymbolicName=SYMBOLIC_INITIALIZATION_FAILED +Language=English +SYMBOLIC_INITIALIZATION_FAILED +. + +MessageId=0x65 +Severity=Success +Facility=System +SymbolicName=MEMORY1_INITIALIZATION_FAILED +Language=English +MEMORY1_INITIALIZATION_FAILED +. + +MessageId=0x66 +Severity=Success +Facility=System +SymbolicName=CACHE_INITIALIZATION_FAILED +Language=English +CACHE_INITIALIZATION_FAILED +. + +MessageId=0x67 +Severity=Success +Facility=System +SymbolicName=CONFIG_INITIALIZATION_FAILED +Language=English +CONFIG_INITIALIZATION_FAILED +. + +MessageId=0x68 +Severity=Success +Facility=System +SymbolicName=FILE_INITIALIZATION_FAILED +Language=English +FILE_INITIALIZATION_FAILED +. + +MessageId=0x69 +Severity=Success +Facility=System +SymbolicName=IO1_INITIALIZATION_FAILED +Language=English +IO1_INITIALIZATION_FAILED +. + +MessageId=0x6A +Severity=Success +Facility=System +SymbolicName=LPC_INITIALIZATION_FAILED +Language=English +LPC_INITIALIZATION_FAILED +. + +MessageId=0x6B +Severity=Success +Facility=System +SymbolicName=PROCESS1_INITIALIZATION_FAILED +Language=English +PROCESS1_INITIALIZATION_FAILED +. + +MessageId=0x6C +Severity=Success +Facility=System +SymbolicName=REFMON_INITIALIZATION_FAILED +Language=English +REFMON_INITIALIZATION_FAILED +. + +MessageId=0x6D +Severity=Success +Facility=System +SymbolicName=SESSION1_INITIALIZATION_FAILED +Language=English +SESSION1_INITIALIZATION_FAILED +. + +MessageId=0x6E +Severity=Success +Facility=System +SymbolicName=SESSION2_INITIALIZATION_FAILED +Language=English +SESSION2_INITIALIZATION_FAILED +. + +MessageId=0x6F +Severity=Success +Facility=System +SymbolicName=SESSION3_INITIALIZATION_FAILED +Language=English +SESSION3_INITIALIZATION_FAILED +. + +MessageId=0x70 +Severity=Success +Facility=System +SymbolicName=SESSION4_INITIALIZATION_FAILED +Language=English +SESSION4_INITIALIZATION_FAILED +. + +MessageId=0x71 +Severity=Success +Facility=System +SymbolicName=SESSION5_INITIALIZATION_FAILED +Language=English +SESSION5_INITIALIZATION_FAILED +. + +MessageId=0x72 +Severity=Success +Facility=System +SymbolicName=ASSIGN_DRIVE_LETTERS_FAILED +Language=English +ASSIGN_DRIVE_LETTERS_FAILED +. + +MessageId=0x73 +Severity=Success +Facility=System +SymbolicName=CONFIG_LIST_FAILED +Language=English +CONFIG_LIST_FAILED +. + +MessageId=0x74 +Severity=Success +Facility=System +SymbolicName=BAD_SYSTEM_CONFIG_INFO +Language=English +BAD_SYSTEM_CONFIG_INFO +. + +MessageId=0x75 +Severity=Success +Facility=System +SymbolicName=CANNOT_WRITE_CONFIGURATION +Language=English +CANNOT_WRITE_CONFIGURATION +. + +MessageId=0x76 +Severity=Success +Facility=System +SymbolicName=PROCESS_HAS_LOCKED_PAGES +Language=English +PROCESS_HAS_LOCKED_PAGES +. + +MessageId=0x77 +Severity=Success +Facility=System +SymbolicName=KERNEL_STACK_INPAGE_ERROR +Language=English +KERNEL_STACK_INPAGE_ERROR +. + +MessageId=0x78 +Severity=Success +Facility=System +SymbolicName=PHASE0_EXCEPTION +Language=English +PHASE0_EXCEPTION +. + +MessageId=0x79 +Severity=Success +Facility=System +SymbolicName=MISMATCHED_HAL +Language=English +Mismatched Kernel and HAL image +. + +MessageId=0x7A +Severity=Success +Facility=System +SymbolicName=KERNEL_DATA_INPAGE_ERROR +Language=English +KERNEL_DATA_INPAGE_ERROR +. + +MessageId=0x7B +Severity=Success +Facility=System +SymbolicName=INACCESSIBLE_BOOT_DEVICE +Language=English +Check for viruses on your computer. Remove any newly installed +hard drives or hard drive controllers. Check your hard drive +to make sure it is properly configured and terminated. +Run CHKDSK /F to check for hard drive corruption, and then +restart your computer. +. + +MessageId=0x7C +Severity=Success +Facility=System +SymbolicName=BUGCODE_NDIS_DRIVER +Language=English +BUGCODE_NDIS_DRIVER +. + +MessageId=0x7D +Severity=Success +Facility=System +SymbolicName=INSTALL_MORE_MEMORY +Language=English +INSTALL_MORE_MEMORY +. + +MessageId=0x7E +Severity=Success +Facility=System +SymbolicName=SYSTEM_THREAD_EXCEPTION_NOT_HANDLED +Language=English +SYSTEM_THREAD_EXCEPTION_NOT_HANDLED +. + +MessageId=0x7F +Severity=Success +Facility=System +SymbolicName=UNEXPECTED_KERNEL_MODE_TRAP +Language=English +Run a system diagnostic utility supplied by your hardware manufacturer. +In particular, run a memory check, and check for faulty or mismatched +memory. Try changing video adapters. + +Disable or remove any newly installed hardware and drivers. Disable or +remove any newly installed software. If you need to use Safe Mode to +remove or disable components, restart your computer, press F8 to select +Advanced Startup Options, and then select Safe Mode. +. + +MessageId=0x80 +Severity=Success +Facility=System +SymbolicName=NMI_HARDWARE_FAILURE +Language=English +Hardware malfunction +. + +MessageId=0x81 +Severity=Success +Facility=System +SymbolicName=SPIN_LOCK_INIT_FAILURE +Language=English +SPIN_LOCK_INIT_FAILURE +. + +MessageId=0x8E +Severity=Success +Facility=System +SymbolicName=KERNEL_MODE_EXCEPTION_NOT_HANDLED +Language=English +KERNEL_MODE_EXCEPTION_NOT_HANDLED +. + +MessageId=0x8F +Severity=Success +Facility=System +SymbolicName=PP0_INITIALIZATION_FAILED +Language=English +PP0_INITIALIZATION_FAILED +. + +MessageId=0x90 +Severity=Success +Facility=System +SymbolicName=PP1_INITIALIZATION_FAILED +Language=English +PP1_INITIALIZATION_FAILED +. + +MessageId=0x93 +Severity=Success +Facility=System +SymbolicName=INVALID_KERNEL_HANDLE +Language=English +INVALID_KERNEL_HANDLE +. + +MessageId=0x94 +Severity=Success +Facility=System +SymbolicName=KERNEL_STACK_LOCKED_AT_EXIT +Language=English +KERNEL_STACK_LOCKED_AT_EXIT +. + +MessageId=0x96 +Severity=Success +Facility=System +SymbolicName=INVALID_WORK_QUEUE_ITEM +Language=English +INVALID_WORK_QUEUE_ITEM +. + +MessageId=0x9A +Severity=Success +Facility=System +SymbolicName=MORAL_EXCEPTION_ERROR +Language=English +An attempt was made to execute a proprietary machine code instruction. +The system has been shut down to prevent damage to your conscience. + +If this is the first time you have seen this error screen, read +. + +If problems continue, remove all nonfree software from your computer. +. + +MessageId=0xA0 +Severity=Success +Facility=System +SymbolicName=INTERNAL_POWER_ERROR +Language=English +INTERNAL_POWER_ERROR +. + +MessageId=0xA1 +Severity=Success +Facility=System +SymbolicName=PCI_BUS_DRIVER_INTERNAL +Language=English +Inconsistency detected in the PCI Bus driver's internal structures. +. + +MessageId=0xA5 +Severity=Success +Facility=System +SymbolicName=ACPI_BIOS_ERROR +Language=English +The BIOS in this system is not fully ACPI compliant. Please contact your +system vendor for an updated BIOS. +. + +MessageId=0xA8 +Severity=Informational +Facility=System +SymbolicName=BOOTING_IN_SAFEMODE_MINIMAL +Language=English +The system is booting in safemode - Minimal Services +. + +MessageId=0xA9 +Severity=Informational +Facility=System +SymbolicName=BOOTING_IN_SAFEMODE_NETWORK +Language=English +The system is booting in safemode - Minimal Services with Network +. + +MessageId=0xAA +Severity=Informational +Facility=System +SymbolicName=BOOTING_IN_SAFEMODE_DSREPAIR +Language=English +The system is booting in safemode - Directory Services Repair +. + +MessageId=0xAC +Severity=Success +Facility=System +SymbolicName=HAL_MEMORY_ALLOCATION +Language=English +Allocate from NonPaged Pool failed for a HAL critical allocation. +. + +MessageId=0xB4 +Severity=Success +Facility=System +SymbolicName=VIDEO_DRIVER_INIT_FAILURE +Language=English +The video driver failed to initialize +. + +MessageId=0xB7 +Severity=Informational +Facility=System +SymbolicName=BOOTLOG_ENABLED +Language=English +Boot Logging Enabled +. + +MessageId=0xB8 +Severity=Success +Facility=System +SymbolicName=ATTEMPTED_SWITCH_FROM_DPC +Language=English +A wait operation, attach process, or yield was attempted from a DPC routine. +. + +MessageId=0xBE +Severity=Success +Facility=System +SymbolicName=ATTEMPTED_WRITE_TO_READONLY_MEMORY +Language=English +An attempt was made to write to read-only memory. +. + +MessageId=0xC1 +Severity=Success +Facility=System +SymbolicName=SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION +Language=English +SPECIAL_POOL_DETECTED_MEMORY_CORRUPTION +. + +MessageId=0xC2 +Severity=Success +Facility=System +SymbolicName=BAD_POOL_CALLER +Language=English +BAD_POOL_CALLER +. + +MessageId=0xC3 +Severity=Success +Facility=System +SymbolicName=BUGCODE_PSS_MESSAGE_SIGNATURE +Language=English +A system file that is owned by ReactOS was replaced by an application +running on your system. The operating system detected this and tried to +verify the validity of the file's signature. The operating system found that +the file signature is not valid and put the original, correct file back +so that your operating system will continue to function properly. +. + +MessageId=0xC4 +Severity=Success +Facility=System +SymbolicName=DRIVER_VERIFIER_DETECTED_VIOLATION +Language=English +Driver Verifier has detected a fatal error condition. +. + +MessageId=0xC5 +Severity=Success +Facility=System +SymbolicName=DRIVER_CORRUPTED_EXPOOL +Language=English +A device driver has pool. + +Check to make sure any new hardware or software is properly installed. +If this is a new installation, ask your hardware or software manufacturer +for any ReactOS updates you might need. + +Run the driver verifier against any new (or suspect) drivers. +If that doesn't reveal the corrupting driver, try enabling special pool. +Both of these features are intended to catch the corruption at an earlier +point where the offending driver can be identified. + +If you need to use Safe Mode to remove or disable components, +restart your computer, press F8 to select Advanced Startup Options, +and then select Safe Mode. +. + +MessageId=0xC6 +Severity=Success +Facility=System +SymbolicName=DRIVER_CAUGHT_MODIFYING_FREED_POOL +Language=English +A device driver attempting to corrupt the system has been caught. +The faulty driver currently on the kernel stack must be replaced +with a working version. +. + +MessageId=0xC8 +Severity=Success +Facility=System +SymbolicName=IRQL_UNEXPECTED_VALUE +Language=English +The processor's IRQL is not valid for the currently executing context. +This is a software error condition and is usually caused by a device +driver changing IRQL and not restoring it to its previous value when +it has finished its task. +. + +MessageId=0xCA +Severity=Success +Facility=System +SymbolicName=PNP_DETECTED_FATAL_ERROR +Language=English +Plug and Play detected an error most likely caused by a faulty driver. +. + +MessageId=0xCB +Severity=Success +Facility=System +SymbolicName=DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS +Language=English +DRIVER_LEFT_LOCKED_PAGES_IN_PROCESS +. + +MessageId=0xCC +Severity=Success +Facility=System +SymbolicName=PAGE_FAULT_IN_FREED_SPECIAL_POOL +Language=English +PAGE_FAULT_IN_FREED_SPECIAL_POOL +. + +MessageId=0xCD +Severity=Success +Facility=System +SymbolicName=PAGE_FAULT_BEYOND_END_OF_ALLOCATION +Language=English +PAGE_FAULT_BEYOND_END_OF_ALLOCATION +. + +MessageId=0xCE +Severity=Success +Facility=System +SymbolicName=DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS +Language=English +DRIVER_UNLOADED_WITHOUT_CANCELLING_PENDING_OPERATIONS +. + +MessageId=0xD0 +Severity=Success +Facility=System +SymbolicName=DRIVER_CORRUPTED_MMPOOL +Language=English +DRIVER_CORRUPTED_MMPOOL +. + +MessageId=0xD1 +Severity=Success +Facility=System +SymbolicName=DRIVER_IRQL_NOT_LESS_OR_EQUAL +Language=English +DRIVER_IRQL_NOT_LESS_OR_EQUAL +. + +MessageId=0xD3 +Severity=Success +Facility=System +SymbolicName=DRIVER_PORTION_MUST_BE_NONPAGED +Language=English +The driver mistakenly marked a part of its image pageable instead of non-pageable. +. + +MessageId=0xD4 +Severity=Success +Facility=System +SymbolicName=SYSTEM_SCAN_AT_RAISED_IRQL_CAUGHT_IMPROPER_DRIVER_UNLOAD +Language=English +The driver unloaded without cancelling pending operations. +. + +MessageId=0xD5 +Severity=Success +Facility=System +SymbolicName=DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL +Language=English +DRIVER_PAGE_FAULT_IN_FREED_SPECIAL_POOL +. + +MessageId=0xD6 +Severity=Success +Facility=System +SymbolicName=DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION +Language=English +DRIVER_PAGE_FAULT_BEYOND_END_OF_ALLOCATION +. + +MessageId=0xD7 +Severity=Success +Facility=System +SymbolicName=DRIVER_UNMAPPING_INVALID_VIEW +Language=English +The driver is attempting to unmap an invalid memory address. +. + +MessageId=0xD8 +Severity=Success +Facility=System +SymbolicName=DRIVER_USED_EXCESSIVE_PTES +Language=English +The driver has used an excessive number of system PTEs. +. + +MessageId=0xD9 +Severity=Success +Facility=System +SymbolicName=LOCKED_PAGES_TRACKER_CORRUPTION +Language=English +The system's structures tracking locked pages have been corrupted. +. + +MessageId=0xDA +Severity=Success +Facility=System +SymbolicName=SYSTEM_PTE_MISUSE +Language=English +The driver has called a system PTE routine in an improper way. +. + +MessageId=0xDB +Severity=Success +Facility=System +SymbolicName=DRIVER_CORRUPTED_SYSPTES +Language=English +The driver has corrupted system PTEs. +. + +MessageId=0xDC +Severity=Success +Facility=System +SymbolicName=DRIVER_INVALID_STACK_ACCESS +Language=English +The driver has accessed an invalid stack address. +. + +MessageId=0xDE +Severity=Success +Facility=System +SymbolicName=POOL_CORRUPTION_IN_FILE_AREA +Language=English +Kernel pool corruption has been detected in an area marked to be written to disk. +. + +MessageId=0xDF +Severity=Success +Facility=System +SymbolicName=IMPERSONATING_WORKER_THREAD +Language=English +A worker thread is impersonating another process. The work item forgot to +disable impersonation before it returned. +. + +MessageId=0xE0 +Severity=Success +Facility=System +SymbolicName=ACPI_BIOS_FATAL_ERROR +Language=English + +Your computer (BIOS) has reported that a component in your system is faulty and +has prevented ReactOS from operating. You can determine which component is +faulty by running the diagnostic disk or tool that came with your computer. + +If you do not have this tool, you must contact your system vendor and report +this error message to them. They will be able to assist you in correcting this +hardware problem thereby allowing ReactOS to operate. +. + +MessageId=0xE1 +Severity=Success +Facility=System +SymbolicName=WORKER_THREAD_RETURNED_AT_BAD_IRQL +Language=English +WORKER_THREAD_RETURNED_AT_BAD_IRQL +. + +MessageId=0xE2 +Severity=Success +Facility=System +SymbolicName=MANUALLY_INITIATED_CRASH +Language=English +MANUALLY_INITIATED_CRASH +. + +MessageId=0xE3 +Severity=Success +Facility=System +SymbolicName=RESOURCE_NOT_OWNED +Language=English +RESOURCE_NOT_OWNED +. + +MessageId=0xE4 +Severity=Success +Facility=System +SymbolicName=WORKER_INVALID +Language=English +If Parameter1 == 0, an executive worker item was found in memory which +must not contain such items. Usually this is memory being freed. This +is usually caused by a device driver that has not cleaned up properly +before freeing memory. + +If Parameter1 == 1, an attempt was made to queue an executive worker item +with a usermode execution routine. +. + +MessageId=0xE5 +Severity=Success +Facility=System +SymbolicName=POWER_FAILURE_SIMULATE +Language=English +POWER_FAILURE_SIMULATE +. + +MessageId=0xE8 +Severity=Success +Facility=System +SymbolicName=INVALID_CANCEL_OF_FILE_OPEN +Language=English +Invalid cancel of a open file. It already has handle. +. + +MessageId=0xE9 +Severity=Success +Facility=System +SymbolicName=ACTIVE_EX_WORKER_THREAD_TERMINATION +Language=English +An executive worker thread is being terminated without having gone through the worker thread rundown code. +Work items queued to the Ex worker queue must not terminate their threads. +A stack trace should indicate the culprit. +. + +MessageId=0xEA +Severity=Success +Facility=System +SymbolicName=THREAD_STUCK_IN_DEVICE_DRIVER +Language=English + +The device driver got stuck in an infinite loop. This usually indicates +problem with the device itself or with the device driver programming the +hardware incorrectly. + +Please check with your hardware device vendor for any driver updates. +. + +MessageId=0xEF +Severity=Success +Facility=System +SymbolicName=CRITICAL_PROCESS_DIED +Language=English +The kernel attempted to ready a thread that was in an incorrect state such as terminated. +. + +MessageId=0xF4 +Severity=Success +Facility=System +SymbolicName=CRITICAL_OBJECT_TERMINATION +Language=English +A process or thread crucial to system operation has unexpectedly exited or been terminated. +. + +MessageId=0xF6 +Severity=Success +Facility=System +SymbolicName=PCI_VERIFIER_DETECTED_VIOLATION +Language=English +The PCI driver has detected an error in a PCI device or BIOS being verified. +. + +MessageId=0xF7 +Severity=Success +Facility=System +SymbolicName=DRIVER_OVERRAN_STACK_BUFFER +Language=English +A driver has overrun a stack-based buffer. This overrun could potentially +allow a malicious user to gain control of this machine. +. + +MessageId=0xF8 +Severity=Success +Facility=System +SymbolicName=RAMDISK_BOOT_INITIALIZATION_FAILED +Language=English +An initialization failure occurred while attempting to boot from the RAM disk. +. + +MessageId=0xF9 +Severity=Success +Facility=System +SymbolicName=DRIVER_RETURNED_STATUS_REPARSE_FOR_VOLUME_OPEN +Language=English +STATUS_REPARSE was returned from a FSD when trying to open a volume. +. + +MessageId=0xFA +Severity=Success +Facility=System +SymbolicName=HTTP_DRIVER_CORRUPTED +Language=English +Corruption was detected in the HTTP kernel driver. +. + +MessageId=0xFC +Severity=Success +Facility=System +SymbolicName=ATTEMPTED_EXECUTE_OF_NOEXECUTE_MEMORY +Language=English +An attempt was made to execute to non-executable memory. +. + +MessageId=0xFD +Severity=Success +Facility=System +SymbolicName=DIRTY_NOWRITE_PAGES_CONGESTION +Language=English +DIRTY_NOWRITE_PAGES_CONGESTION +. + +MessageId=0xFE +Severity=Success +Facility=System +SymbolicName=BUGCODE_USB_DRIVER +Language=English +A fatal error occurred in the USB driver stack. +. + +MessageId=0x139 +Severity=Success +Facility=System +SymbolicName=KERNEL_SECURITY_CHECK_FAILURE +Language=English +A critical kernel security check failed. +. diff --git a/sdk/include/reactos/mc/errcodes.mc b/sdk/include/reactos/mc/errcodes.mc index 06036d4cd9b..e0275d24f4f 100644 --- a/sdk/include/reactos/mc/errcodes.mc +++ b/sdk/include/reactos/mc/errcodes.mc @@ -1,18663 +1,18663 @@ -MessageIdTypedef=ULONG - -SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS - Informational=0x1:STATUS_SEVERITY_INFORMATIONAL - Warning=0x2:STATUS_SEVERITY_WARNING - Error=0x3:STATUS_SEVERITY_ERROR - ) - -FacilityNames=(System=0x0:FACILITY_SYSTEM - ITF=0x4:FACILITY_ITF - WIN32=0x7:FACILITY_GENERAL - ) - -LanguageNames=(English=0x409:MSG00409 - Russian=0x419:MSG00419) - -MessageId=0 -Severity=Success -Facility=System -SymbolicName=ERROR_SUCCESS -Language=English -ERROR_SUCCESS - The operation completed successfully. -. -Language=Russian -ERROR_SUCCESS - Операция успешно завершена. -. - -MessageId=1 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FUNCTION -Language=English -ERROR_INVALID_FUNCTION - Incorrect function. -. -Language=Russian -ERROR_INVALID_FUNCTION - Неверная функция. -. - -MessageId=2 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_NOT_FOUND -Language=English -ERROR_FILE_NOT_FOUND - The system cannot find the file specified. -. -Language=Russian -ERROR_FILE_NOT_FOUND - Не удается найти указанный файл. -. - -MessageId=3 -Severity=Success -Facility=System -SymbolicName=ERROR_PATH_NOT_FOUND -Language=English -ERROR_PATH_NOT_FOUND - The system cannot find the path specified. -. -Language=Russian -ERROR_PATH_NOT_FOUND - Системе не удается найти указанный путь. -. - -MessageId=4 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_OPEN_FILES -Language=English -ERROR_TOO_MANY_OPEN_FILES - The system cannot open the file. -. -Language=Russian -ERROR_TOO_MANY_OPEN_FILES - Системе не удается открыть файл. -. - -MessageId=5 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCESS_DENIED -Language=English -ERROR_ACCESS_DENIED - Access is denied. -. -Language=Russian -ERROR_ACCESS_DENIED - Отказано в доступе. -. - -MessageId=6 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_HANDLE -Language=English -ERROR_INVALID_HANDLE - The handle is invalid. -. -Language=Russian -ERROR_INVALID_HANDLE - Неверный дескриптор. -. - -MessageId=7 -Severity=Success -Facility=System -SymbolicName=ERROR_ARENA_TRASHED -Language=English -ERROR_ARENA_TRASHED - The storage control blocks were destroyed. -. -Language=Russian -ERROR_ARENA_TRASHED - Повреждены управляющие блоки памяти. -. - -MessageId=8 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_ENOUGH_MEMORY -Language=English -ERROR_NOT_ENOUGH_MEMORY - Not enough storage is available to process this command. -. -Language=Russian -ERROR_NOT_ENOUGH_MEMORY - Недостаточно памяти для обработки команды. -. - -MessageId=9 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_BLOCK -Language=English -ERROR_INVALID_BLOCK - The storage control block address is invalid. -. -Language=Russian -ERROR_INVALID_BLOCK - Неверный адрес управляющего блока памяти. -. - -MessageId=10 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_ENVIRONMENT -Language=English -ERROR_BAD_ENVIRONMENT - The environment is incorrect. -. -Language=Russian -ERROR_BAD_ENVIRONMENT - Недопустимая среда. -. - -MessageId=11 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_FORMAT -Language=English -ERROR_BAD_FORMAT - An attempt was made to load a program with an incorrect format. -. -Language=Russian -ERROR_BAD_FORMAT - Попытка запустить программу с недопустимым форматом. -. - -MessageId=12 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ACCESS -Language=English -ERROR_INVALID_ACCESS - The access code is invalid. -. -Language=Russian -ERROR_INVALID_ACCESS - Неверный код доступа. -. - -MessageId=13 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DATA -Language=English -ERROR_INVALID_DATA - The data is invalid. -. -Language=Russian -ERROR_INVALID_DATA - Недопустимые данные. -. - -MessageId=14 -Severity=Success -Facility=System -SymbolicName=ERROR_OUTOFMEMORY -Language=English -ERROR_OUTOFMEMORY - Not enough storage is available to complete this operation. -. -Language=Russian -ERROR_OUTOFMEMORY - Недостаточно памяти для завершения операции. -. - -MessageId=15 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DRIVE -Language=English -ERROR_INVALID_DRIVE - The system cannot find the drive specified. -. -Language=Russian -ERROR_INVALID_DRIVE - Система не может найти указанное устройство. -. - -MessageId=16 -Severity=Success -Facility=System -SymbolicName=ERROR_CURRENT_DIRECTORY -Language=English -ERROR_CURRENT_DIRECTORY - The directory cannot be removed. -. -Language=Russian -ERROR_CURRENT_DIRECTORY - Этот каталог не может быть удален. -. - -MessageId=17 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SAME_DEVICE -Language=English -ERROR_NOT_SAME_DEVICE - The system cannot move the file to a different disk drive. -. -Language=Russian -ERROR_NOT_SAME_DEVICE - Система не может переместить файл на другое дисковое устройство. -. - -MessageId=18 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MORE_FILES -Language=English -ERROR_NO_MORE_FILES - There are no more files. -. -Language=Russian -ERROR_NO_MORE_FILES - Файлов больше нет. -. - -MessageId=19 -Severity=Success -Facility=System -SymbolicName=ERROR_WRITE_PROTECT -Language=English -ERROR_WRITE_PROTECT - The media is write protected. -. -Language=Russian -ERROR_WRITE_PROTECT - Носитель защищен от записи. -. - -MessageId=20 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_UNIT -Language=English -ERROR_BAD_UNIT - The system cannot find the device specified. -. -Language=Russian -ERROR_BAD_UNIT - Система не может найти указанное устройство. -. - -MessageId=21 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_READY -Language=English -ERROR_NOT_READY - The device is not ready. -. -Language=Russian -ERROR_NOT_READY - Устройство не готово. -. - -MessageId=22 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_COMMAND -Language=English -ERROR_BAD_COMMAND - The device does not recognize the command. -. -Language=Russian -ERROR_BAD_COMMAND - Устройство не распознает команду. -. - -MessageId=23 -Severity=Success -Facility=System -SymbolicName=ERROR_CRC -Language=English -ERROR_CRC - Data error (cyclic redundancy check). -. -Language=Russian -ERROR_CRC - Ошибка в данных (циклический код с избыточностью). -. - -MessageId=24 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_LENGTH -Language=English -ERROR_BAD_LENGTH - The program issued a command but the command length is incorrect. -. -Language=Russian -ERROR_BAD_LENGTH - Программа выдала команду с недопустимой длиной. -. - -MessageId=25 -Severity=Success -Facility=System -SymbolicName=ERROR_SEEK -Language=English -ERROR_SEEK - The drive cannot locate a specific area or track on the disk. -. -Language=Russian -ERROR_SEEK - Дисковое устройство не может обнаружить указанную область или дорожку. -. - -MessageId=26 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_DOS_DISK -Language=English -ERROR_NOT_DOS_DISK - The specified disk or diskette cannot be accessed. -. -Language=Russian -ERROR_NOT_DOS_DISK - Нет доступа к диску или дискете. -. - -MessageId=27 -Severity=Success -Facility=System -SymbolicName=ERROR_SECTOR_NOT_FOUND -Language=English -ERROR_SECTOR_NOT_FOUND - The drive cannot find the sector requested. -. -Language=Russian -ERROR_SECTOR_NOT_FOUND - Дисковое устройство не может обнаружить указанную область или дорожку. -. - -MessageId=28 -Severity=Success -Facility=System -SymbolicName=ERROR_OUT_OF_PAPER -Language=English -ERROR_OUT_OF_PAPER - The printer is out of paper. -. -Language=Russian -ERROR_OUT_OF_PAPER - В принтере закончилась бумага. -. - -MessageId=29 -Severity=Success -Facility=System -SymbolicName=ERROR_WRITE_FAULT -Language=English -ERROR_WRITE_FAULT - The system cannot write to the specified device. -. -Language=Russian -ERROR_WRITE_FAULT - Система не может выполнить запись на указанное устройство. -. - -MessageId=30 -Severity=Success -Facility=System -SymbolicName=ERROR_READ_FAULT -Language=English -ERROR_READ_FAULT - The system cannot read from the specified device. -. -Language=Russian -ERROR_READ_FAULT - Системе не может выполнить чтение с указанного устройства. -. - -MessageId=31 -Severity=Success -Facility=System -SymbolicName=ERROR_GEN_FAILURE -Language=English -ERROR_GEN_FAILURE - A device attached to the system is not functioning. -. -Language=Russian -ERROR_GEN_FAILURE - Устройство, подключенное к системе, не работает. -. - -MessageId=32 -Severity=Success -Facility=System -SymbolicName=ERROR_SHARING_VIOLATION -Language=English -ERROR_SHARING_VIOLATION - The process cannot access the file because it is being used by another process. -. -Language=Russian -ERROR_SHARING_VIOLATION - Процесс не имеет доступа к файлу, поскольку файл используется другим процессом. -. - -MessageId=33 -Severity=Success -Facility=System -SymbolicName=ERROR_LOCK_VIOLATION -Language=English -ERROR_LOCK_VIOLATION - The process cannot access the file because another process has locked a portion of the file. -. -Language=Russian -ERROR_LOCK_VIOLATION - Процесс не имеет доступа к файлу, поскольку другой процесс заблокировал часть файла. -. - -MessageId=34 -Severity=Success -Facility=System -SymbolicName=ERROR_WRONG_DISK -Language=English -ERROR_WRONG_DISK - The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1. -. -Language=Russian -ERROR_WRONG_DISK - Вставте другую дискету. Вставьте %2 (серийный номер тома: %3) в дисковод %1. -. - -MessageId=36 -Severity=Success -Facility=System -SymbolicName=ERROR_SHARING_BUFFER_EXCEEDED -Language=English -ERROR_SHARING_BUFFER_EXCEEDED - Too many files opened for sharing. -. -Language=Russian -ERROR_SHARING_BUFFER_EXCEEDED - Слишком много файлов открыто для совместного использования. -. - -MessageId=38 -Severity=Success -Facility=System -SymbolicName=ERROR_HANDLE_EOF -Language=English -ERROR_HANDLE_EOF - Reached the end of the file. -. -Language=Russian -ERROR_HANDLE_EOF - Достигнут конец файла. -. - -MessageId=39 -Severity=Success -Facility=System -SymbolicName=ERROR_HANDLE_DISK_FULL -Language=English -ERROR_HANDLE_DISK_FULL - The disk is full. -. -Language=Russian -ERROR_HANDLE_DISK_FULL - Отсутствует место на диске. -. - -MessageId=50 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SUPPORTED -Language=English -ERROR_NOT_SUPPORTED - The request is not supported. -. -Language=Russian -ERROR_NOT_SUPPORTED - Запрос не поддерживается. -. - -MessageId=51 -Severity=Success -Facility=System -SymbolicName=ERROR_REM_NOT_LIST -Language=English -ERROR_REM_NOT_LIST - ReactOS cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If ReactOS still cannot find the network path, contact your network administrator. -. -Language=Russian -ERROR_REM_NOT_LIST - Невозможно найти сетевой путь. Убедитесь, что сетевой путь указан верно, а конечный компьютер включен и не занят. Если система вновь не сможет найти путь, обратитесь к сетевому администратору. -. - - -MessageId=52 -Severity=Success -Facility=System -SymbolicName=ERROR_DUP_NAME -Language=English -ERROR_DUP_NAME - You were not connected because a duplicate name exists on the network. Go to System in the Control Panel to change the computer name and try again. -. -Language=Russian -ERROR_DUP_NAME - Вы не подключены, поскольку такое же имя уже существует в этой сети. Для присоединения к домену откройте компонент панели управления "Система", измените имя компьютера и повторите попытку. Для присоединения к рабочей группе выберите другое имя рабочей группы. -. - -MessageId=53 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_NETPATH -Language=English -ERROR_BAD_NETPATH - The network path was not found. -. -Language=Russian -ERROR_BAD_NETPATH - Не найден сетевой путь. -. - -MessageId=54 -Severity=Success -Facility=System -SymbolicName=ERROR_NETWORK_BUSY -Language=English -ERROR_NETWORK_BUSY - The network is busy. -. -Language=Russian -ERROR_NETWORK_BUSY - Сеть занята. -. - -MessageId=55 -Severity=Success -Facility=System -SymbolicName=ERROR_DEV_NOT_EXIST -Language=English -ERROR_DEV_NOT_EXIST - The specified network resource or device is no longer available. -. -Language=Russian -ERROR_DEV_NOT_EXIST - Сетевой ресурс или устройство более недоступно. -. - -MessageId=56 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_CMDS -Language=English -ERROR_TOO_MANY_CMDS - The network BIOS command limit has been reached. -. -Language=Russian -ERROR_TOO_MANY_CMDS - Достигнут предел числа команд NetBIOS. -. - -MessageId=57 -Severity=Success -Facility=System -SymbolicName=ERROR_ADAP_HDW_ERR -Language=English -ERROR_ADAP_HDW_ERR - A network adapter hardware error occurred. -. -Language=Russian -ERROR_ADAP_HDW_ERR - Аппаратная ошибка сетевой платы. -. - -MessageId=58 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_NET_RESP -Language=English -ERROR_BAD_NET_RESP - The specified server cannot perform the requested operation. -. -Language=Russian -ERROR_BAD_NET_RESP - Указанный сервер не может выполнить требуемую операцию. -. - -MessageId=59 -Severity=Success -Facility=System -SymbolicName=ERROR_UNEXP_NET_ERR -Language=English -ERROR_UNEXP_NET_ERR - An unexpected network error occurred. -. -Language=Russian -ERROR_UNEXP_NET_ERR - Непредвиденная сетевая ошибка. -. - -MessageId=60 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_REM_ADAP -Language=English -ERROR_BAD_REM_ADAP - The remote adapter is not compatible. -. -Language=Russian -ERROR_BAD_REM_ADAP - Несовместимый удаленный контроллер. -. - -MessageId=61 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTQ_FULL -Language=English -ERROR_PRINTQ_FULL - The printer queue is full. -. -Language=Russian -ERROR_PRINTQ_FULL - Очередь печати переполнена. -. - -MessageId=62 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SPOOL_SPACE -Language=English -ERROR_NO_SPOOL_SPACE - Space to store the file waiting to be printed is not available on the server. -. -Language=Russian -ERROR_NO_SPOOL_SPACE - На сервере нет места для хранения ожидающего печати файла. -. - -MessageId=63 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINT_CANCELLED -Language=English -ERROR_PRINT_CANCELLED - Your file waiting to be printed was deleted. -. -Language=Russian -ERROR_PRINT_CANCELLED - Ваш файл, находившийся в очереди вывода на печать, был удален. -. - -MessageId=64 -Severity=Success -Facility=System -SymbolicName=ERROR_NETNAME_DELETED -Language=English -ERROR_NETNAME_DELETED - The specified network name is no longer available. -. -Language=Russian -ERROR_NETNAME_DELETED - Указанное сетевое имя более недоступно. -. - -MessageId=65 -Severity=Success -Facility=System -SymbolicName=ERROR_NETWORK_ACCESS_DENIED -Language=English -ERROR_NETWORK_ACCESS_DENIED - Network access is denied. -. -Language=Russian -ERROR_NETWORK_ACCESS_DENIED - Нет доступа к сети. -. - -MessageId=66 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_DEV_TYPE -Language=English -ERROR_BAD_DEV_TYPE - The network resource type is not correct. -. -Language=Russian -ERROR_BAD_DEV_TYPE - Неверно указан тип сетевого ресурса. -. - -MessageId=67 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_NET_NAME -Language=English -ERROR_BAD_NET_NAME - The network name cannot be found. -. -Language=Russian -ERROR_BAD_NET_NAME - Не найдено сетевое имя. -. - -MessageId=68 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_NAMES -Language=English -ERROR_TOO_MANY_NAMES - The name limit for the local computer network adapter card was exceeded. -. -Language=Russian -ERROR_TOO_MANY_NAMES - Превышен предел числа имен для сетевого адаптера локального компьютера. -. - -MessageId=69 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_SESS -Language=English -ERROR_TOO_MANY_SESS - The network BIOS session limit was exceeded. -. -Language=Russian -ERROR_TOO_MANY_SESS - Превышен предел по числу сеансов NetBIOS. -. - -MessageId=70 -Severity=Success -Facility=System -SymbolicName=ERROR_SHARING_PAUSED -Language=English -ERROR_SHARING_PAUSED - The remote server has been paused or is in the process of being started. -. -Language=Russian -ERROR_SHARING_PAUSED - Сервер сети был остановлен или находится в процессе запуска. -. - -MessageId=71 -Severity=Success -Facility=System -SymbolicName=ERROR_REQ_NOT_ACCEP -Language=English -ERROR_REQ_NOT_ACCEP - No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept. -. -Language=Russian -ERROR_REQ_NOT_ACCEP - Дополнительные подключения к этому удаленному компьютеру сейчас невозможны, так как их число достигло предела. -. - -MessageId=72 -Severity=Success -Facility=System -SymbolicName=ERROR_REDIR_PAUSED -Language=English -ERROR_REDIR_PAUSED - The specified printer or disk device has been paused. -. -Language=Russian -ERROR_REDIR_PAUSED - Работа указанного принтера или дискового накопителя была остановлена. -. - -MessageId=80 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_EXISTS -Language=English -ERROR_FILE_EXISTS - The file exists. -. -Language=Russian -ERROR_FILE_EXISTS - Файл существует. -. - -MessageId=82 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_MAKE -Language=English -ERROR_CANNOT_MAKE - The directory or file cannot be created. -. -Language=Russian -ERROR_CANNOT_MAKE - Не удается создать файл или папку. -. - -MessageId=83 -Severity=Success -Facility=System -SymbolicName=ERROR_FAIL_I24 -Language=English -ERROR_FAIL_I24 - Fail on INT 24. -. -Language=Russian -ERROR_FAIL_I24 - Сбой прерывания INT 24. -. - -MessageId=84 -Severity=Success -Facility=System -SymbolicName=ERROR_OUT_OF_STRUCTURES -Language=English -ERROR_OUT_OF_STRUCTURES - Storage to process this request is not available. -. -Language=Russian -ERROR_OUT_OF_STRUCTURES - Недостаточно памяти для обработки запроса. -. - -MessageId=85 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_ASSIGNED -Language=English -ERROR_ALREADY_ASSIGNED - The local device name is already in use. -. -Language=Russian -ERROR_ALREADY_ASSIGNED - Имя локального устройства уже используется. -. - -MessageId=86 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PASSWORD -Language=English -ERROR_INVALID_PASSWORD - The specified network password is not correct. -. -Language=Russian -ERROR_INVALID_PASSWORD - Сетевой пароль указан неверно. -. - -MessageId=87 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PARAMETER -Language=English -ERROR_INVALID_PARAMETER - The parameter is incorrect. -. -Language=Russian -ERROR_INVALID_PARAMETER - Параметр задан неверно. -. - -MessageId=88 -Severity=Success -Facility=System -SymbolicName=ERROR_NET_WRITE_FAULT -Language=English -ERROR_NET_WRITE_FAULT - A write fault occurred on the network. -. -Language=Russian -ERROR_NET_WRITE_FAULT - Ошибка записи в сети. -. - -MessageId=89 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_PROC_SLOTS -Language=English -ERROR_NO_PROC_SLOTS - The system cannot start another process at this time. -. -Language=Russian -ERROR_NO_PROC_SLOTS - В настоящее время системе не удается запустить другой процесс. -. - -MessageId=100 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_SEMAPHORES -Language=English -ERROR_TOO_MANY_SEMAPHORES - Cannot create another system semaphore. -. -Language=Russian -ERROR_TOO_MANY_SEMAPHORES - Не удается создать еще один системный семафор. -. - -MessageId=101 -Severity=Success -Facility=System -SymbolicName=ERROR_EXCL_SEM_ALREADY_OWNED -Language=English -ERROR_EXCL_SEM_ALREADY_OWNED - The exclusive semaphore is owned by another process. -. -Language=Russian -ERROR_EXCL_SEM_ALREADY_OWNED - Семафор эксклюзивного доступа занят другим процессом. -. - -MessageId=102 -Severity=Success -Facility=System -SymbolicName=ERROR_SEM_IS_SET -Language=English -ERROR_SEM_IS_SET - The semaphore is set and cannot be closed. -. -Language=Russian -ERROR_SEM_IS_SET - Семафор установлен и не может быть закрыт. -. - -MessageId=103 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_SEM_REQUESTS -Language=English -ERROR_TOO_MANY_SEM_REQUESTS - The semaphore cannot be set again. -. -Language=Russian -ERROR_TOO_MANY_SEM_REQUESTS - Семафор не может быть установлен повторно. -. - -MessageId=104 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_AT_INTERRUPT_TIME -Language=English -ERROR_INVALID_AT_INTERRUPT_TIME - Cannot request exclusive semaphores at interrupt time. -. -Language=Russian -ERROR_INVALID_AT_INTERRUPT_TIME - Запросы к семафорам эксклюзивного доступа на время выполнения прерываний не допускаются. -. - -MessageId=105 -Severity=Success -Facility=System -SymbolicName=ERROR_SEM_OWNER_DIED -Language=English -ERROR_SEM_OWNER_DIED - The previous ownership of this semaphore has ended. -. -Language=Russian -ERROR_SEM_OWNER_DIED - Этот семафор более не принадлежит использовавшему его процессу. -. - -MessageId=106 -Severity=Success -Facility=System -SymbolicName=ERROR_SEM_USER_LIMIT -Language=English -ERROR_SEM_USER_LIMIT - Insert the diskette for drive %1. -. -Language=Russian -ERROR_SEM_USER_LIMIT - Вставте дискету в дисковод %1. -. - -MessageId=107 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_CHANGE -Language=English -ERROR_DISK_CHANGE - The program stopped because an alternate diskette was not inserted. -. -Language=Russian -ERROR_DISK_CHANGE - Программа была остановлена, так как нужный диск вставлен не был. -. - -MessageId=108 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVE_LOCKED -Language=English -ERROR_DRIVE_LOCKED - The disk is in use or locked by another process. -. -Language=Russian -ERROR_DRIVE_LOCKED - Диск занят или заблокирован другим процессом. -. - -MessageId=109 -Severity=Success -Facility=System -SymbolicName=ERROR_BROKEN_PIPE -Language=English -ERROR_BROKEN_PIPE - The pipe has been ended. -. -Language=Russian -ERROR_BROKEN_PIPE - Канал был закрыт. -. - -MessageId=110 -Severity=Success -Facility=System -SymbolicName=ERROR_OPEN_FAILED -Language=English -ERROR_OPEN_FAILED - The system cannot open the device or file specified. -. -Language=Russian -ERROR_OPEN_FAILED - Системе не удается открыть указанное устройство или файл. -. - -MessageId=111 -Severity=Success -Facility=System -SymbolicName=ERROR_BUFFER_OVERFLOW -Language=English -ERROR_BUFFER_OVERFLOW - The file name is too long. -. -Language=Russian -ERROR_BUFFER_OVERFLOW - Указано слишком длинное имя файла. -. - -MessageId=112 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_FULL -Language=English -ERROR_DISK_FULL - There is not enough space on the disk. -. -Language=Russian -ERROR_DISK_FULL - Недостаточно места на диске. -. - -MessageId=113 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MORE_SEARCH_HANDLES -Language=English -ERROR_NO_MORE_SEARCH_HANDLES - No more internal file identifiers available. -. -Language=Russian -ERROR_NO_MORE_SEARCH_HANDLES - Исчерпаны внутренние идентификаторы файлов. -. - -MessageId=114 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_TARGET_HANDLE -Language=English -ERROR_INVALID_TARGET_HANDLE - The target internal file identifier is incorrect. -. -Language=Russian -ERROR_INVALID_TARGET_HANDLE - Результирующий внутренний идентификатор файла неправилен. -. - -MessageId=117 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_CATEGORY -Language=English -ERROR_INVALID_CATEGORY - The IOCTL call made by the application program is not correct. -. -Language=Russian -ERROR_INVALID_CATEGORY - Вызов IOCTL приложением произведен неверно. -. - -MessageId=118 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_VERIFY_SWITCH -Language=English -ERROR_INVALID_VERIFY_SWITCH - The verify-on-write switch parameter value is not correct. -. -Language=Russian -ERROR_INVALID_VERIFY_SWITCH - Параметр проверки записи данных имеет неверное значение. -. - -MessageId=119 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_DRIVER_LEVEL -Language=English -ERROR_BAD_DRIVER_LEVEL - The system does not support the command requested. -. -Language=Russian -ERROR_BAD_DRIVER_LEVEL - Система не может обработать полученную команду. -. - -MessageId=120 -Severity=Success -Facility=System -SymbolicName=ERROR_CALL_NOT_IMPLEMENTED -Language=English -ERROR_CALL_NOT_IMPLEMENTED - This function is not supported on this system. -. -Language=Russian -ERROR_CALL_NOT_IMPLEMENTED - Эта функция не поддерживается для этой системы. -. - -MessageId=121 -Severity=Success -Facility=System -SymbolicName=ERROR_SEM_TIMEOUT -Language=English -ERROR_SEM_TIMEOUT - The semaphore timeout period has expired. -. -Language=Russian -ERROR_SEM_TIMEOUT - Превышен таймаут семафора. -. - -MessageId=122 -Severity=Success -Facility=System -SymbolicName=ERROR_INSUFFICIENT_BUFFER -Language=English -ERROR_INSUFFICIENT_BUFFER - The data area passed to a system call is too small. -. -Language=Russian -ERROR_INSUFFICIENT_BUFFER - Область данных, переданная по системному вызову, слишком мала. -. - -MessageId=123 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_NAME -Language=English -ERROR_INVALID_NAME - The filename, directory name, or volume label syntax is incorrect. -. -Language=Russian -ERROR_INVALID_NAME - Синтаксическая ошибка в имени файла, имени папки или метке тома. -. - -MessageId=124 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LEVEL -Language=English -ERROR_INVALID_LEVEL - The system call level is not correct. -. -Language=Russian -ERROR_INVALID_LEVEL - Неверный уровень системного вызова. -. - -MessageId=125 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_VOLUME_LABEL -Language=English -ERROR_NO_VOLUME_LABEL - The disk has no volume label. -. -Language=Russian -ERROR_NO_VOLUME_LABEL - У диска отсутствует метка тома. -. - -MessageId=126 -Severity=Success -Facility=System -SymbolicName=ERROR_MOD_NOT_FOUND -Language=English -ERROR_MOD_NOT_FOUND - The specified module could not be found. -. -Language=Russian -ERROR_MOD_NOT_FOUND - Не найден указанный модуль. -. - -MessageId=127 -Severity=Success -Facility=System -SymbolicName=ERROR_PROC_NOT_FOUND -Language=English -ERROR_PROC_NOT_FOUND - The specified procedure could not be found. -. -Language=Russian -ERROR_PROC_NOT_FOUND - Не найдена указанная процедура. -. - -MessageId=128 -Severity=Success -Facility=System -SymbolicName=ERROR_WAIT_NO_CHILDREN -Language=English -ERROR_WAIT_NO_CHILDREN - There are no child processes to wait for. -. -Language=Russian -ERROR_WAIT_NO_CHILDREN - Дочерние процессы, окончания которых требуется ожидать, отсутствуют. -. - -MessageId=129 -Severity=Success -Facility=System -SymbolicName=ERROR_CHILD_NOT_COMPLETE -Language=English -ERROR_CHILD_NOT_COMPLETE - The %1 application cannot be run in Win32 mode. -. -Language=Russian -ERROR_CHILD_NOT_COMPLETE - Приложение "%1" не может быть запущено в режиме Win32. -. - -MessageId=130 -Severity=Success -Facility=System -SymbolicName=ERROR_DIRECT_ACCESS_HANDLE -Language=English -ERROR_DIRECT_ACCESS_HANDLE - Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. -. -Language=Russian -ERROR_DIRECT_ACCESS_HANDLE - Попытка использовать дескриптор файла для открытия раздела диска и выполнения операции, отличающейся от ввода/вывода нижнего уровня. -. - -MessageId=131 -Severity=Success -Facility=System -SymbolicName=ERROR_NEGATIVE_SEEK -Language=English -ERROR_NEGATIVE_SEEK - An attempt was made to move the file pointer before the beginning of the file. -. -Language=Russian -ERROR_NEGATIVE_SEEK - Попытка поместить указатель на файл перед началом файла. -. - -MessageId=132 -Severity=Success -Facility=System -SymbolicName=ERROR_SEEK_ON_DEVICE -Language=English -ERROR_SEEK_ON_DEVICE - The file pointer cannot be set on the specified device or file. -. -Language=Russian -ERROR_SEEK_ON_DEVICE - Указатель на файл не может быть установлен на заданное устройство или файл. -. - -MessageId=133 -Severity=Success -Facility=System -SymbolicName=ERROR_IS_JOIN_TARGET -Language=English -ERROR_IS_JOIN_TARGET - A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. -. -Language=Russian -ERROR_IS_JOIN_TARGET - Команды JOIN и SUBST не могут быть использованы для дисков, содержащих уже объединенные диски. -. - -MessageId=134 -Severity=Success -Facility=System -SymbolicName=ERROR_IS_JOINED -Language=English -ERROR_IS_JOINED - An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. -. -Language=Russian -ERROR_IS_JOINED - Попытка использовать команду JOIN или SUBST для диска, уже включенного в набор объединенных дисков. -. - -MessageId=135 -Severity=Success -Facility=System -SymbolicName=ERROR_IS_SUBSTED -Language=English -ERROR_IS_SUBSTED - An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. -. -Language=Russian -ERROR_IS_SUBSTED - Попытка использовать команду JOIN или SUBST для диска, который уже был отображен. -. - -MessageId=136 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_JOINED -Language=English -ERROR_NOT_JOINED - The system tried to delete the JOIN of a drive that is not joined. -. -Language=Russian -ERROR_NOT_JOINED - Попытка снять признак объединения с диска, для которого команда JOIN не выполнялась. -. - -MessageId=137 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SUBSTED -Language=English -ERROR_NOT_SUBSTED - The system tried to delete the substitution of a drive that is not substituted. -. -Language=Russian -ERROR_NOT_SUBSTED - Попытка снять признак отображения с диска, для которого команда SUBST не выполнялась. -. - -MessageId=138 -Severity=Success -Facility=System -SymbolicName=ERROR_JOIN_TO_JOIN -Language=English -ERROR_JOIN_TO_JOIN - The system tried to join a drive to a directory on a joined drive. -. -Language=Russian -ERROR_JOIN_TO_JOIN - Попытка объединить диск с папкой на объединенном диске. -. - -MessageId=139 -Severity=Success -Facility=System -SymbolicName=ERROR_SUBST_TO_SUBST -Language=English -ERROR_SUBST_TO_SUBST - The system tried to substitute a drive to a directory on a substituted drive. -. -Language=Russian -ERROR_SUBST_TO_SUBST - Попытка отобразить диск на папку, находящуюся на отображенном диске. -. - -MessageId=140 -Severity=Success -Facility=System -SymbolicName=ERROR_JOIN_TO_SUBST -Language=English -ERROR_JOIN_TO_SUBST - The system tried to join a drive to a directory on a substituted drive. -. -Language=Russian -ERROR_JOIN_TO_SUBST - Попытка объединить диск с папкой на отображенном диске. -. - -MessageId=141 -Severity=Success -Facility=System -SymbolicName=ERROR_SUBST_TO_JOIN -Language=English -ERROR_SUBST_TO_JOIN - The system tried to SUBST a drive to a directory on a joined drive. -. -Language=Russian -ERROR_SUBST_TO_JOIN - Попытка отобразить диск на папку, находящуюся на объединенном диске. -. - -MessageId=142 -Severity=Success -Facility=System -SymbolicName=ERROR_BUSY_DRIVE -Language=English -ERROR_BUSY_DRIVE - The system cannot perform a JOIN or SUBST at this time. -. -Language=Russian -ERROR_BUSY_DRIVE - В настоящее время выполнить команду JOIN или SUBST невозможно. -. - -MessageId=143 -Severity=Success -Facility=System -SymbolicName=ERROR_SAME_DRIVE -Language=English -ERROR_SAME_DRIVE - The system cannot join or substitute a drive to or for a directory on the same drive. -. -Language=Russian -ERROR_SAME_DRIVE - Невозможно объединить (или отобразить) диск с папкой (или на папку) этого же диска. -. - -MessageId=144 -Severity=Success -Facility=System -SymbolicName=ERROR_DIR_NOT_ROOT -Language=English -ERROR_DIR_NOT_ROOT - The directory is not a subdirectory of the root directory. -. -Language=Russian -ERROR_DIR_NOT_ROOT - Эта папка не является подпапкой корневой папки. -. - -MessageId=145 -Severity=Success -Facility=System -SymbolicName=ERROR_DIR_NOT_EMPTY -Language=English -ERROR_DIR_NOT_EMPTY - The directory is not empty. -. -Language=Russian -ERROR_DIR_NOT_EMPTY - Папка не пуста. -. - -MessageId=146 -Severity=Success -Facility=System -SymbolicName=ERROR_IS_SUBST_PATH -Language=English -ERROR_IS_SUBST_PATH - The path specified is being used in a substitute. -. -Language=Russian -ERROR_IS_SUBST_PATH - Указанный путь используется для отображенного диска. -. - -MessageId=147 -Severity=Success -Facility=System -SymbolicName=ERROR_IS_JOIN_PATH -Language=English -ERROR_IS_JOIN_PATH - Not enough resources are available to process this command. -. -Language=Russian -ERROR_IS_JOIN_PATH - Недостаточно ресурсов для обработки команды. -. - -MessageId=148 -Severity=Success -Facility=System -SymbolicName=ERROR_PATH_BUSY -Language=English -ERROR_PATH_BUSY - The path specified cannot be used at this time. -. -Language=Russian -ERROR_PATH_BUSY - Указанный путь невозможно использовать сейчас. -. - -MessageId=149 -Severity=Success -Facility=System -SymbolicName=ERROR_IS_SUBST_TARGET -Language=English -ERROR_IS_SUBST_TARGET - An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute. -. -Language=Russian -ERROR_IS_SUBST_TARGET - Попытка объединить или отобразить диск, папка на котором уже используется для отображения. -. - -MessageId=150 -Severity=Success -Facility=System -SymbolicName=ERROR_SYSTEM_TRACE -Language=English -ERROR_SYSTEM_TRACE - System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed. -. -Language=Russian -ERROR_SYSTEM_TRACE - Сведения о трассировке в файле CONFIG.SYS не найдены, либо трассировка запрещена. -. - -MessageId=151 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_EVENT_COUNT -Language=English -ERROR_INVALID_EVENT_COUNT - The number of specified semaphore events for DosMuxSemWait is not correct. -. -Language=Russian -ERROR_INVALID_EVENT_COUNT - Число семафоров для DosMuxSemWait задано неверно. -. - -MessageId=152 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_MUXWAITERS -Language=English -ERROR_TOO_MANY_MUXWAITERS - DosMuxSemWait did not execute; too many semaphores are already set. -. -Language=Russian -ERROR_TOO_MANY_MUXWAITERS - Не выполнен вызов DosMuxSemWait. Установлено слишком много семафоров. -. - -MessageId=153 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LIST_FORMAT -Language=English -ERROR_INVALID_LIST_FORMAT - The DosMuxSemWait list is not correct. -. -Language=Russian -ERROR_INVALID_LIST_FORMAT - Некорректный вызов DosMuxSemWait. -. - -MessageId=154 -Severity=Success -Facility=System -SymbolicName=ERROR_LABEL_TOO_LONG -Language=English -ERROR_LABEL_TOO_LONG - The volume label you entered exceeds the label character limit of the target file system. -. -Language=Russian -ERROR_LABEL_TOO_LONG - Длина метки тома превосходит предел, установленный для файловой системы. -. - -MessageId=155 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_TCBS -Language=English -ERROR_TOO_MANY_TCBS - Cannot create another thread. -. -Language=Russian -ERROR_TOO_MANY_TCBS - Не удается создать еще один поток команд. -. - -MessageId=156 -Severity=Success -Facility=System -SymbolicName=ERROR_SIGNAL_REFUSED -Language=English -ERROR_SIGNAL_REFUSED - The recipient process has refused the signal. -. -Language=Russian -ERROR_SIGNAL_REFUSED - Принимающий процесс отклонил сигнал. -. - -MessageId=157 -Severity=Success -Facility=System -SymbolicName=ERROR_DISCARDED -Language=English -ERROR_DISCARDED - The segment is already discarded and cannot be locked. -. -Language=Russian -ERROR_DISCARDED - Сегмент уже освобожден и не может быть заблокирован. -. - -MessageId=158 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_LOCKED -Language=English -ERROR_NOT_LOCKED - The segment is already unlocked. -. -Language=Russian -ERROR_NOT_LOCKED - Блокировка с сегмента уже снята. -. - -MessageId=159 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_THREADID_ADDR -Language=English -ERROR_BAD_THREADID_ADDR - The address for the thread ID is not correct. -. -Language=Russian -ERROR_BAD_THREADID_ADDR - Адрес идентификатора потока команд задан неверно. -. - -MessageId=160 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_ARGUMENTS -Language=English -ERROR_BAD_ARGUMENTS - The argument string passed to DosExecPgm is not correct. -. -Language=Russian -ERROR_BAD_ARGUMENTS - Неверны один или несколько аргументов. -. - -MessageId=161 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_PATHNAME -Language=English -ERROR_BAD_PATHNAME - The specified path is invalid. -. -Language=Russian -ERROR_BAD_PATHNAME - Указан недопустимый путь. -. - -MessageId=162 -Severity=Success -Facility=System -SymbolicName=ERROR_SIGNAL_PENDING -Language=English -ERROR_SIGNAL_PENDING - A signal is already pending. -. -Language=Russian -ERROR_SIGNAL_PENDING - Сигнал уже находится в состоянии обработки. -. - -MessageId=164 -Severity=Success -Facility=System -SymbolicName=ERROR_MAX_THRDS_REACHED -Language=English -ERROR_MAX_THRDS_REACHED - No more threads can be created in the system. -. -Language=Russian -ERROR_MAX_THRDS_REACHED - Создание дополнительных потоков команд невозможно. -. - -MessageId=167 -Severity=Success -Facility=System -SymbolicName=ERROR_LOCK_FAILED -Language=English -ERROR_LOCK_FAILED - Unable to lock a region of a file. -. -Language=Russian -ERROR_LOCK_FAILED - Не удается снять блокировку с области файла. -. - -MessageId=170 -Severity=Success -Facility=System -SymbolicName=ERROR_BUSY -Language=English -ERROR_BUSY - The requested resource is in use. -. -Language=Russian -ERROR_BUSY - Требуемый ресурс занят. -. - -MessageId=173 -Severity=Success -Facility=System -SymbolicName=ERROR_CANCEL_VIOLATION -Language=English -ERROR_CANCEL_VIOLATION - A lock request was not outstanding for the supplied cancel region. -. -Language=Russian -ERROR_CANCEL_VIOLATION - Запрос на блокировку соответствует определенной области. -. - -MessageId=174 -Severity=Success -Facility=System -SymbolicName=ERROR_ATOMIC_LOCKS_NOT_SUPPORTED -Language=English -ERROR_ATOMIC_LOCKS_NOT_SUPPORTED - The file system does not support atomic changes to the lock type. -. -Language=Russian -ERROR_ATOMIC_LOCKS_NOT_SUPPORTED - Файловая система не поддерживает указанные изменения типа блокировки. -. - -MessageId=180 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SEGMENT_NUMBER -Language=English -ERROR_INVALID_SEGMENT_NUMBER - The system detected a segment number that was not correct. -. -Language=Russian -ERROR_INVALID_SEGMENT_NUMBER - Система обнаружила неверный номер сегмента. -. - -MessageId=182 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ORDINAL -Language=English -ERROR_INVALID_ORDINAL - The operating system cannot run %1. -. -Language=Russian -ERROR_INVALID_ORDINAL - Операционная система не может выполнить "%1". -. - -MessageId=183 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_EXISTS -Language=English -ERROR_ALREADY_EXISTS - Cannot create a file when that file already exists. -. -Language=Russian -ERROR_ALREADY_EXISTS - Невозможно создать файл, так как он уже существует. -. - -MessageId=186 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FLAG_NUMBER -Language=English -ERROR_INVALID_FLAG_NUMBER - The flag passed is not correct. -. -Language=Russian -ERROR_INVALID_FLAG_NUMBER - Передан неверный флаг. -. - -MessageId=187 -Severity=Success -Facility=System -SymbolicName=ERROR_SEM_NOT_FOUND -Language=English -ERROR_SEM_NOT_FOUND - The specified system semaphore name was not found. -. -Language=Russian -ERROR_SEM_NOT_FOUND - Не найдено указанное имя системного семафора. -. - -MessageId=188 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_STARTING_CODESEG -Language=English -ERROR_INVALID_STARTING_CODESEG - The operating system cannot run %1. -. -Language=Russian -ERROR_INVALID_STARTING_CODESEG - Операционная система не может выполнить "%1". -. - -MessageId=189 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_STACKSEG -Language=English -ERROR_INVALID_STACKSEG - The operating system cannot run %1. -. -Language=Russian -ERROR_INVALID_STACKSEG - Операционная система не может выполнить "%1". -. - -MessageId=190 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MODULETYPE -Language=English -ERROR_INVALID_MODULETYPE - The operating system cannot run %1. -. -Language=Russian -ERROR_INVALID_MODULETYPE - Операционная система не может выполнить "%1". -. - -MessageId=191 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_EXE_SIGNATURE -Language=English -ERROR_INVALID_EXE_SIGNATURE - Cannot run %1 in Win32 mode. -. -Language=Russian -ERROR_INVALID_EXE_SIGNATURE - Невозможно запустить "%1" в режиме Win32. -. - -MessageId=192 -Severity=Success -Facility=System -SymbolicName=ERROR_EXE_MARKED_INVALID -Language=English -ERROR_EXE_MARKED_INVALID - The operating system cannot run %1. -. -Language=Russian -ERROR_EXE_MARKED_INVALID - Операционная система не может выполнить "%1". -. - -MessageId=193 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_EXE_FORMAT -Language=English -ERROR_BAD_EXE_FORMAT - %1 is not a valid Win32 application. -. -Language=Russian -ERROR_BAD_EXE_FORMAT - "%1" не является приложением Win32. -. - -MessageId=194 -Severity=Success -Facility=System -SymbolicName=ERROR_ITERATED_DATA_EXCEEDS_64k -Language=English -ERROR_ITERATED_DATA_EXCEEDS_64k - The operating system cannot run %1. -. -Language=Russian -ERROR_ITERATED_DATA_EXCEEDS_64k - Операционная система не может выполнить "%1". -. - -MessageId=195 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MINALLOCSIZE -Language=English -ERROR_INVALID_MINALLOCSIZE - The operating system cannot run %1. -. -Language=Russian -ERROR_INVALID_MINALLOCSIZE - Операционная система не может выполнить "%1". -. - -MessageId=196 -Severity=Success -Facility=System -SymbolicName=ERROR_DYNLINK_FROM_INVALID_RING -Language=English -ERROR_DYNLINK_FROM_INVALID_RING - The operating system cannot run this application program. -. -Language=Russian -ERROR_DYNLINK_FROM_INVALID_RING - Операционная система не может запустить это приложение. -. - -MessageId=197 -Severity=Success -Facility=System -SymbolicName=ERROR_IOPL_NOT_ENABLED -Language=English -ERROR_IOPL_NOT_ENABLED - The operating system is not presently configured to run this application. -. -Language=Russian -ERROR_IOPL_NOT_ENABLED - Конфигурация операционной системы не рассчитана на запуск этого приложения. -. - -MessageId=198 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SEGDPL -Language=English -ERROR_INVALID_SEGDPL - The operating system cannot run %1. -. -Language=Russian -ERROR_INVALID_SEGDPL - Операционная система не может выполнить "%1". -. - -MessageId=199 -Severity=Success -Facility=System -SymbolicName=ERROR_AUTODATASEG_EXCEEDS_64k -Language=English -ERROR_AUTODATASEG_EXCEEDS_64k - The operating system cannot run this application program. -. -Language=Russian -ERROR_AUTODATASEG_EXCEEDS_64k - Операционная система не может запустить это приложение. -. - -MessageId=200 -Severity=Success -Facility=System -SymbolicName=ERROR_RING2SEG_MUST_BE_MOVABLE -Language=English -ERROR_RING2SEG_MUST_BE_MOVABLE - The code segment cannot be greater than or equal to 64K. -. -Language=Russian -ERROR_RING2SEG_MUST_BE_MOVABLE - Сегмент кода должен быть меньше 64 КБ. -. - -MessageId=201 -Severity=Success -Facility=System -SymbolicName=ERROR_RELOC_CHAIN_XEEDS_SEGLIM -Language=English -ERROR_RELOC_CHAIN_XEEDS_SEGLIM - The operating system cannot run %1. -. -Language=Russian -ERROR_RELOC_CHAIN_XEEDS_SEGLIM - Операционная система не может выполнить "%1". -. - -MessageId=202 -Severity=Success -Facility=System -SymbolicName=ERROR_INFLOOP_IN_RELOC_CHAIN -Language=English -ERROR_INFLOOP_IN_RELOC_CHAIN - The operating system cannot run %1. -. -Language=Russian -ERROR_INFLOOP_IN_RELOC_CHAIN - Операционная система не может выполнить "%1". -. - -MessageId=203 -Severity=Success -Facility=System -SymbolicName=ERROR_ENVVAR_NOT_FOUND -Language=English -ERROR_ENVVAR_NOT_FOUND - The system could not find the environment option that was entered. -. -Language=Russian -ERROR_ENVVAR_NOT_FOUND - Системе не удается найти указанный параметр среды. -. - -MessageId=205 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SIGNAL_SENT -Language=English -ERROR_NO_SIGNAL_SENT - No process in the command subtree has a signal handler. -. -Language=Russian -ERROR_NO_SIGNAL_SENT - Ни один из процессов в дереве команды не имеет обработчика сигналов. -. - -MessageId=206 -Severity=Success -Facility=System -SymbolicName=ERROR_FILENAME_EXCED_RANGE -Language=English -ERROR_FILENAME_EXCED_RANGE - The filename or extension is too long. -. -Language=Russian -ERROR_FILENAME_EXCED_RANGE - Имя файла или его расширение имеет слишком большую длину. -. - -MessageId=207 -Severity=Success -Facility=System -SymbolicName=ERROR_RING2_STACK_IN_USE -Language=English -ERROR_RING2_STACK_IN_USE - The ring 2 stack is in use. -. -Language=Russian -ERROR_RING2_STACK_IN_USE - Кольцо 2 стека занято. -. - -MessageId=208 -Severity=Success -Facility=System -SymbolicName=ERROR_META_EXPANSION_TOO_LONG -Language=English -ERROR_META_EXPANSION_TOO_LONG - The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. -. -Language=Russian -ERROR_META_EXPANSION_TOO_LONG - Подстановочные знаки * и/или ? заданы неверно или образуют неверный шаблон имени. -. - -MessageId=209 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SIGNAL_NUMBER -Language=English -ERROR_INVALID_SIGNAL_NUMBER - The signal being posted is not correct. -. -Language=Russian -ERROR_INVALID_SIGNAL_NUMBER - Отправляемый сигнал неверен. -. - -MessageId=210 -Severity=Success -Facility=System -SymbolicName=ERROR_THREAD_1_INACTIVE -Language=English -ERROR_THREAD_1_INACTIVE - The signal handler cannot be set. -. -Language=Russian -ERROR_THREAD_1_INACTIVE - Не удается установить обработчик сигналов. -. - -MessageId=212 -Severity=Success -Facility=System -SymbolicName=ERROR_LOCKED -Language=English -ERROR_LOCKED - The segment is locked and cannot be reallocated. -. -Language=Russian -ERROR_LOCKED - Сегмент заблокирован и не может быть перемещен. -. - -MessageId=214 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_MODULES -Language=English -ERROR_TOO_MANY_MODULES - Too many dynamic-link modules are attached to this program or dynamic-link module. -. -Language=Russian -ERROR_TOO_MANY_MODULES - К этой программе или модулю присоединено слишком много динамически подключаемых модулей. -. - -MessageId=215 -Severity=Success -Facility=System -SymbolicName=ERROR_NESTING_NOT_ALLOWED -Language=English -ERROR_NESTING_NOT_ALLOWED - Cannot nest calls to LoadModule. -. -Language=Russian -ERROR_NESTING_NOT_ALLOWED - Вызовы LoadModule не могут быть вложены. -. - -MessageId=216 -Severity=Success -Facility=System -SymbolicName=ERROR_EXE_MACHINE_TYPE_MISMATCH -Language=English -ERROR_EXE_MACHINE_TYPE_MISMATCH - The image file %1 is valid, but is for a machine type other than the current machine. -. - -MessageId=217 -Severity=Success -Facility=System -SymbolicName=ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY -Language=English -ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY - The image file %1 is signed, unable to modify. -. - -MessageId=218 -Severity=Success -Facility=System -SymbolicName=ERRO_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY -Language=English -ERRO_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY - The image file %1 is strong signed, unable to modify. -. - -MessageId=230 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_PIPE -Language=English -ERROR_BAD_PIPE - The pipe state is invalid. -. - -MessageId=231 -Severity=Success -Facility=System -SymbolicName=ERROR_PIPE_BUSY -Language=English -ERROR_PIPE_BUSY - All pipe instances are busy. -. - -MessageId=232 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_DATA -Language=English -ERROR_NO_DATA - The pipe is being closed. -. - -MessageId=233 -Severity=Success -Facility=System -SymbolicName=ERROR_PIPE_NOT_CONNECTED -Language=English -ERROR_PIPE_NOT_CONNECTED - No process is on the other end of the pipe. -. - -MessageId=234 -Severity=Success -Facility=System -SymbolicName=ERROR_MORE_DATA -Language=English -ERROR_MORE_DATA - More data is available. -. - -MessageId=240 -Severity=Success -Facility=System -SymbolicName=ERROR_VC_DISCONNECTED -Language=English -ERROR_VC_DISCONNECTED - The session was canceled. -. - -MessageId=254 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_EA_NAME -Language=English -ERROR_INVALID_EA_NAME - The specified extended attribute name was invalid. -. - -MessageId=255 -Severity=Success -Facility=System -SymbolicName=ERROR_EA_LIST_INCONSISTENT -Language=English -ERROR_EA_LIST_INCONSISTENT - The extended attributes are inconsistent. -. - -MessageId=258 -Severity=Success -Facility=System -SymbolicName=WAIT_TIMEOUT -Language=English -WAIT_TIMEOUT - The wait operation timed out. -. - -MessageId=259 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MORE_ITEMS -Language=English -ERROR_NO_MORE_ITEMS - No more data is available. -. - -MessageId=266 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_COPY -Language=English -ERROR_CANNOT_COPY - The copy functions cannot be used. -. - -MessageId=267 -Severity=Success -Facility=System -SymbolicName=ERROR_DIRECTORY -Language=English -ERROR_DIRECTORY - The directory name is invalid. -. - -MessageId=275 -Severity=Success -Facility=System -SymbolicName=ERROR_EAS_DIDNT_FIT -Language=English -ERROR_EAS_DIDNT_FIT - The extended attributes did not fit in the buffer. -. - -MessageId=276 -Severity=Success -Facility=System -SymbolicName=ERROR_EA_FILE_CORRUPT -Language=English -ERROR_EA_FILE_CORRUPT - The extended attribute file on the mounted file system is corrupt. -. - -MessageId=277 -Severity=Success -Facility=System -SymbolicName=ERROR_EA_TABLE_FULL -Language=English -ERROR_EA_TABLE_FULL - The extended attribute table file is full. -. - -MessageId=278 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_EA_HANDLE -Language=English -ERROR_INVALID_EA_HANDLE - The specified extended attribute handle is invalid. -. - -MessageId=282 -Severity=Success -Facility=System -SymbolicName=ERROR_EAS_NOT_SUPPORTED -Language=English -ERROR_EAS_NOT_SUPPORTED - The mounted file system does not support extended attributes. -. - -MessageId=288 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_OWNER -Language=English -ERROR_NOT_OWNER - Attempt to release mutex not owned by caller. -. - -MessageId=298 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_POSTS -Language=English -ERROR_TOO_MANY_POSTS - Too many posts were made to a semaphore. -. - -MessageId=299 -Severity=Success -Facility=System -SymbolicName=ERROR_PARTIAL_COPY -Language=English -ERROR_PARTIAL_COPY - Only part of a ReadProcessMemory or WriteProcessMemory request was completed. -. - -MessageId=300 -Severity=Success -Facility=System -SymbolicName=ERROR_OPLOCK_NOT_GRANTED -Language=English -ERROR_OPLOCK_NOT_GRANTED - The oplock request is denied. -. - -MessageId=301 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_OPLOCK_PROTOCOL -Language=English -ERROR_INVALID_OPLOCK_PROTOCOL - An invalid oplock acknowledgment was received by the system. -. - -MessageId=302 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_TOO_FRAGMENTED -Language=English -ERROR_DISK_TOO_FRAGMENTED - The volume is too fragmented to complete this operation. -. - -MessageId=303 -Severity=Success -Facility=System -SymbolicName=ERROR_DELETE_PENDING -Language=English -ERROR_DELETE_PENDING - The file cannot be opened because it is in the process of being deleted. -. - -MessageId=317 -Severity=Success -Facility=System -SymbolicName=ERROR_MR_MID_NOT_FOUND -Language=English -ERROR_MR_MID_NOT_FOUND - The system cannot find message text for message number 0x%1 in the message file for %2. -. - -MessageId=318 -Severity=Success -Facility=System -SymbolicName=ERROR_SCOPE_NOT_FOUND -Language=English -ERROR_SCOPE_NOT_FOUND - The scope specified was not found. -. - -MessageId=487 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ADDRESS -Language=English -ERROR_INVALID_ADDRESS - Attempt to access invalid address. -. - -MessageId=534 -Severity=Success -Facility=System -SymbolicName=ERROR_ARITHMETIC_OVERFLOW -Language=English -ERROR_ARITHMETIC_OVERFLOW - Arithmetic result exceeded 32 bits. -. - -MessageId=535 -Severity=Success -Facility=System -SymbolicName=ERROR_PIPE_CONNECTED -Language=English -ERROR_PIPE_CONNECTED - There is a process on other end of the pipe. -. - -MessageId=536 -Severity=Success -Facility=System -SymbolicName=ERROR_PIPE_LISTENING -Language=English -ERROR_PIPE_LISTENING - Waiting for a process to open the other end of the pipe. -. - -MessageId=537 -Severity=Success -Facility=System -SymbolicName=ERROR_ACPI_ERROR -Language=English -ERROR_ACPI_ERROR - An error occurred in the ACPI subsystem. -. - -MessageId=538 -Severity=Success -Facility=System -SymbolicName=ERROR_ABIOS_ERROR -Language=English -ERROR_ABIOS_ERROR - An error occurred in the ABIOS subsystem -. - -MessageId=539 -Severity=Success -Facility=System -SymbolicName=ERROR_WX86_WARNING -Language=English -ERROR_WX86_WARNING - A warning occurred in the WX86 subsystem. -. - -MessageId=540 -Severity=Success -Facility=System -SymbolicName=ERROR_WX86_ERROR -Language=English -ERROR_WX86_ERROR - An error occurred in the WX86 subsystem. -. - -MessageId=541 -Severity=Success -Facility=System -SymbolicName=ERROR_TIMER_NOT_CANCELED -Language=English -ERROR_TIMER_NOT_CANCELED - An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine. -. - -MessageId=542 -Severity=Success -Facility=System -SymbolicName=ERROR_UNWIND -Language=English -ERROR_UNWIND - Unwind exception code. -. - -MessageId=543 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_STACK -Language=English -ERROR_BAD_STACK - An invalid or unaligned stack was encountered during an unwind operation. -. - -MessageId=544 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_UNWIND_TARGET -Language=English -ERROR_INVALID_UNWIND_TARGET - An invalid unwind target was encountered during an unwind operation. -. - -MessageId=545 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PORT_ATTRIBUTES -Language=English -ERROR_INVALID_PORT_ATTRIBUTES - Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort -. - -MessageId=546 -Severity=Success -Facility=System -SymbolicName=ERROR_PORT_MESSAGE_TOO_LONG -Language=English -ERROR_PORT_MESSAGE_TOO_LONG - Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port. -. - -MessageId=547 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_QUOTA_LOWER -Language=English -ERROR_INVALID_QUOTA_LOWER - An attempt was made to lower a quota limit below the current usage. -. - -MessageId=548 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_ALREADY_ATTACHED -Language=English -ERROR_DEVICE_ALREADY_ATTACHED - An attempt was made to attach to a device that was already attached to another device. -. - -MessageId=549 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTRUCTION_MISALIGNMENT -Language=English -ERROR_INSTRUCTION_MISALIGNMENT - An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references. -. - -MessageId=550 -Severity=Success -Facility=System -SymbolicName=ERROR_PROFILING_NOT_STARTED -Language=English -ERROR_PROFILING_NOT_STARTED - Profiling not started. -. - -MessageId=551 -Severity=Success -Facility=System -SymbolicName=ERROR_PROFILING_NOT_STOPPED -Language=English -ERROR_PROFILING_NOT_STOPPED - Profiling not stopped. -. - -MessageId=552 -Severity=Success -Facility=System -SymbolicName=ERROR_COULD_NOT_INTERPRET -Language=English -ERROR_COULD_NOT_INTERPRET - The passed ACL did not contain the minimum required information. -. - -MessageId=553 -Severity=Success -Facility=System -SymbolicName=ERROR_PROFILING_AT_LIMIT -Language=English -ERROR_PROFILING_AT_LIMIT - The number of active profiling objects is at the maximum and no more may be started. -. - -MessageId=554 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_WAIT -Language=English -ERROR_CANT_WAIT - Used to indicate that an operation cannot continue without blocking for I/O. -. - -MessageId=555 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_TERMINATE_SELF -Language=English -ERROR_CANT_TERMINATE_SELF - Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process. -. - -MessageId=556 -Severity=Success -Facility=System -SymbolicName=ERROR_UNEXPECTED_MM_CREATE_ERR -Language=English -ERROR_UNEXPECTED_MM_CREATE_ERR - If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. -. - -MessageId=557 -Severity=Success -Facility=System -SymbolicName=ERROR_UNEXPECTED_MM_MAP_ERROR -Language=English -ERROR_UNEXPECTED_MM_MAP_ERROR - If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. -. - -MessageId=558 -Severity=Success -Facility=System -SymbolicName=ERROR_UNEXPECTED_MM_EXTEND_ERR -Language=English -ERROR_UNEXPECTED_MM_EXTEND_ERR - If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. -. - -MessageId=559 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_FUNCTION_TABLE -Language=English -ERROR_BAD_FUNCTION_TABLE - A malformed function table was encountered during an unwind operation. -. - -MessageId=560 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_GUID_TRANSLATION -Language=English -ERROR_NO_GUID_TRANSLATION - Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail. -. - -MessageId=561 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LDT_SIZE -Language=English -ERROR_INVALID_LDT_SIZE - Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors. -. - -MessageId=563 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LDT_OFFSET -Language=English -ERROR_INVALID_LDT_OFFSET - Indicates that the starting value for the LDT information was not an integral multiple of the selector size. -. - -MessageId=564 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LDT_DESCRIPTOR -Language=English -ERROR_INVALID_LDT_DESCRIPTOR - Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors. -. - -MessageId=565 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_THREADS -Language=English -ERROR_TOO_MANY_THREADS - Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads. -. - -MessageId=566 -Severity=Success -Facility=System -SymbolicName=ERROR_THREAD_NOT_IN_PROCESS -Language=English -ERROR_THREAD_NOT_IN_PROCESS - An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified. -. - -MessageId=567 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGEFILE_QUOTA_EXCEEDED -Language=English -ERROR_PAGEFILE_QUOTA_EXCEEDED - Page file quota was exceeded. -. - -MessageId=568 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGON_SERVER_CONFLICT -Language=English -ERROR_LOGON_SERVER_CONFLICT - The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. -. - -MessageId=569 -Severity=Success -Facility=System -SymbolicName=ERROR_SYNCHRONIZATION_REQUIRED -Language=English -ERROR_SYNCHRONIZATION_REQUIRED - The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required. -. - -MessageId=570 -Severity=Success -Facility=System -SymbolicName=ERROR_NET_OPEN_FAILED -Language=English -ERROR_NET_OPEN_FAILED - The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines. -. - -MessageId=571 -Severity=Success -Facility=System -SymbolicName=ERROR_IO_PRIVILEGE_FAILED -Language=English -ERROR_IO_PRIVILEGE_FAILED - The I/O permissions for the process could not be changed. -. - -MessageId=572 -Severity=Success -Facility=System -SymbolicName=ERROR_CONTROL_C_EXIT -Language=English -ERROR_CONTROL_C_EXIT - The application terminated as a result of a CTRL+C. -. - -MessageId=573 -Severity=Success -Facility=System -SymbolicName=ERROR_MISSING_SYSTEMFILE -Language=English -ERROR_MISSING_SYSTEMFILE - The required system file %hs is bad or missing. -. - -MessageId=574 -Severity=Success -Facility=System -SymbolicName=ERROR_UNHANDLED_EXCEPTION -Language=English -ERROR_UNHANDLED_EXCEPTION - The exception %s (0x%08lx) occurred in the application at location 0x%08lx. -. - -MessageId=575 -Severity=Success -Facility=System -SymbolicName=ERROR_APP_INIT_FAILURE -Language=English -ERROR_APP_INIT_FAILURE - The application failed to initialize properly (0x%lx). Click on OK to terminate the application. -. - -MessageId=576 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGEFILE_CREATE_FAILED -Language=English -ERROR_PAGEFILE_CREATE_FAILED - The creation of the paging file %hs failed (%lx). The requested size was %ld. -. - -MessageId=578 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_PAGEFILE -Language=English -ERROR_NO_PAGEFILE - No paging file was specified in the system configuration. -. - -MessageId=579 -Severity=Success -Facility=System -SymbolicName=ERROR_ILLEGAL_FLOAT_CONTEXT -Language=English -ERROR_ILLEGAL_FLOAT_CONTEXT - A real-mode application issued a floating-point instruction and floating-point hardware is not present. -. - -MessageId=580 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_EVENT_PAIR -Language=English -ERROR_NO_EVENT_PAIR - An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread. -. - -MessageId=581 -Severity=Success -Facility=System -SymbolicName=ERROR_DOMAIN_CTRLR_CONFIG_ERROR -Language=English -ERROR_DOMAIN_CTRLR_CONFIG_ERROR - A Windows Server has an incorrect configuration. -. - -MessageId=582 -Severity=Success -Facility=System -SymbolicName=ERROR_ILLEGAL_CHARACTER -Language=English -ERROR_ILLEGAL_CHARACTER - An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE. -. - -MessageId=583 -Severity=Success -Facility=System -SymbolicName=ERROR_UNDEFINED_CHARACTER -Language=English -ERROR_UNDEFINED_CHARACTER - The Unicode character is not defined in the Unicode character set installed on the system. -. - -MessageId=584 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOPPY_VOLUME -Language=English -ERROR_FLOPPY_VOLUME - The paging file cannot be created on a floppy diskette. -. - -MessageId=585 -Severity=Success -Facility=System -SymbolicName=ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT -Language=English -ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT - The system bios failed to connect a system interrupt to the device or bus for which the device is connected. -. - -MessageId=586 -Severity=Success -Facility=System -SymbolicName=ERROR_BACKUP_CONTROLLER -Language=English -ERROR_BACKUP_CONTROLLER - This operation is only allowed for the Primary Domain Controller of the domain. -. - -MessageId=587 -Severity=Success -Facility=System -SymbolicName=ERROR_MUTANT_LIMIT_EXCEEDED -Language=English -ERROR_MUTANT_LIMIT_EXCEEDED - An attempt was made to acquire a mutant such that its maximum count would have been exceeded. -. - -MessageId=588 -Severity=Success -Facility=System -SymbolicName=ERROR_FS_DRIVER_REQUIRED -Language=English -ERROR_FS_DRIVER_REQUIRED - A volume has been accessed for which a file system driver is required that has not yet been loaded. -. - -MessageId=589 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_LOAD_REGISTRY_FILE -Language=English -ERROR_CANNOT_LOAD_REGISTRY_FILE - The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable. -. - -MessageId=590 -Severity=Success -Facility=System -SymbolicName=ERROR_DEBUG_ATTACH_FAILED -Language=English -ERROR_DEBUG_ATTACH_FAILED - An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error. -. - -MessageId=591 -Severity=Success -Facility=System -SymbolicName=ERROR_SYSTEM_PROCESS_TERMINATED -Language=English -ERROR_SYSTEM_PROCESS_TERMINATED - The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down. -. - -MessageId=592 -Severity=Success -Facility=System -SymbolicName=ERROR_DATA_NOT_ACCEPTED -Language=English -ERROR_DATA_NOT_ACCEPTED - The TDI client could not handle the data received during an indication. -. - -MessageId=593 -Severity=Success -Facility=System -SymbolicName=ERROR_VDM_HARD_ERROR -Language=English -ERROR_VDM_HARD_ERROR - NTVDM encountered a hard error. -. - -MessageId=594 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVER_CANCEL_TIMEOUT -Language=English -ERROR_DRIVER_CANCEL_TIMEOUT - The driver %hs failed to complete a cancelled I/O request in the allotted time. -. - -MessageId=595 -Severity=Success -Facility=System -SymbolicName=ERROR_REPLY_MESSAGE_MISMATCH -Language=English -ERROR_REPLY_MESSAGE_MISMATCH - An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message. -. - -MessageId=596 -Severity=Success -Facility=System -SymbolicName=ERROR_LOST_WRITEBEHIND_DATA -Language=English -ERROR_LOST_WRITEBEHIND_DATA - Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere. -. - -MessageId=597 -Severity=Success -Facility=System -SymbolicName=ERROR_CLIENT_SERVER_PARAMETERS_INVALID -Language=English -ERROR_CLIENT_SERVER_PARAMETERS_INVALID - The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window. -. - -MessageId=598 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_TINY_STREAM -Language=English -ERROR_NOT_TINY_STREAM - The stream is not a tiny stream. -. - -MessageId=599 -Severity=Success -Facility=System -SymbolicName=ERROR_STACK_OVERFLOW_READ -Language=English -ERROR_STACK_OVERFLOW_READ - The request must be handled by the stack overflow code. -. - -MessageId=600 -Severity=Success -Facility=System -SymbolicName=ERROR_CONVERT_TO_LARGE -Language=English -ERROR_CONVERT_TO_LARGE - Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream. -. - -MessageId=601 -Severity=Success -Facility=System -SymbolicName=ERROR_FOUND_OUT_OF_SCOPE -Language=English -ERROR_FOUND_OUT_OF_SCOPE - The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation. -. - -MessageId=602 -Severity=Success -Facility=System -SymbolicName=ERROR_ALLOCATE_BUCKET -Language=English -ERROR_ALLOCATE_BUCKET - The bucket array must be grown. Retry transaction after doing so. -. - -MessageId=603 -Severity=Success -Facility=System -SymbolicName=ERROR_MARSHALL_OVERFLOW -Language=English -ERROR_MARSHALL_OVERFLOW - The user/kernel marshalling buffer has overflowed. -. - -MessageId=604 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_VARIANT -Language=English -ERROR_INVALID_VARIANT - The supplied variant structure contains invalid data. -. - -MessageId=605 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_COMPRESSION_BUFFER -Language=English -ERROR_BAD_COMPRESSION_BUFFER - The specified buffer contains ill-formed data. -. - -MessageId=606 -Severity=Success -Facility=System -SymbolicName=ERROR_AUDIT_FAILED -Language=English -ERROR_AUDIT_FAILED - An attempt to generate a security audit failed. -. - -MessageId=607 -Severity=Success -Facility=System -SymbolicName=ERROR_TIMER_RESOLUTION_NOT_SET -Language=English -ERROR_TIMER_RESOLUTION_NOT_SET - The timer resolution was not previously set by the current process. -. - -MessageId=608 -Severity=Success -Facility=System -SymbolicName=ERROR_INSUFFICIENT_LOGON_INFO -Language=English -ERROR_INSUFFICIENT_LOGON_INFO - There is insufficient account information to log you on. -. - -MessageId=609 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_DLL_ENTRYPOINT -Language=English -ERROR_BAD_DLL_ENTRYPOINT - The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly. -. - -MessageId=610 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_SERVICE_ENTRYPOINT -Language=English -ERROR_BAD_SERVICE_ENTRYPOINT - The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly. -. - -MessageId=611 -Severity=Success -Facility=System -SymbolicName=ERROR_IP_ADDRESS_CONFLICT1 -Language=English -ERROR_IP_ADDRESS_CONFLICT1 - There is an IP address conflict with another system on the network -. - -MessageId=612 -Severity=Success -Facility=System -SymbolicName=ERROR_IP_ADDRESS_CONFLICT2 -Language=English -ERROR_IP_ADDRESS_CONFLICT2 - There is an IP address conflict with another system on the network -. - -MessageId=613 -Severity=Success -Facility=System -SymbolicName=ERROR_REGISTRY_QUOTA_LIMIT -Language=English -ERROR_REGISTRY_QUOTA_LIMIT - The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. -. - -MessageId=614 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_CALLBACK_ACTIVE -Language=English -ERROR_NO_CALLBACK_ACTIVE - A callback return system service cannot be executed when no callback is active. -. - -MessageId=615 -Severity=Success -Facility=System -SymbolicName=ERROR_PWD_TOO_SHORT -Language=English -ERROR_PWD_TOO_SHORT - The password provided is too short to meet the policy of your user account. Please choose a longer password. -. - -MessageId=616 -Severity=Success -Facility=System -SymbolicName=ERROR_PWD_TOO_RECENT -Language=English -ERROR_PWD_TOO_RECENT - The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned. -. - -MessageId=617 -Severity=Success -Facility=System -SymbolicName=ERROR_PWD_HISTORY_CONFLICT -Language=English -ERROR_PWD_HISTORY_CONFLICT - You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used. -. - -MessageId=618 -Severity=Success -Facility=System -SymbolicName=ERROR_UNSUPPORTED_COMPRESSION -Language=English -ERROR_UNSUPPORTED_COMPRESSION - The specified compression format is unsupported. -. - -MessageId=619 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_HW_PROFILE -Language=English -ERROR_INVALID_HW_PROFILE - The specified hardware profile configuration is invalid. -. - -MessageId=620 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PLUGPLAY_DEVICE_PATH -Language=English -ERROR_INVALID_PLUGPLAY_DEVICE_PATH - The specified Plug and Play registry device path is invalid. -. - -MessageId=621 -Severity=Success -Facility=System -SymbolicName=ERROR_QUOTA_LIST_INCONSISTENT -Language=English -ERROR_QUOTA_LIST_INCONSISTENT - The specified quota list is internally inconsistent with its descriptor. -. - -MessageId=622 -Severity=Success -Facility=System -SymbolicName=ERROR_EVALUATION_EXPIRATION -Language=English -ERROR_EVALUATION_EXPIRATION - The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product. -. - -MessageId=623 -Severity=Success -Facility=System -SymbolicName=ERROR_ILLEGAL_DLL_RELOCATION -Language=English -ERROR_ILLEGAL_DLL_RELOCATION - The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL. -. - -MessageId=624 -Severity=Success -Facility=System -SymbolicName=ERROR_DLL_INIT_FAILED_LOGOFF -Language=English -ERROR_DLL_INIT_FAILED_LOGOFF - The application failed to initialize because the window station is shutting down. -. - -MessageId=625 -Severity=Success -Facility=System -SymbolicName=ERROR_VALIDATE_CONTINUE -Language=English -ERROR_VALIDATE_CONTINUE - The validation process needs to continue on to the next step. -. - -MessageId=626 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MORE_MATCHES -Language=English -ERROR_NO_MORE_MATCHES - There are no more matches for the current index enumeration. -. - -MessageId=627 -Severity=Success -Facility=System -SymbolicName=ERROR_RANGE_LIST_CONFLICT -Language=English -ERROR_RANGE_LIST_CONFLICT - The range could not be added to the range list because of a conflict. -. - -MessageId=628 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVER_SID_MISMATCH -Language=English -ERROR_SERVER_SID_MISMATCH - The server process is running under a SID different than that required by client. -. - -MessageId=629 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_ENABLE_DENY_ONLY -Language=English -ERROR_CANT_ENABLE_DENY_ONLY - A group marked use for deny only cannot be enabled. -. - -MessageId=630 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOAT_MULTIPLE_FAULTS -Language=English -ERROR_FLOAT_MULTIPLE_FAULTS - Multiple floating point faults. -. - -MessageId=631 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOAT_MULTIPLE_TRAPS -Language=English -ERROR_FLOAT_MULTIPLE_TRAPS - Multiple floating point traps. -. - -MessageId=632 -Severity=Success -Facility=System -SymbolicName=ERROR_NOINTERFACE -Language=English -ERROR_NOINTERFACE - The requested interface is not supported. -. - -MessageId=633 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVER_FAILED_SLEEP -Language=English -ERROR_DRIVER_FAILED_SLEEP - The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. -. - -MessageId=634 -Severity=Success -Facility=System -SymbolicName=ERROR_CORRUPT_SYSTEM_FILE -Language=English -ERROR_CORRUPT_SYSTEM_FILE - The system file %1 has become corrupt and has been replaced. -. - -MessageId=635 -Severity=Success -Facility=System -SymbolicName=ERROR_COMMITMENT_MINIMUM -Language=English -ERROR_COMMITMENT_MINIMUM - Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help. -. - -MessageId=636 -Severity=Success -Facility=System -SymbolicName=ERROR_PNP_RESTART_ENUMERATION -Language=English -ERROR_PNP_RESTART_ENUMERATION - A device was removed so enumeration must be restarted. -. - -MessageId=637 -Severity=Success -Facility=System -SymbolicName=ERROR_SYSTEM_IMAGE_BAD_SIGNATURE -Language=English -ERROR_SYSTEM_IMAGE_BAD_SIGNATURE - The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down. -. - -MessageId=638 -Severity=Success -Facility=System -SymbolicName=ERROR_PNP_REBOOT_REQUIRED -Language=English -ERROR_PNP_REBOOT_REQUIRED - Device will not start without a reboot. -. - -MessageId=639 -Severity=Success -Facility=System -SymbolicName=ERROR_INSUFFICIENT_POWER -Language=English -ERROR_INSUFFICIENT_POWER - There is not enough power to complete the requested operation. -. - -MessageId=641 -Severity=Success -Facility=System -SymbolicName=ERROR_SYSTEM_SHUTDOWN -Language=English -ERROR_SYSTEM_SHUTDOWN - The system is in the process of shutting down. -. - -MessageId=642 -Severity=Success -Facility=System -SymbolicName=ERROR_PORT_NOT_SET -Language=English -ERROR_PORT_NOT_SET - An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. -. - -MessageId=643 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_VERSION_CHECK_FAILURE -Language=English -ERROR_DS_VERSION_CHECK_FAILURE - This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller. -. - -MessageId=644 -Severity=Success -Facility=System -SymbolicName=ERROR_RANGE_NOT_FOUND -Language=English -ERROR_RANGE_NOT_FOUND - The specified range could not be found in the range list. -. - -MessageId=646 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SAFE_MODE_DRIVER -Language=English -ERROR_NOT_SAFE_MODE_DRIVER - The driver was not loaded because the system is booting into safe mode. -. - -MessageId=647 -Severity=Success -Facility=System -SymbolicName=ERROR_FAILED_DRIVER_ENTRY -Language=English -ERROR_FAILED_DRIVER_ENTRY - The driver was not loaded because it failed it's initialization call. -. - -MessageId=648 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_ENUMERATION_ERROR -Language=English -ERROR_DEVICE_ENUMERATION_ERROR - The \"%hs\" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection. -. - -MessageId=649 -Severity=Success -Facility=System -SymbolicName=ERROR_MOUNT_POINT_NOT_RESOLVED -Language=English -ERROR_MOUNT_POINT_NOT_RESOLVED - The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached. -. - -MessageId=650 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DEVICE_OBJECT_PARAMETER -Language=English -ERROR_INVALID_DEVICE_OBJECT_PARAMETER - The device object parameter is either not a valid device object or is not attached to the volume specified by the file name. -. - -MessageId=651 -Severity=Success -Facility=System -SymbolicName=ERROR_MCA_OCCURED -Language=English -ERROR_MCA_OCCURED - A Machine Check Error has occurred. Please check the system eventlog for additional information. -. - -MessageId=652 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVER_DATABASE_ERROR -Language=English -ERROR_DRIVER_DATABASE_ERROR - There was error [%2] processing the driver database. -. - -MessageId=653 -Severity=Success -Facility=System -SymbolicName=ERROR_SYSTEM_HIVE_TOO_LARGE -Language=English -ERROR_SYSTEM_HIVE_TOO_LARGE - System hive size has exceeded its limit. -. - -MessageId=654 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVER_FAILED_PRIOR_UNLOAD -Language=English -ERROR_DRIVER_FAILED_PRIOR_UNLOAD - The driver could not be loaded because a previous version of the driver is still in memory. -. - -MessageId=655 -Severity=Success -Facility=System -SymbolicName=ERROR_VOLSNAP_PREPARE_HIBERNATE -Language=English -ERROR_VOLSNAP_PREPARE_HIBERNATE - Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. -. - -MessageId=656 -Severity=Success -Facility=System -SymbolicName=ERROR_HIBERNATION_FAILURE -Language=English -ERROR_HIBERNATION_FAILURE - The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted. -. - -MessageId=657 -Severity=Success -Facility=System -SymbolicName=ERROR_HUNG_DISPLAY_DRIVER_THREAD -Language=English -ERROR_HUNG_DISPLAY_DRIVER_THREAD - The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft. -. - -MessageId=665 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_SYSTEM_LIMITATION -Language=English -ERROR_FILE_SYSTEM_LIMITATION - The requested operation could not be completed due to a file system limitation. -. - -MessageId=668 -Severity=Success -Facility=System -SymbolicName=ERROR_ASSERTION_FAILURE -Language=English -ERROR_ASSERTION_FAILURE - An assertion failure has occurred. -. - -MessageId=669 -Severity=Success -Facility=System -SymbolicName=ERROR_VERIFIER_STOP -Language=English -ERROR_VERIFIER_STOP - Application verifier has found an error in the current process. -. - -MessageId=670 -Severity=Success -Facility=System -SymbolicName=ERROR_WOW_ASSERTION -Language=English -ERROR_WOW_ASSERTION - WOW Assertion Error. -. - -MessageId=671 -Severity=Success -Facility=System -SymbolicName=ERROR_PNP_BAD_MPS_TABLE -Language=English -ERROR_PNP_BAD_MPS_TABLE - A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update. -. - -MessageId=672 -Severity=Success -Facility=System -SymbolicName=ERROR_PNP_TRANSLATION_FAILED -Language=English -ERROR_PNP_TRANSLATION_FAILED - A translator failed to translate resources. -. - -MessageId=673 -Severity=Success -Facility=System -SymbolicName=ERROR_PNP_IRQ_TRANSLATION_FAILED -Language=English -ERROR_PNP_IRQ_TRANSLATION_FAILED - A IRQ translator failed to translate resources. -. - -MessageId=674 -Severity=Success -Facility=System -SymbolicName=ERROR_PNP_INVALID_ID -Language=English -ERROR_PNP_INVALID_ID - Driver %2 returned invalid ID for a child device (%3). -. - -MessageId=675 -Severity=Success -Facility=System -SymbolicName=ERROR_WAKE_SYSTEM_DEBUGGER -Language=English -ERROR_WAKE_SYSTEM_DEBUGGER - The system debugger was awakened by an interrupt. -. - -MessageId=676 -Severity=Success -Facility=System -SymbolicName=ERROR_HANDLES_CLOSED -Language=English -ERROR_HANDLES_CLOSED - Handles to objects have been automatically closed as a result of the requested operation. -. - -MessageId=677 -Severity=Success -Facility=System -SymbolicName=ERROR_EXTRANEOUS_INFORMATION -Language=English -ERROR_EXTRANEOUS_INFORMATION - he specified access control list (ACL) contained more information than was expected. -. - -MessageId=678 -Severity=Success -Facility=System -SymbolicName=ERROR_RXACT_COMMIT_NECESSARY -Language=English -ERROR_RXACT_COMMIT_NECESSARY - This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired). -. - -MessageId=679 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIA_CHECK -Language=English -ERROR_MEDIA_CHECK - The media may have changed. -. - -MessageId=680 -Severity=Success -Facility=System -SymbolicName=ERROR_GUID_SUBSTITUTION_MADE -Language=English -ERROR_GUID_SUBSTITUTION_MADE - During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended. -. - -MessageId=681 -Severity=Success -Facility=System -SymbolicName=ERROR_STOPPED_ON_SYMLINK -Language=English -ERROR_STOPPED_ON_SYMLINK - The create operation stopped after reaching a symbolic link. -. - -MessageId=682 -Severity=Success -Facility=System -SymbolicName=ERROR_LONGJUMP -Language=English -ERROR_LONGJUMP - A long jump has been executed. -. - -MessageId=683 -Severity=Success -Facility=System -SymbolicName=ERROR_PLUGPLAY_QUERY_VETOED -Language=English -ERROR_PLUGPLAY_QUERY_VETOED - The Plug and Play query operation was not successful. -. - -MessageId=684 -Severity=Success -Facility=System -SymbolicName=ERROR_UNWIND_CONSOLIDATE -Language=English -ERROR_UNWIND_CONSOLIDATE - A frame consolidation has been executed. -. - -MessageId=685 -Severity=Success -Facility=System -SymbolicName=ERROR_REGISTRY_HIVE_RECOVERED -Language=English -ERROR_REGISTRY_HIVE_RECOVERED - Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost. -. - -MessageId=686 -Severity=Success -Facility=System -SymbolicName=ERROR_DLL_MIGHT_BE_INSECURE -Language=English -ERROR_DLL_MIGHT_BE_INSECURE - The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs? -. - -MessageId=687 -Severity=Success -Facility=System -SymbolicName=ERROR_DLL_MIGHT_BE_INCOMPATIBLE -Language=English -ERROR_DLL_MIGHT_BE_INCOMPATIBLE - The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs? -. - -MessageId=688 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_EXCEPTION_NOT_HANDLED -Language=English -ERROR_DBG_EXCEPTION_NOT_HANDLED - Debugger did not handle the exception. -. - -MessageId=689 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_REPLY_LATER -Language=English -ERROR_DBG_REPLY_LATER - Debugger will reply later. -. - -MessageId=690 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE -Language=English -ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE - Debugger can not provide handle. -. - -MessageId=691 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_TERMINATE_THREAD -Language=English -ERROR_DBG_TERMINATE_THREAD - Debugger terminated thread. -. - -MessageId=692 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_TERMINATE_PROCESS -Language=English -ERROR_DBG_TERMINATE_PROCESS - Debugger terminated process. -. - -MessageId=693 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_CONTROL_C -Language=English -ERROR_DBG_CONTROL_C - Debugger got control C. -. - -MessageId=694 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_PRINTEXCEPTION_C -Language=English -ERROR_DBG_PRINTEXCEPTION_C - Debugger printed exception on control C. -. - -MessageId=695 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_RIPEXCEPTION -Language=English -ERROR_DBG_RIPEXCEPTION - Debugger received RIP exception. -. - -MessageId=696 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_CONTROL_BREAK -Language=English -ERROR_DBG_CONTROL_BREAK - Debugger received control break. -. - -MessageId=697 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_COMMAND_EXCEPTION -Language=English -ERROR_DBG_COMMAND_EXCEPTION - Debugger command communication exception. -. - -MessageId=698 -Severity=Success -Facility=System -SymbolicName=ERROR_OBJECT_NAME_EXISTS -Language=English -ERROR_OBJECT_NAME_EXISTS - An attempt was made to create an object and the object name already existed. -. - -MessageId=699 -Severity=Success -Facility=System -SymbolicName=ERROR_THREAD_WAS_SUSPENDED -Language=English -ERROR_THREAD_WAS_SUSPENDED - A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. -. - -MessageId=700 -Severity=Success -Facility=System -SymbolicName=ERROR_IMAGE_NOT_AT_BASE -Language=English -ERROR_IMAGE_NOT_AT_BASE - An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. -. - -MessageId=701 -Severity=Success -Facility=System -SymbolicName=ERROR_RXACT_STATE_CREATED -Language=English -ERROR_RXACT_STATE_CREATED - This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. -. - -MessageId=702 -Severity=Success -Facility=System -SymbolicName=ERROR_SEGMENT_NOTIFICATION -Language=English -ERROR_SEGMENT_NOTIFICATION - A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments. -. - -MessageId=703 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_CURRENT_DIRECTORY -Language=English -ERROR_BAD_CURRENT_DIRECTORY - The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit. -. - -MessageId=704 -Severity=Success -Facility=System -SymbolicName=ERROR_FT_READ_RECOVERY_FROM_BACKUP -Language=English -ERROR_FT_READ_RECOVERY_FROM_BACKUP - To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device. -. - -MessageId=705 -Severity=Success -Facility=System -SymbolicName=ERROR_FT_WRITE_RECOVERY -Language=English -ERROR_FT_WRITE_RECOVERY - To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device. -. - -MessageId=706 -Severity=Success -Facility=System -SymbolicName=ERROR_IMAGE_MACHINE_TYPE_MISMATCH -Language=English -ERROR_IMAGE_MACHINE_TYPE_MISMATCH - The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load. -. - -MessageId=707 -Severity=Success -Facility=System -SymbolicName=ERROR_RECEIVE_PARTIAL -Language=English -ERROR_RECEIVE_PARTIAL - The network transport returned partial data to its client. The remaining data will be sent later. -. - -MessageId=708 -Severity=Success -Facility=System -SymbolicName=ERROR_RECEIVE_EXPEDITED -Language=English -ERROR_RECEIVE_EXPEDITED - The network transport returned data to its client that was marked as expedited by the remote system. -. - -MessageId=709 -Severity=Success -Facility=System -SymbolicName=ERROR_RECEIVE_PARTIAL_EXPEDITED -Language=English -ERROR_RECEIVE_PARTIAL_EXPEDITED - The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. -. - -MessageId=710 -Severity=Success -Facility=System -SymbolicName=ERROR_EVENT_DONE -Language=English -ERROR_EVENT_DONE - The TDI indication has completed successfully. -. - -MessageId=711 -Severity=Success -Facility=System -SymbolicName=ERROR_EVENT_PENDING -Language=English -ERROR_EVENT_PENDING - The TDI indication has entered the pending state. -. - -MessageId=712 -Severity=Success -Facility=System -SymbolicName=ERROR_CHECKING_FILE_SYSTEM -Language=English -ERROR_CHECKING_FILE_SYSTEM - Checking file system on %wZ. -. - -MessageId=714 -Severity=Success -Facility=System -SymbolicName=ERROR_PREDEFINED_HANDLE -Language=English -ERROR_PREDEFINED_HANDLE - The specified registry key is referenced by a predefined handle. -. - -MessageId=715 -Severity=Success -Facility=System -SymbolicName=ERROR_WAS_UNLOCKED -Language=English -ERROR_WAS_UNLOCKED - The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process. -. - -MessageId=717 -Severity=Success -Facility=System -SymbolicName=ERROR_WAS_LOCKED -Language=English -ERROR_WAS_LOCKED - One of the pages to lock was already locked. -. - -MessageId=720 -Severity=Success -Facility=System -SymbolicName=ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE -Language=English -ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE - The image file %hs is valid, but is for a machine type other than the current machine. -. - -MessageId=721 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_YIELD_PERFORMED -Language=English -ERROR_NO_YIELD_PERFORMED - A yield execution was performed and no thread was available to run. -. - -MessageId=722 -Severity=Success -Facility=System -SymbolicName=ERROR_TIMER_RESUME_IGNORED -Language=English -ERROR_TIMER_RESUME_IGNORED - The resumable flag to a timer API was ignored. -. - -MessageId=723 -Severity=Success -Facility=System -SymbolicName=ERROR_ARBITRATION_UNHANDLED -Language=English -ERROR_ARBITRATION_UNHANDLED - The arbiter has deferred arbitration of these resources to its parent. -. - -MessageId=724 -Severity=Success -Facility=System -SymbolicName=ERROR_CARDBUS_NOT_SUPPORTED -Language=English -ERROR_CARDBUS_NOT_SUPPORTED - The device \"%hs\" has detected a CardBus card in its slot, but the firmware on this system is not configured to allow the CardBus controller to be run in CardBus mode. The operating system will currently accept only 16-bit (R2) pc-cards on this controller. -. - -MessageId=725 -Severity=Success -Facility=System -SymbolicName=ERROR_MP_PROCESSOR_MISMATCH -Language=English -ERROR_MP_PROCESSOR_MISMATCH - The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported. -. - -MessageId=726 -Severity=Success -Facility=System -SymbolicName=ERROR_HIBERNATED -Language=English -ERROR_HIBERNATED - The system was put into hibernation. -. - -MessageId=727 -Severity=Success -Facility=System -SymbolicName=ERROR_RESUME_HIBERNATION -Language=English -ERROR_RESUME_HIBERNATION - The system was resumed from hibernation. -. - -MessageId=728 -Severity=Success -Facility=System -SymbolicName=ERROR_FIRMWARE_UPDATED -Language=English -ERROR_FIRMWARE_UPDATED - Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3]. -. - -MessageId=729 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVERS_LEAKING_LOCKED_PAGES -Language=English -ERROR_DRIVERS_LEAKING_LOCKED_PAGES - A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit. -. - -MessageId=730 -Severity=Success -Facility=System -SymbolicName=ERROR_WAKE_SYSTEM -Language=English -ERROR_WAKE_SYSTEM - The system has awoken -. - -MessageId=741 -Severity=Success -Facility=System -SymbolicName=ERROR_REPARSE -Language=English -ERROR_REPARSE - A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. -. - -MessageId=742 -Severity=Success -Facility=System -SymbolicName=ERROR_OPLOCK_BREAK_IN_PROGRESS -Language=English -ERROR_OPLOCK_BREAK_IN_PROGRESS - An open/create operation completed while an oplock break is underway. -. - -MessageId=743 -Severity=Success -Facility=System -SymbolicName=ERROR_VOLUME_MOUNTED -Language=English -ERROR_VOLUME_MOUNTED - A new volume has been mounted by a file system. -. - -MessageId=744 -Severity=Success -Facility=System -SymbolicName=ERROR_RXACT_COMMITTED -Language=English -ERROR_RXACT_COMMITTED - This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed. -. - -MessageId=745 -Severity=Success -Facility=System -SymbolicName=ERROR_NOTIFY_CLEANUP -Language=English -ERROR_NOTIFY_CLEANUP - This indicates that a notify change request has been completed due to closing the handle which made the notify change request. -. - -MessageId=746 -Severity=Success -Facility=System -SymbolicName=ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED -Language=English -ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED - An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport. -. - -MessageId=747 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGE_FAULT_TRANSITION -Language=English -ERROR_PAGE_FAULT_TRANSITION - Page fault was a transition fault. -. - -MessageId=748 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGE_FAULT_DEMAND_ZERO -Language=English -ERROR_PAGE_FAULT_DEMAND_ZERO - Page fault was a demand zero fault. -. - -MessageId=749 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGE_FAULT_COPY_ON_WRITE -Language=English -ERROR_PAGE_FAULT_COPY_ON_WRITE - Page fault was a demand zero fault. -. - -MessageId=750 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGE_FAULT_GUARD_PAGE -Language=English -ERROR_PAGE_FAULT_GUARD_PAGE - Page fault was a demand zero fault. -. - -MessageId=751 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGE_FAULT_PAGING_FILE -Language=English -ERROR_PAGE_FAULT_PAGING_FILE - Page fault was satisfied by reading from a secondary storage device. -. - -MessageId=752 -Severity=Success -Facility=System -SymbolicName=ERROR_CACHE_PAGE_LOCKED -Language=English -ERROR_CACHE_PAGE_LOCKED - Cached page was locked during operation. -. - -MessageId=753 -Severity=Success -Facility=System -SymbolicName=ERROR_CRASH_DUMP -Language=English -ERROR_CRASH_DUMP - Crash dump exists in paging file. -. - -MessageId=754 -Severity=Success -Facility=System -SymbolicName=ERROR_BUFFER_ALL_ZEROS -Language=English -ERROR_BUFFER_ALL_ZEROS - Specified buffer contains all zeros. -. - -MessageId=755 -Severity=Success -Facility=System -SymbolicName=ERROR_REPARSE_OBJECT -Language=English -ERROR_REPARSE_OBJECT - A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. -. - -MessageId=756 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_REQUIREMENTS_CHANGED -Language=English -ERROR_RESOURCE_REQUIREMENTS_CHANGED - The device has succeeded a query-stop and its resource requirements have changed. -. - -MessageId=757 -Severity=Success -Facility=System -SymbolicName=ERROR_TRANSLATION_COMPLETE -Language=English -ERROR_TRANSLATION_COMPLETE - The translator has translated these resources into the global space and no further translations should be performed. -. - -MessageId=758 -Severity=Success -Facility=System -SymbolicName=ERROR_NOTHING_TO_TERMINATE -Language=English -ERROR_NOTHING_TO_TERMINATE - A process being terminated has no threads to terminate. -. - -MessageId=759 -Severity=Success -Facility=System -SymbolicName=ERROR_PROCESS_NOT_IN_JOB -Language=English -ERROR_PROCESS_NOT_IN_JOB - The specified process is not part of a job. -. - -MessageId=760 -Severity=Success -Facility=System -SymbolicName=ERROR_PROCESS_IN_JOB -Language=English -ERROR_PROCESS_IN_JOB - The specified process is part of a job. -. - -MessageId=761 -Severity=Success -Facility=System -SymbolicName=ERROR_VOLSNAP_HIBERNATE_READY -Language=English -ERROR_VOLSNAP_HIBERNATE_READY - The system is now ready for hibernation. -. - -MessageId=762 -Severity=Success -Facility=System -SymbolicName=ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY -Language=English -ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY - A file system or file system filter driver has successfully completed an FsFilter operation. -. - -MessageId=763 -Severity=Success -Facility=System -SymbolicName=ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED -Language=English -ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED - The specified interrupt vector was already connected. -. - -MessageId=764 -Severity=Success -Facility=System -SymbolicName=ERROR_INTERRUPT_STILL_CONNECTED -Language=English -ERROR_INTERRUPT_STILL_CONNECTED - The specified interrupt vector is still connected. -. - -MessageId=765 -Severity=Success -Facility=System -SymbolicName=ERROR_WAIT_FOR_OPLOCK -Language=English -ERROR_WAIT_FOR_OPLOCK - An operation is blocked waiting for an oplock. -. - -MessageId=766 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_EXCEPTION_HANDLED -Language=English -ERROR_DBG_EXCEPTION_HANDLED - Debugger handled exception. -. - -MessageId=767 -Severity=Success -Facility=System -SymbolicName=ERROR_DBG_CONTINUE -Language=English -ERROR_DBG_CONTINUE - Debugger continued -. - -MessageId=768 -Severity=Success -Facility=System -SymbolicName=ERROR_CALLBACK_POP_STACK -Language=English -ERROR_CALLBACK_POP_STACK - An exception occurred in a user mode callback and the kernel callback frame should be removed. -. - -MessageId=769 -Severity=Success -Facility=System -SymbolicName=ERROR_COMPRESSION_DISABLED -Language=English -ERROR_COMPRESSION_DISABLED - Compression is disabled for this volume. -. - -MessageId=770 -Severity=Success -Facility=System -SymbolicName=ERROR_CANTFETCHBACKWARDS -Language=English -ERROR_CANTFETCHBACKWARDS - The data provider cannot fetch backwards through a result set. -. - -MessageId=771 -Severity=Success -Facility=System -SymbolicName=ERROR_CANTSCROLLBACKWARDS -Language=English -ERROR_CANTSCROLLBACKWARDS - The data provider cannot scroll backwards through a result set. -. - -MessageId=772 -Severity=Success -Facility=System -SymbolicName=ERROR_ROWSNOTRELEASED -Language=English -ERROR_ROWSNOTRELEASED - The data provider requires that previously fetched data is released before asking for more data. -. - -MessageId=773 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_ACCESSOR_FLAGS -Language=English -ERROR_BAD_ACCESSOR_FLAGS - The data provider was not able to interpret the flags set for a column binding in an accessor. -. - -MessageId=774 -Severity=Success -Facility=System -SymbolicName=ERROR_ERRORS_ENCOUNTERED -Language=English -ERROR_ERRORS_ENCOUNTERED - One or more errors occurred while processing the request. -. - -MessageId=775 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_CAPABLE -Language=English -ERROR_NOT_CAPABLE - The implementation is not capable of performing the request. -. - -MessageId=776 -Severity=Success -Facility=System -SymbolicName=ERROR_REQUEST_OUT_OF_SEQUENCE -Language=English -ERROR_REQUEST_OUT_OF_SEQUENCE - The client of a component requested an operation which is not valid given the state of the component instance. -. - -MessageId=777 -Severity=Success -Facility=System -SymbolicName=ERROR_VERSION_PARSE_ERROR -Language=English -ERROR_VERSION_PARSE_ERROR - A version number could not be parsed. -. - -MessageId=778 -Severity=Success -Facility=System -SymbolicName=ERROR_BADSTARTPOSITION -Language=English -ERROR_BADSTARTPOSITION - The iterator's start position is invalid. -. - -MessageId=994 -Severity=Success -Facility=System -SymbolicName=ERROR_EA_ACCESS_DENIED -Language=English -ERROR_EA_ACCESS_DENIED - Access to the extended attribute was denied. -. - -MessageId=995 -Severity=Success -Facility=System -SymbolicName=ERROR_OPERATION_ABORTED -Language=English -ERROR_OPERATION_ABORTED - The I/O operation has been aborted because of either a thread exit or an application request. -. - -MessageId=996 -Severity=Success -Facility=System -SymbolicName=ERROR_IO_INCOMPLETE -Language=English -ERROR_IO_INCOMPLETE - Overlapped I/O event is not in a signaled state. -. - -MessageId=997 -Severity=Success -Facility=System -SymbolicName=ERROR_IO_PENDING -Language=English -ERROR_IO_PENDING - Overlapped I/O operation is in progress. -. - -MessageId=998 -Severity=Success -Facility=System -SymbolicName=ERROR_NOACCESS -Language=English -ERROR_NOACCESS - Invalid access to memory location. -. - -MessageId=999 -Severity=Success -Facility=System -SymbolicName=ERROR_SWAPERROR -Language=English -ERROR_SWAPERROR - Error performing inpage operation. -. - -MessageId=1001 -Severity=Success -Facility=System -SymbolicName=ERROR_STACK_OVERFLOW -Language=English -ERROR_STACK_OVERFLOW - Recursion too deep; the stack overflowed. -. - -MessageId=1002 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MESSAGE -Language=English -ERROR_INVALID_MESSAGE - The window cannot act on the sent message. -. - -MessageId=1003 -Severity=Success -Facility=System -SymbolicName=ERROR_CAN_NOT_COMPLETE -Language=English -ERROR_CAN_NOT_COMPLETE - Cannot complete this function. -. - -MessageId=1004 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FLAGS -Language=English -ERROR_INVALID_FLAGS - Invalid flags. -. - -MessageId=1005 -Severity=Success -Facility=System -SymbolicName=ERROR_UNRECOGNIZED_VOLUME -Language=English -ERROR_UNRECOGNIZED_VOLUME - The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted. -. - -MessageId=1006 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_INVALID -Language=English -ERROR_FILE_INVALID - The volume for a file has been externally altered so that the opened file is no longer valid. -. - -MessageId=1007 -Severity=Success -Facility=System -SymbolicName=ERROR_FULLSCREEN_MODE -Language=English -ERROR_FULLSCREEN_MODE - The requested operation cannot be performed in full-screen mode. -. - -MessageId=1008 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_TOKEN -Language=English -ERROR_NO_TOKEN - An attempt was made to reference a token that does not exist. -. - -MessageId=1009 -Severity=Success -Facility=System -SymbolicName=ERROR_BADDB -Language=English -ERROR_BADDB - The configuration registry database is corrupt. -. - -MessageId=1010 -Severity=Success -Facility=System -SymbolicName=ERROR_BADKEY -Language=English -ERROR_BADKEY - The configuration registry key is invalid. -. - -MessageId=1011 -Severity=Success -Facility=System -SymbolicName=ERROR_CANTOPEN -Language=English -ERROR_CANTOPEN - The configuration registry key could not be opened. -. - -MessageId=1012 -Severity=Success -Facility=System -SymbolicName=ERROR_CANTREAD -Language=English -ERROR_CANTREAD - The configuration registry key could not be read. -. - -MessageId=1013 -Severity=Success -Facility=System -SymbolicName=ERROR_CANTWRITE -Language=English -ERROR_CANTWRITE - The configuration registry key could not be written. -. - -MessageId=1014 -Severity=Success -Facility=System -SymbolicName=ERROR_REGISTRY_RECOVERED -Language=English -ERROR_REGISTRY_RECOVERED - One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. -. - -MessageId=1015 -Severity=Success -Facility=System -SymbolicName=ERROR_REGISTRY_CORRUPT -Language=English -ERROR_REGISTRY_CORRUPT - The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted. -. - -MessageId=1016 -Severity=Success -Facility=System -SymbolicName=ERROR_REGISTRY_IO_FAILED -Language=English -ERROR_REGISTRY_IO_FAILED - An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry. -. - -MessageId=1017 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_REGISTRY_FILE -Language=English -ERROR_NOT_REGISTRY_FILE - The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. -. - -MessageId=1018 -Severity=Success -Facility=System -SymbolicName=ERROR_KEY_DELETED -Language=English -ERROR_KEY_DELETED - Illegal operation attempted on a registry key that has been marked for deletion. -. - -MessageId=1019 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_LOG_SPACE -Language=English -ERROR_NO_LOG_SPACE - System could not allocate the required space in a registry log. -. - -MessageId=1020 -Severity=Success -Facility=System -SymbolicName=ERROR_KEY_HAS_CHILDREN -Language=English -ERROR_KEY_HAS_CHILDREN - Cannot create a symbolic link in a registry key that already has subkeys or values. -. - -MessageId=1021 -Severity=Success -Facility=System -SymbolicName=ERROR_CHILD_MUST_BE_VOLATILE -Language=English -ERROR_CHILD_MUST_BE_VOLATILE - Cannot create a stable subkey under a volatile parent key. -. - -MessageId=1022 -Severity=Success -Facility=System -SymbolicName=ERROR_NOTIFY_ENUM_DIR -Language=English -ERROR_NOTIFY_ENUM_DIR - A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes. -. - -MessageId=1051 -Severity=Success -Facility=System -SymbolicName=ERROR_DEPENDENT_SERVICES_RUNNING -Language=English -ERROR_DEPENDENT_SERVICES_RUNNING - A stop control has been sent to a service that other running services are dependent on. -. - -MessageId=1052 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SERVICE_CONTROL -Language=English -ERROR_INVALID_SERVICE_CONTROL - The requested control is not valid for this service. -. - -MessageId=1053 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_REQUEST_TIMEOUT -Language=English -ERROR_SERVICE_REQUEST_TIMEOUT - The service did not respond to the start or control request in a timely fashion. -. - -MessageId=1054 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_NO_THREAD -Language=English -ERROR_SERVICE_NO_THREAD - A thread could not be created for the service. -. - -MessageId=1055 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_DATABASE_LOCKED -Language=English -ERROR_SERVICE_DATABASE_LOCKED - The service database is locked. -. - -MessageId=1056 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_ALREADY_RUNNING -Language=English -ERROR_SERVICE_ALREADY_RUNNING - An instance of the service is already running. -. - -MessageId=1057 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SERVICE_ACCOUNT -Language=English -ERROR_INVALID_SERVICE_ACCOUNT - The account name is invalid or does not exist, or the password is invalid for the account name specified. -. - -MessageId=1058 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_DISABLED -Language=English -ERROR_SERVICE_DISABLED - The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. -. - -MessageId=1059 -Severity=Success -Facility=System -SymbolicName=ERROR_CIRCULAR_DEPENDENCY -Language=English -ERROR_CIRCULAR_DEPENDENCY - Circular service dependency was specified. -. - -MessageId=1060 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_DOES_NOT_EXIST -Language=English -ERROR_SERVICE_DOES_NOT_EXIST - The specified service does not exist as an installed service. -. - -MessageId=1061 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_CANNOT_ACCEPT_CTRL -Language=English -ERROR_SERVICE_CANNOT_ACCEPT_CTRL - The service cannot accept control messages at this time. -. - -MessageId=1062 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_NOT_ACTIVE -Language=English -ERROR_SERVICE_NOT_ACTIVE - The service has not been started. -. - -MessageId=1063 -Severity=Success -Facility=System -SymbolicName=ERROR_FAILED_SERVICE_CONTROLLER_CONNECT -Language=English -ERROR_FAILED_SERVICE_CONTROLLER_CONNECT - The service process could not connect to the service controller. -. - -MessageId=1064 -Severity=Success -Facility=System -SymbolicName=ERROR_EXCEPTION_IN_SERVICE -Language=English -ERROR_EXCEPTION_IN_SERVICE - An exception occurred in the service when handling the control request. -. - -MessageId=1065 -Severity=Success -Facility=System -SymbolicName=ERROR_DATABASE_DOES_NOT_EXIST -Language=English -ERROR_DATABASE_DOES_NOT_EXIST - The database specified does not exist. -. - -MessageId=1066 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_SPECIFIC_ERROR -Language=English -ERROR_SERVICE_SPECIFIC_ERROR - The service has returned a service-specific error code. -. - -MessageId=1067 -Severity=Success -Facility=System -SymbolicName=ERROR_PROCESS_ABORTED -Language=English -ERROR_PROCESS_ABORTED - The process terminated unexpectedly. -. - -MessageId=1068 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_DEPENDENCY_FAIL -Language=English -ERROR_SERVICE_DEPENDENCY_FAIL - The dependency service or group failed to start. -. - -MessageId=1069 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_LOGON_FAILED -Language=English -ERROR_SERVICE_LOGON_FAILED - The service did not start due to a logon failure. -. - -MessageId=1070 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_START_HANG -Language=English -ERROR_SERVICE_START_HANG - After starting, the service hung in a start-pending state. -. - -MessageId=1071 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SERVICE_LOCK -Language=English -ERROR_INVALID_SERVICE_LOCK - The specified service database lock is invalid. -. - -MessageId=1072 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_MARKED_FOR_DELETE -Language=English -ERROR_SERVICE_MARKED_FOR_DELETE - The specified service has been marked for deletion. -. - -MessageId=1073 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_EXISTS -Language=English -ERROR_SERVICE_EXISTS - The specified service already exists. -. - -MessageId=1074 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_RUNNING_LKG -Language=English -ERROR_ALREADY_RUNNING_LKG - The system is currently running with the last-known-good configuration. -. - -MessageId=1075 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_DEPENDENCY_DELETED -Language=English -ERROR_SERVICE_DEPENDENCY_DELETED - The dependency service does not exist or has been marked for deletion. -. - -MessageId=1076 -Severity=Success -Facility=System -SymbolicName=ERROR_BOOT_ALREADY_ACCEPTED -Language=English -ERROR_BOOT_ALREADY_ACCEPTED - The current boot has already been accepted for use as the last-known-good control set. -. - -MessageId=1077 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_NEVER_STARTED -Language=English -ERROR_SERVICE_NEVER_STARTED - No attempts to start the service have been made since the last boot. -. - -MessageId=1078 -Severity=Success -Facility=System -SymbolicName=ERROR_DUPLICATE_SERVICE_NAME -Language=English -ERROR_DUPLICATE_SERVICE_NAME - The name is already in use as either a service name or a service display name. -. - -MessageId=1079 -Severity=Success -Facility=System -SymbolicName=ERROR_DIFFERENT_SERVICE_ACCOUNT -Language=English -ERROR_DIFFERENT_SERVICE_ACCOUNT - The account specified for this service is different from the account specified for other services running in the same process. -. - -MessageId=1080 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_DETECT_DRIVER_FAILURE -Language=English -ERROR_CANNOT_DETECT_DRIVER_FAILURE - Failure actions can only be set for Win32 services, not for drivers. -. - -MessageId=1081 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_DETECT_PROCESS_ABORT -Language=English -ERROR_CANNOT_DETECT_PROCESS_ABORT - This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly. -. - -MessageId=1082 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_RECOVERY_PROGRAM -Language=English -ERROR_NO_RECOVERY_PROGRAM - No recovery program has been configured for this service. -. - -MessageId=1083 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_NOT_IN_EXE -Language=English -ERROR_SERVICE_NOT_IN_EXE - The executable program that this service is configured to run in does not implement the service. -. - -MessageId=1084 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SAFEBOOT_SERVICE -Language=English -ERROR_NOT_SAFEBOOT_SERVICE - This service cannot be started in Safe Mode. -. - -MessageId=1100 -Severity=Success -Facility=System -SymbolicName=ERROR_END_OF_MEDIA -Language=English -ERROR_END_OF_MEDIA - The physical end of the tape has been reached. -. - -MessageId=1101 -Severity=Success -Facility=System -SymbolicName=ERROR_FILEMARK_DETECTED -Language=English -ERROR_FILEMARK_DETECTED - A tape access reached a filemark. -. - -MessageId=1102 -Severity=Success -Facility=System -SymbolicName=ERROR_BEGINNING_OF_MEDIA -Language=English -ERROR_BEGINNING_OF_MEDIA - The beginning of the tape or a partition was encountered. -. - -MessageId=1103 -Severity=Success -Facility=System -SymbolicName=ERROR_SETMARK_DETECTED -Language=English -ERROR_SETMARK_DETECTED - A tape access reached the end of a set of files. -. - -MessageId=1104 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_DATA_DETECTED -Language=English -ERROR_NO_DATA_DETECTED - No more data is on the tape. -. - -MessageId=1105 -Severity=Success -Facility=System -SymbolicName=ERROR_PARTITION_FAILURE -Language=English -ERROR_PARTITION_FAILURE - Tape could not be partitioned. -. - -MessageId=1106 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_BLOCK_LENGTH -Language=English -ERROR_INVALID_BLOCK_LENGTH - When accessing a new tape of a multivolume partition, the current block size is incorrect. -. - -MessageId=1107 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_NOT_PARTITIONED -Language=English -ERROR_DEVICE_NOT_PARTITIONED - Tape partition information could not be found when loading a tape. -. - -MessageId=1108 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_LOCK_MEDIA -Language=English -ERROR_UNABLE_TO_LOCK_MEDIA - Unable to lock the media eject mechanism. -. - -MessageId=1109 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_UNLOAD_MEDIA -Language=English -ERROR_UNABLE_TO_UNLOAD_MEDIA - Unable to unload the media. -. - -MessageId=1110 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIA_CHANGED -Language=English -ERROR_MEDIA_CHANGED - The media in the drive may have changed. -. - -MessageId=1111 -Severity=Success -Facility=System -SymbolicName=ERROR_BUS_RESET -Language=English -ERROR_BUS_RESET - The I/O bus was reset. -. - -MessageId=1112 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MEDIA_IN_DRIVE -Language=English -ERROR_NO_MEDIA_IN_DRIVE - No media in drive. -. - -MessageId=1113 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_UNICODE_TRANSLATION -Language=English -ERROR_NO_UNICODE_TRANSLATION - No mapping for the Unicode character exists in the target multi-byte code page. -. - -MessageId=1114 -Severity=Success -Facility=System -SymbolicName=ERROR_DLL_INIT_FAILED -Language=English -ERROR_DLL_INIT_FAILED - A dynamic link library (DLL) initialization routine failed. -. - -MessageId=1115 -Severity=Success -Facility=System -SymbolicName=ERROR_SHUTDOWN_IN_PROGRESS -Language=English -ERROR_SHUTDOWN_IN_PROGRESS - A system shutdown is in progress. -. - -MessageId=1116 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SHUTDOWN_IN_PROGRESS -Language=English -ERROR_NO_SHUTDOWN_IN_PROGRESS - Unable to abort the system shutdown because no shutdown was in progress. -. - -MessageId=1117 -Severity=Success -Facility=System -SymbolicName=ERROR_IO_DEVICE -Language=English -ERROR_IO_DEVICE - The request could not be performed because of an I/O device error. -. - -MessageId=1118 -Severity=Success -Facility=System -SymbolicName=ERROR_SERIAL_NO_DEVICE -Language=English -ERROR_SERIAL_NO_DEVICE - No serial device was successfully initialized. The serial driver will unload. -. - -MessageId=1119 -Severity=Success -Facility=System -SymbolicName=ERROR_IRQ_BUSY -Language=English -ERROR_IRQ_BUSY - Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened. -. - -MessageId=1120 -Severity=Success -Facility=System -SymbolicName=ERROR_MORE_WRITES -Language=English -ERROR_MORE_WRITES - A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.) -. - -MessageId=1121 -Severity=Success -Facility=System -SymbolicName=ERROR_COUNTER_TIMEOUT -Language=English -ERROR_COUNTER_TIMEOUT - A serial I/O operation completed because the timeout period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) -. - -MessageId=1122 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOPPY_ID_MARK_NOT_FOUND -Language=English -ERROR_FLOPPY_ID_MARK_NOT_FOUND - No ID address mark was found on the floppy disk. -. - -MessageId=1123 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOPPY_WRONG_CYLINDER -Language=English -ERROR_FLOPPY_WRONG_CYLINDER - Mismatch between the floppy disk sector ID field and the floppy disk controller track address. -. - -MessageId=1124 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOPPY_UNKNOWN_ERROR -Language=English -ERROR_FLOPPY_UNKNOWN_ERROR - The floppy disk controller reported an error that is not recognized by the floppy disk driver. -. - -MessageId=1125 -Severity=Success -Facility=System -SymbolicName=ERROR_FLOPPY_BAD_REGISTERS -Language=English -ERROR_FLOPPY_BAD_REGISTERS - The floppy disk controller returned inconsistent results in its registers. -. - -MessageId=1126 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_RECALIBRATE_FAILED -Language=English -ERROR_DISK_RECALIBRATE_FAILED - While accessing the hard disk, a recalibrate operation failed, even after retries. -. - -MessageId=1127 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_OPERATION_FAILED -Language=English -ERROR_DISK_OPERATION_FAILED - While accessing the hard disk, a disk operation failed even after retries. -. - -MessageId=1128 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_RESET_FAILED -Language=English -ERROR_DISK_RESET_FAILED - While accessing the hard disk, a disk controller reset was needed, but even that failed. -. - -MessageId=1129 -Severity=Success -Facility=System -SymbolicName=ERROR_EOM_OVERFLOW -Language=English -ERROR_EOM_OVERFLOW - Physical end of tape encountered. -. - -MessageId=1130 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_ENOUGH_SERVER_MEMORY -Language=English -ERROR_NOT_ENOUGH_SERVER_MEMORY - Not enough server storage is available to process this command. -. - -MessageId=1131 -Severity=Success -Facility=System -SymbolicName=ERROR_POSSIBLE_DEADLOCK -Language=English -ERROR_POSSIBLE_DEADLOCK - A potential deadlock condition has been detected. -. - -MessageId=1132 -Severity=Success -Facility=System -SymbolicName=ERROR_MAPPED_ALIGNMENT -Language=English -ERROR_MAPPED_ALIGNMENT - The base address or the file offset specified does not have the proper alignment. -. - -MessageId=1140 -Severity=Success -Facility=System -SymbolicName=ERROR_SET_POWER_STATE_VETOED -Language=English -ERROR_SET_POWER_STATE_VETOED - An attempt to change the system power state was vetoed by another application or driver. -. - -MessageId=1141 -Severity=Success -Facility=System -SymbolicName=ERROR_SET_POWER_STATE_FAILED -Language=English -ERROR_SET_POWER_STATE_FAILED - The system BIOS failed an attempt to change the system power state. -. - -MessageId=1142 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_LINKS -Language=English -ERROR_TOO_MANY_LINKS - An attempt was made to create more links on a file than the file system supports. -. - -MessageId=1150 -Severity=Success -Facility=System -SymbolicName=ERROR_OLD_WIN_VERSION -Language=English -ERROR_OLD_WIN_VERSION - The specified program requires a newer version of Windows. -. - -MessageId=1151 -Severity=Success -Facility=System -SymbolicName=ERROR_APP_WRONG_OS -Language=English -ERROR_APP_WRONG_OS - The specified program is not a Windows or MS-DOS program. -. - -MessageId=1152 -Severity=Success -Facility=System -SymbolicName=ERROR_SINGLE_INSTANCE_APP -Language=English -ERROR_SINGLE_INSTANCE_APP - Cannot start more than one instance of the specified program. -. - -MessageId=1153 -Severity=Success -Facility=System -SymbolicName=ERROR_RMODE_APP -Language=English -ERROR_RMODE_APP - The specified program was written for an earlier version of Windows. -. - -MessageId=1154 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DLL -Language=English -ERROR_INVALID_DLL - One of the library files needed to run this application is damaged. -. - -MessageId=1155 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_ASSOCIATION -Language=English -ERROR_NO_ASSOCIATION - No application is associated with the specified file for this operation. -. - -MessageId=1156 -Severity=Success -Facility=System -SymbolicName=ERROR_DDE_FAIL -Language=English -ERROR_DDE_FAIL - An error occurred in sending the command to the application. -. -Language=Russian -ERROR_DDE_FAIL - Ошибка при пересылке команды приложению. -. - -MessageId=1157 -Severity=Success -Facility=System -SymbolicName=ERROR_DLL_NOT_FOUND -Language=English -ERROR_DLL_NOT_FOUND - One of the library files needed to run this application cannot be found. -. -Language=Russian -ERROR_DLL_NOT_FOUND - Не найден один из файлов библиотек, необходимых для выполнения данного приложения. -. - -MessageId=1158 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MORE_USER_HANDLES -Language=English -ERROR_NO_MORE_USER_HANDLES - The current process has used all of its system allowance of handles for Window Manager objects. -. -Language=Russian -ERROR_NO_MORE_USER_HANDLES - Текущий процесс использовал все системные разрешения по управлению объектами диспетчера окон. -. - -MessageId=1159 -Severity=Success -Facility=System -SymbolicName=ERROR_MESSAGE_SYNC_ONLY -Language=English -ERROR_MESSAGE_SYNC_ONLY - The message can be used only with synchronous operations. -. -Language=Russian -ERROR_MESSAGE_SYNC_ONLY - Сообщение может быть использовано только с операциями синхронизации. -. - -MessageId=1160 -Severity=Success -Facility=System -SymbolicName=ERROR_SOURCE_ELEMENT_EMPTY -Language=English -ERROR_SOURCE_ELEMENT_EMPTY - The indicated source element has no media. -. -Language=Russian -ERROR_SOURCE_ELEMENT_EMPTY - Указанный исходный элемент не имеет носителя. -. - -MessageId=1161 -Severity=Success -Facility=System -SymbolicName=ERROR_DESTINATION_ELEMENT_FULL -Language=English -ERROR_DESTINATION_ELEMENT_FULL - The indicated destination element already contains media. -. -Language=Russian -ERROR_DESTINATION_ELEMENT_FULL - Указанный конечный элемент уже содержит носитель. -. - -MessageId=1162 -Severity=Success -Facility=System -SymbolicName=ERROR_ILLEGAL_ELEMENT_ADDRESS -Language=English -ERROR_ILLEGAL_ELEMENT_ADDRESS - The indicated element does not exist. -. -Language=Russian -ERROR_ILLEGAL_ELEMENT_ADDRESS - Указанный элемент не существует. -. - -MessageId=1163 -Severity=Success -Facility=System -SymbolicName=ERROR_MAGAZINE_NOT_PRESENT -Language=English -ERROR_MAGAZINE_NOT_PRESENT - The indicated element is part of a magazine that is not present. -. -Language=Russian -ERROR_MAGAZINE_NOT_PRESENT - Указанный элемент является частью отсутствующего журнала. -. - -MessageId=1164 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_REINITIALIZATION_NEEDED -Language=English -ERROR_DEVICE_REINITIALIZATION_NEEDED - The indicated device requires reinitialization due to hardware errors. -. -Language=Russian -ERROR_DEVICE_REINITIALIZATION_NEEDED - Указанный элемент требует повторной инициализации из-за аппаратных ошибок. -. - -MessageId=1165 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_REQUIRES_CLEANING -Language=English -ERROR_DEVICE_REQUIRES_CLEANING - The device has indicated that cleaning is required before further operations are attempted. -. -Language=Russian -ERROR_DEVICE_REQUIRES_CLEANING - Устройство требует проведение чистки перед его дальнейшим использованием. -. - -MessageId=1166 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_DOOR_OPEN -Language=English -ERROR_DEVICE_DOOR_OPEN - The device has indicated that its door is open. -. -Language=Russian -ERROR_DEVICE_DOOR_OPEN - Устройство сообщает, что открыта дверца. -. - -MessageId=1167 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_NOT_CONNECTED -Language=English -ERROR_DEVICE_NOT_CONNECTED - The device is not connected. -. -Language=Russian -ERROR_DEVICE_NOT_CONNECTED - Устройство не подключено. -. - -MessageId=1168 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_FOUND -Language=English -ERROR_NOT_FOUND - Element not found. -. -Language=Russian -ERROR_NOT_FOUND - Элемент не найден. -. - -MessageId=1169 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MATCH -Language=English -ERROR_NO_MATCH - There was no match for the specified key in the index. -. -Language=Russian -ERROR_NO_MATCH - В индексе не найдены соответствия указанному ключу. -. - -MessageId=1170 -Severity=Success -Facility=System -SymbolicName=ERROR_SET_NOT_FOUND -Language=English -ERROR_SET_NOT_FOUND - The property set specified does not exist on the object. -. -Language=Russian -ERROR_SET_NOT_FOUND - Указанный набор свойств не существует для объекта. -. - -MessageId=1171 -Severity=Success -Facility=System -SymbolicName=ERROR_POINT_NOT_FOUND -Language=English -ERROR_POINT_NOT_FOUND - The point passed to GetMouseMovePointsEx is not in the buffer. -. -Language=Russian -ERROR_POINT_NOT_FOUND - Переданная в GetMouseMovePoints точка не находится в буфере. -. - -MessageId=1172 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_TRACKING_SERVICE -Language=English -ERROR_NO_TRACKING_SERVICE - The tracking (workstation) service is not running. -. -Language=Russian -ERROR_NO_TRACKING_SERVICE - Служба слежения (на рабочей станции) не запущена. -. - -MessageId=1173 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_VOLUME_ID -Language=English -ERROR_NO_VOLUME_ID - The Volume ID could not be found. -. -Language=Russian -ERROR_NO_VOLUME_ID - Не удается найти идентификатор тома. -. - -MessageId=1175 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_REMOVE_REPLACED -Language=English -ERROR_UNABLE_TO_REMOVE_REPLACED - Unable to remove the file to be replaced. -. -Language=Russian -ERROR_UNABLE_TO_REMOVE_REPLACED - Не удается удалить заменяемый файл. -. - -MessageId=1176 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_MOVE_REPLACEMENT -Language=English -ERROR_UNABLE_TO_MOVE_REPLACEMENT - Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name. -. -Language=Russian -ERROR_UNABLE_TO_MOVE_REPLACEMENT - Не удается заместить файл. Замещаемый файл сохранил свое первоначальное имя. -. - -MessageId=1177 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 -Language=English -ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 - Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name. -. -Language=Russian -ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 - Не удается заместить файл. Замещаемый файл был переименован с использованием резервного имени. -. - -MessageId=1178 -Severity=Success -Facility=System -SymbolicName=ERROR_JOURNAL_DELETE_IN_PROGRESS -Language=English -ERROR_JOURNAL_DELETE_IN_PROGRESS - The volume change journal is being deleted. -. -Language=Russian -ERROR_JOURNAL_DELETE_IN_PROGRESS - Журнал изменений тома удален. -. - -MessageId=1179 -Severity=Success -Facility=System -SymbolicName=ERROR_JOURNAL_NOT_ACTIVE -Language=English -ERROR_JOURNAL_NOT_ACTIVE - The volume change journal is not active. -. -Language=Russian -ERROR_JOURNAL_NOT_ACTIVE - Журнал изменений тома не активен. -. - -MessageId=1180 -Severity=Success -Facility=System -SymbolicName=ERROR_POTENTIAL_FILE_FOUND -Language=English -ERROR_POTENTIAL_FILE_FOUND - A file was found, but it may not be the correct file. -. -Language=Russian -ERROR_POTENTIAL_FILE_FOUND - Файл найден, но это может быть неверный файл. -. - -MessageId=1181 -Severity=Success -Facility=System -SymbolicName=ERROR_JOURNAL_ENTRY_DELETED -Language=English -ERROR_JOURNAL_ENTRY_DELETED - The journal entry has been deleted from the journal. -. -Language=Russian -ERROR_JOURNAL_ENTRY_DELETED - Из журнала удалена запись. -. - -MessageId=1200 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_DEVICE -Language=English -ERROR_BAD_DEVICE - The specified device name is invalid. -. -Language=Russian -ERROR_BAD_DEVICE - Указано неверное имя устройства. -. - -MessageId=1201 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTION_UNAVAIL -Language=English -ERROR_CONNECTION_UNAVAIL - The device is not currently connected but it is a remembered connection. -. -Language=Russian -ERROR_CONNECTION_UNAVAIL - Устройство сейчас не подключено, но сведения о нем в конфигурации присутствуют. -. - -MessageId=1202 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_ALREADY_REMEMBERED -Language=English -ERROR_DEVICE_ALREADY_REMEMBERED - The local device name has a remembered connection to another network resource. -. -Language=Russian -ERROR_DEVICE_ALREADY_REMEMBERED - Локальное имя устройства уже используется для подключения к другому сетевому ресурсу. -. - -MessageId=1203 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_NET_OR_BAD_PATH -Language=English -ERROR_NO_NET_OR_BAD_PATH - The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator. -. -Language=Russian -ERROR_NO_NET_OR_BAD_PATH - Сетевой путь введен неправильно, не существует, или сеть сейчас недоступна. Попробуйте ввести путь заново или обратитесь к администратору сети. -. - -MessageId=1204 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_PROVIDER -Language=English -ERROR_BAD_PROVIDER - The specified network provider name is invalid. -. -Language=Russian -ERROR_BAD_PROVIDER - Имя службы доступа к сети задано неверно. -. - -MessageId=1205 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_OPEN_PROFILE -Language=English -ERROR_CANNOT_OPEN_PROFILE - Unable to open the network connection profile. -. -Language=Russian -ERROR_CANNOT_OPEN_PROFILE - Не удается открыть конфигурацию подключения к сети. -. - -MessageId=1206 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_PROFILE -Language=English -ERROR_BAD_PROFILE - The network connection profile is corrupted. -. -Language=Russian -ERROR_BAD_PROFILE - Конфигурация подключения к сети повреждена. -. - -MessageId=1207 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_CONTAINER -Language=English -ERROR_NOT_CONTAINER - Cannot enumerate a noncontainer. -. -Language=Russian -ERROR_NOT_CONTAINER - Перечисление объектов, не являющихся контейнерами, невозможно. -. - -MessageId=1208 -Severity=Success -Facility=System -SymbolicName=ERROR_EXTENDED_ERROR -Language=English -ERROR_EXTENDED_ERROR - An extended error has occurred. -. -Language=Russian -ERROR_EXTENDED_ERROR - Ошибка расширенного типа. -. - -MessageId=1209 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_GROUPNAME -Language=English -ERROR_INVALID_GROUPNAME - The format of the specified group name is invalid. -. -Language=Russian -ERROR_INVALID_GROUPNAME - Неверный формат имени группы. -. - -MessageId=1210 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_COMPUTERNAME -Language=English -ERROR_INVALID_COMPUTERNAME - The format of the specified computer name is invalid. -. -Language=Russian -ERROR_INVALID_COMPUTERNAME - Неверный формат имени компьютера. -. - -MessageId=1211 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_EVENTNAME -Language=English -ERROR_INVALID_EVENTNAME - The format of the specified event name is invalid. -. -Language=Russian -ERROR_INVALID_EVENTNAME - Неверный формат имени события. -. - -MessageId=1212 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DOMAINNAME -Language=English -ERROR_INVALID_DOMAINNAME - The format of the specified domain name is invalid. -. -Language=Russian -ERROR_INVALID_DOMAINNAME - Неверный формат имени домена. -. - -MessageId=1213 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SERVICENAME -Language=English -ERROR_INVALID_SERVICENAME - The format of the specified service name is invalid. -. -Language=Russian -ERROR_INVALID_SERVICENAME - Неверный формат имени службы. -. - -MessageId=1214 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_NETNAME -Language=English -ERROR_INVALID_NETNAME - The format of the specified network name is invalid. -. -Language=Russian -ERROR_INVALID_NETNAME - Неверный формат сетевого имени. -. - -MessageId=1215 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SHARENAME -Language=English -ERROR_INVALID_SHARENAME - The format of the specified share name is invalid. -. -Language=Russian -ERROR_INVALID_SHARENAME - Недопустимый формат имени общего ресурса. -. - -MessageId=1216 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PASSWORDNAME -Language=English -ERROR_INVALID_PASSWORDNAME - The format of the specified password is invalid. -. -Language=Russian -ERROR_INVALID_PASSWORDNAME - Неверный формат пароля. -. - -MessageId=1217 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MESSAGENAME -Language=English -ERROR_INVALID_MESSAGENAME - The format of the specified message name is invalid. -. -Language=Russian -ERROR_INVALID_MESSAGENAME - Неверный формат имени сообщения. -. - -MessageId=1218 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MESSAGEDEST -Language=English -ERROR_INVALID_MESSAGEDEST - The format of the specified message destination is invalid. -. -Language=Russian -ERROR_INVALID_MESSAGEDEST - Неверный формат задания адреса, по которому отправляется сообщение. -. - -MessageId=1219 -Severity=Success -Facility=System -SymbolicName=ERROR_SESSION_CREDENTIAL_CONFLICT -Language=English -ERROR_SESSION_CREDENTIAL_CONFLICT - Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again. -. -Language=Russian -ERROR_SESSION_CREDENTIAL_CONFLICT - Множественное подключение к серверу или к общим ресурсам одним пользователем с использованием более одного имени пользователя не разрешено. Отключите все предыдущие подключения к серверу или общим ресурсам и повторите попытку. -. - -MessageId=1220 -Severity=Success -Facility=System -SymbolicName=ERROR_REMOTE_SESSION_LIMIT_EXCEEDED -Language=English -ERROR_REMOTE_SESSION_LIMIT_EXCEEDED - An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. -. -Language=Russian -ERROR_REMOTE_SESSION_LIMIT_EXCEEDED - Попытка установки сеанса связи с сервером сети, для которого достигнут предел по числу таких сеансов. -. - -MessageId=1221 -Severity=Success -Facility=System -SymbolicName=ERROR_DUP_DOMAINNAME -Language=English -ERROR_DUP_DOMAINNAME - The workgroup or domain name is already in use by another computer on the network. -. -Language=Russian -ERROR_DUP_DOMAINNAME - Имя рабочей группы или домена уже используется другим компьютером в сети. -. - -MessageId=1222 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_NETWORK -Language=English -ERROR_NO_NETWORK - The network is not present or not started. -. -Language=Russian -ERROR_NO_NETWORK - Сеть отсутствует или не запущена. -. - -MessageId=1223 -Severity=Success -Facility=System -SymbolicName=ERROR_CANCELLED -Language=English -ERROR_CANCELLED - The operation was canceled by the user. -. -Language=Russian -ERROR_CANCELLED - Операция была отменена пользователем. -. - -MessageId=1224 -Severity=Success -Facility=System -SymbolicName=ERROR_USER_MAPPED_FILE -Language=English -ERROR_USER_MAPPED_FILE - The requested operation cannot be performed on a file with a user-mapped section open. -. -Language=Russian -ERROR_USER_MAPPED_FILE - Запрошенную операцию нельзя выполнить для файла с открытой пользователем сопоставленной секцией. -. - -MessageId=1225 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTION_REFUSED -Language=English -ERROR_CONNECTION_REFUSED - The remote system refused the network connection. -. -Language=Russian -ERROR_CONNECTION_REFUSED - Удаленный компьютер отклонил это сетевое подключение. -. - -MessageId=1226 -Severity=Success -Facility=System -SymbolicName=ERROR_GRACEFUL_DISCONNECT -Language=English -ERROR_GRACEFUL_DISCONNECT - The network connection was gracefully closed. -. -Language=Russian -ERROR_GRACEFUL_DISCONNECT - Сетевое подключение было закрыто. -. - -MessageId=1227 -Severity=Success -Facility=System -SymbolicName=ERROR_ADDRESS_ALREADY_ASSOCIATED -Language=English -ERROR_ADDRESS_ALREADY_ASSOCIATED - The network transport endpoint already has an address associated with it. -. -Language=Russian -ERROR_ADDRESS_ALREADY_ASSOCIATED - Конечной точке сетевого транспорта уже сопоставлен адрес. -. - -MessageId=1228 -Severity=Success -Facility=System -SymbolicName=ERROR_ADDRESS_NOT_ASSOCIATED -Language=English -ERROR_ADDRESS_NOT_ASSOCIATED - An address has not yet been associated with the network endpoint. -. -Language=Russian -ERROR_ADDRESS_NOT_ASSOCIATED - Конечной точке сети еще не сопоставлен адрес. -. - -MessageId=1229 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTION_INVALID -Language=English -ERROR_CONNECTION_INVALID - An operation was attempted on a nonexistent network connection. -. -Language=Russian -ERROR_CONNECTION_INVALID - Попытка выполнить операцию для несуществующего сетевого подключения. -. - -MessageId=1230 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTION_ACTIVE -Language=English -ERROR_CONNECTION_ACTIVE - An invalid operation was attempted on an active network connection. -. -Language=Russian -ERROR_CONNECTION_ACTIVE - Попытка выполнить недопустимую операцию для активного сетевого подключения. -. - -MessageId=1231 -Severity=Success -Facility=System -SymbolicName=ERROR_NETWORK_UNREACHABLE -Language=English -ERROR_NETWORK_UNREACHABLE - The network location cannot be reached. For information about network troubleshooting, see Windows Help. -. -Language=Russian -ERROR_NETWORK_UNREACHABLE - Сетевая папка недоступна. За информацией о разрешении проблем в сети обратитесь к справочной системе Windows. -. - -MessageId=1232 -Severity=Success -Facility=System -SymbolicName=ERROR_HOST_UNREACHABLE -Language=English -ERROR_HOST_UNREACHABLE - The network location cannot be reached. For information about network troubleshooting, see Windows Help. -. -Language=Russian -ERROR_HOST_UNREACHABLE - Сетевая папка недоступна. За информацией о разрешении проблем в сети обратитесь к справочной системе Windows. -. - -MessageId=1233 -Severity=Success -Facility=System -SymbolicName=ERROR_PROTOCOL_UNREACHABLE -Language=English -ERROR_PROTOCOL_UNREACHABLE - The network location cannot be reached. For information about network troubleshooting, see Windows Help. -. -Language=Russian -ERROR_PROTOCOL_UNREACHABLE - Сетевая папка недоступна. За информацией о разрешении проблем в сети обратитесь к справочной системе Windows. -. - -MessageId=1234 -Severity=Success -Facility=System -SymbolicName=ERROR_PORT_UNREACHABLE -Language=English -ERROR_PORT_UNREACHABLE - No service is operating at the destination network endpoint on the remote system. -. -Language=Russian -ERROR_PORT_UNREACHABLE - На конечном звене нужной сети удаленной системы не запущена ни одна служба. -. - -MessageId=1235 -Severity=Success -Facility=System -SymbolicName=ERROR_REQUEST_ABORTED -Language=English -ERROR_REQUEST_ABORTED - The request was aborted. -. -Language=Russian -ERROR_REQUEST_ABORTED - Запрос был прерван. -. - -MessageId=1236 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTION_ABORTED -Language=English -ERROR_CONNECTION_ABORTED - The network connection was aborted by the local system. -. -Language=Russian -ERROR_CONNECTION_ABORTED - Подключение к сети было разорвано локальной системой. -. - -MessageId=1237 -Severity=Success -Facility=System -SymbolicName=ERROR_RETRY -Language=English -ERROR_RETRY - The operation could not be completed. A retry should be performed. -. -Language=Russian -ERROR_RETRY - Не удалось завершить операцию. Следует повторить ее. -. - -MessageId=1238 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTION_COUNT_LIMIT -Language=English -ERROR_CONNECTION_COUNT_LIMIT - A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. -. -Language=Russian -ERROR_CONNECTION_COUNT_LIMIT - Подключение к серверу невозможно, так как для данной учетной записи уже достигнут предел по числу одновременных подключений. -. - -MessageId=1239 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGIN_TIME_RESTRICTION -Language=English -ERROR_LOGIN_TIME_RESTRICTION - Attempting to log in during an unauthorized time of day for this account. -. -Language=Russian -ERROR_LOGIN_TIME_RESTRICTION - Попытка входа в сеть в непредусмотренное для этой учетной записи время дня. -. - -MessageId=1240 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGIN_WKSTA_RESTRICTION -Language=English -ERROR_LOGIN_WKSTA_RESTRICTION - The account is not authorized to log in from this station. -. -Language=Russian -ERROR_LOGIN_WKSTA_RESTRICTION - Данная учетная запись не может быть использована для входа в сеть с этой станции. -. - -MessageId=1241 -Severity=Success -Facility=System -SymbolicName=ERROR_INCORRECT_ADDRESS -Language=English -ERROR_INCORRECT_ADDRESS - The network address could not be used for the operation requested. -. -Language=Russian -ERROR_INCORRECT_ADDRESS - Не удалось использовать сетевой адрес для запрошенной операции. -. - -MessageId=1242 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_REGISTERED -Language=English -ERROR_ALREADY_REGISTERED - The service is already registered. -. -Language=Russian -ERROR_ALREADY_REGISTERED - Служба уже зарегистрирована. -. - -MessageId=1243 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVICE_NOT_FOUND -Language=English -ERROR_SERVICE_NOT_FOUND - The specified service does not exist. -. -Language=Russian -ERROR_SERVICE_NOT_FOUND - Указанная служба не существует. -. - -MessageId=1244 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_AUTHENTICATED -Language=English -ERROR_NOT_AUTHENTICATED - The operation being requested was not performed because the user has not been authenticated. -. -Language=Russian -ERROR_NOT_AUTHENTICATED - Запрошенная операция не была выполнена, так как пользователь не зарегистрирован. -. - -MessageId=1245 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_LOGGED_ON -Language=English -ERROR_NOT_LOGGED_ON - The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist. -. -Language=Russian -ERROR_NOT_LOGGED_ON - Запрошенная операция не была выполнена, так как пользователь не выполнил вход в сеть. Указанная служба не существует. -. - -MessageId=1246 -Severity=Success -Facility=System -SymbolicName=ERROR_CONTINUE -Language=English -ERROR_CONTINUE - Continue with work in progress. -. -Language=Russian -ERROR_CONTINUE - Требуется продолжить выполняющуюся операцию. -. - -MessageId=1247 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_INITIALIZED -Language=English -ERROR_ALREADY_INITIALIZED - An attempt was made to perform an initialization operation when initialization has already been completed. -. -Language=Russian -ERROR_ALREADY_INITIALIZED - Попытка выполнить операцию инициализации, которая уже проведена. -. - -MessageId=1248 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_MORE_DEVICES -Language=English -ERROR_NO_MORE_DEVICES - No more local devices. -. -Language=Russian -ERROR_NO_MORE_DEVICES - Больше локальных устройств не найдено. -. - -MessageId=1249 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_SITE -Language=English -ERROR_NO_SUCH_SITE - The specified site does not exist. -. -Language=Russian -ERROR_NO_SUCH_SITE - Указанный сайт не существует. -. - -MessageId=1250 -Severity=Success -Facility=System -SymbolicName=ERROR_DOMAIN_CONTROLLER_EXISTS -Language=English -ERROR_DOMAIN_CONTROLLER_EXISTS - A domain controller with the specified name already exists. -. -Language=Russian -ERROR_DOMAIN_CONTROLLER_EXISTS - Контроллер домена с указанным именем уже существует. -. - -MessageId=1251 -Severity=Success -Facility=System -SymbolicName=ERROR_ONLY_IF_CONNECTED -Language=English -ERROR_ONLY_IF_CONNECTED - This operation is supported only when you are connected to the server. -. -Language=Russian -ERROR_ONLY_IF_CONNECTED - Эта операция поддерживается только при наличии подключения к серверу. -. - -MessageId=1252 -Severity=Success -Facility=System -SymbolicName=ERROR_OVERRIDE_NOCHANGES -Language=English -ERROR_OVERRIDE_NOCHANGES - The group policy framework should call the extension even if there are no changes. -. -Language=Russian -ERROR_OVERRIDE_NOCHANGES - Основной модуль групповой политики должен вызвать расширение даже в случае отсутствия изменений. -. - -MessageId=1253 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_USER_PROFILE -Language=English -ERROR_BAD_USER_PROFILE - The specified user does not have a valid profile. -. -Language=Russian -ERROR_BAD_USER_PROFILE - Выбранный пользователь не имеет допустимого профиля. -. - -MessageId=1254 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SUPPORTED_ON_SBS -Language=English -ERROR_NOT_SUPPORTED_ON_SBS - This operation is not supported on a computer running Windows Server 2003 for Small Business Server. -. -Language=Russian -ERROR_NOT_SUPPORTED_ON_SBS - Эта операция не поддерживается на Windows Server 2003 for Small Business Server. -. - -MessageId=1255 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVER_SHUTDOWN_IN_PROGRESS -Language=English -ERROR_SERVER_SHUTDOWN_IN_PROGRESS - The server machine is shutting down. -. -Language=Russian -ERROR_SERVER_SHUTDOWN_IN_PROGRESS - Идет завершение работы компьютера-сервера. -. - -MessageId=1256 -Severity=Success -Facility=System -SymbolicName=ERROR_HOST_DOWN -Language=English -ERROR_HOST_DOWN - The remote system is not available. For information about network troubleshooting, see Windows Help. -. -Language=Russian -ERROR_HOST_DOWN - Удаленная система недоступна. За информацией о разрешении проблем в сети, обратитесь к справочной системе Windows. -. - -MessageId=1257 -Severity=Success -Facility=System -SymbolicName=ERROR_NON_ACCOUNT_SID -Language=English -ERROR_NON_ACCOUNT_SID - The security identifier provided is not from an account domain. -. -Language=Russian -ERROR_NON_ACCOUNT_SID - Был указан идентификатор безопасности не из того домена. -. - -MessageId=1258 -Severity=Success -Facility=System -SymbolicName=ERROR_NON_DOMAIN_SID -Language=English -ERROR_NON_DOMAIN_SID - The security identifier provided does not have a domain component. -. -Language=Russian -ERROR_NON_DOMAIN_SID - В указанном идентификаторе безопасности отсутствует компонент для домена. -. - -MessageId=1259 -Severity=Success -Facility=System -SymbolicName=ERROR_APPHELP_BLOCK -Language=English -ERROR_APPHELP_BLOCK - AppHelp dialog canceled thus preventing the application from starting. -. -Language=Russian -ERROR_APPHELP_BLOCK - Окно AppHelp закрыто, из-за чего приложение не было запущено. -. - -MessageId=1260 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCESS_DISABLED_BY_POLICY -Language=English -ERROR_ACCESS_DISABLED_BY_POLICY - Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator. -. -Language=Russian -ERROR_ACCESS_DISABLED_BY_POLICY - Эта программа заблокирована групповой политикой. За дополнительными сведениями обращайтесь к системному администратору. -. - -MessageId=1261 -Severity=Success -Facility=System -SymbolicName=ERROR_REG_NAT_CONSUMPTION -Language=English -ERROR_REG_NAT_CONSUMPTION - A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific. -. -Language=Russian -ERROR_REG_NAT_CONSUMPTION - Попытка программы использовать неправильное значение регистра. Обычно это вызвано неинициализированным регистром. -. - -MessageId=1262 -Severity=Success -Facility=System -SymbolicName=ERROR_CSCSHARE_OFFLINE -Language=English -ERROR_CSCSHARE_OFFLINE - The share is currently offline or does not exist. -. -Language=Russian -ERROR_CSCSHARE_OFFLINE - Общий ресурс недоступен или не существует. -. - -MessageId=1263 -Severity=Success -Facility=System -SymbolicName=ERROR_PKINIT_FAILURE -Language=English -ERROR_PKINIT_FAILURE - The kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. -. -Language=Russian -ERROR_PKINIT_FAILURE - Ошибка протокола Kerberos при проверке сертификата KDC во время входа в систему со смарт-картой. Дополнительные сведения см. в журнале системных событий. -. - -MessageId=1264 -Severity=Success -Facility=System -SymbolicName=ERROR_SMARTCARD_SUBSYSTEM_FAILURE -Language=English -ERROR_SMARTCARD_SUBSYSTEM_FAILURE - The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. -. -Language=Russian -ERROR_SMARTCARD_SUBSYSTEM_FAILURE - Ошибка протокола Kerberos при попытке использовать подсистему для смарт-карт. -. - -MessageId=1265 -Severity=Success -Facility=System -SymbolicName=ERROR_DOWNGRADE_DETECTED -Language=English -ERROR_DOWNGRADE_DETECTED - The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you. -. -Language=Russian -ERROR_DOWNGRADE_DETECTED - Системе не удается установить связь с контроллером домена, чтобы обработать запрос на проверку подлинности. Попробуйте еще раз позже. -. - -MessageId=1266 -Severity=Success -Facility=System -SymbolicName=SEC_E_SMARTCARD_CERT_REVOKED -Language=English -SEC_E_SMARTCARD_CERT_REVOKED - The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log. -. - -MessageId=1267 -Severity=Success -Facility=System -SymbolicName=SEC_E_ISSUING_CA_UNTRUSTED -Language=English -SEC_E_ISSUING_CA_UNTRUSTED - An untrusted certificate authority was detected while processing the smartcard certificate used for authentication. Please contact your system administrator. -. - -MessageId=1268 -Severity=Success -Facility=System -SymbolicName=SEC_E_REVOCATION_OFFLINE_C -Language=English -SEC_E_REVOCATION_OFFLINE_C - The revocation status of the smartcard certificate used for authentication could not be determined. Please contact your system administrator. -. - -MessageId=1269 -Severity=Success -Facility=System -SymbolicName=SEC_E_PKINIT_CLIENT_FAILUR -Language=English -SEC_E_PKINIT_CLIENT_FAILUR - The smartcard certificate used for authentication was not trusted. Please contact your system administrator. -. - -MessageId=1270 -Severity=Success -Facility=System -SymbolicName=SEC_E_SMARTCARD_CERT_EXPIRED -Language=English -SEC_E_SMARTCARD_CERT_EXPIRED - The smartcard certificate used for authentication has expired. Please contact your system administrator. -. - -MessageId=1271 -Severity=Success -Facility=System -SymbolicName=ERROR_MACHINE_LOCKED -Language=English -ERROR_MACHINE_LOCKED - The machine is locked and cannot be shut down without the force option. -. -Language=Russian -ERROR_MACHINE_LOCKED - Компьютер заблокирован и не может завершить работу без режима принудительного завершения. -. - -MessageId=1273 -Severity=Success -Facility=System -SymbolicName=ERROR_CALLBACK_SUPPLIED_INVALID_DATA -Language=English -ERROR_CALLBACK_SUPPLIED_INVALID_DATA - An application-defined callback gave invalid data when called. -. -Language=Russian -ERROR_CALLBACK_SUPPLIED_INVALID_DATA - Определенный в приложении ответный вызов вернул неверные данные. -. - -MessageId=1274 -Severity=Success -Facility=System -SymbolicName=ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED -Language=English -ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED - The group policy framework should call the extension in the synchronous foreground policy refresh. -. -Language=Russian -ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED - Система групповой политики должна вызывать расширения в синхронном, не фоновом режиме обновления. -. - -MessageId=1275 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVER_BLOCKED -Language=English -ERROR_DRIVER_BLOCKED - This driver has been blocked from loading. -. -Language=Russian -ERROR_DRIVER_BLOCKED - Загрузка драйвера была заблокирована. -. - -MessageId=1276 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_IMPORT_OF_NON_DLL -Language=English -ERROR_INVALID_IMPORT_OF_NON_DLL - A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image. -. -Language=Russian -ERROR_INVALID_IMPORT_OF_NON_DLL - Библиотека, на которую ссылается модуль, не является библиотекой динамической компоновки (DLL) или исполняемым модулем. -. - -MessageId=1277 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCESS_DISABLED_WEBBLADE -Language=English -ERROR_ACCESS_DISABLED_WEBBLADE - Windows cannot open this program since it has been disabled. -. -Language=Russian -ERROR_ACCESS_DISABLED_WEBBLADE - Windows не удается запустить эту программу, так как она отключена. -. - -MessageId=1278 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER -Language=English -ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER - Windows cannot open this program because the license enforcement system has been tampered with or become corrupted. -. -Language=Russian -ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER - Windows не удается открыть эту программу, так как система учета лицензий изменена или повреждена. -. - -MessageId=1279 -Severity=Success -Facility=System -SymbolicName=ERROR_RECOVERY_FAILURE -Language=English -ERROR_RECOVERY_FAILURE - A transaction recovery failed. -. -Language=Russian -ERROR_RECOVERY_FAILURE - Неудача при восстановлении транзакции. -. - -MessageId=1280 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_FIBER -Language=English -ERROR_ALREADY_FIBER - The current thread has already been converted to a fiber. -. -Language=Russian -ERROR_ALREADY_FIBER - Текущий поток уже преобразован в нить. -. - -MessageId=1281 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_THREAD -Language=English -ERROR_ALREADY_THREAD - The current thread has already been converted from a fiber. -. -Language=Russian -ERROR_ALREADY_THREAD - Текущий поток уже преобразован из нити. -. - -MessageId=1282 -Severity=Success -Facility=System -SymbolicName=ERROR_STACK_BUFFER_OVERRUN -Language=English -ERROR_STACK_BUFFER_OVERRUN - The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application. -. -Language=Russian -ERROR_STACK_BUFFER_OVERRUN - Обнаружено переполнение стекового буфера в данном приложении. Это переполнение может позволить злоумышленнику получить управление над данным приложением. -. - -MessageId=1283 -Severity=Success -Facility=System -SymbolicName=ERROR_PARAMETER_QUOTA_EXCEEDED -Language=English -ERROR_PARAMETER_QUOTA_EXCEEDED - Data present in one of the parameters is more than the function can operate on. -. -Language=Russian -ERROR_PARAMETER_QUOTA_EXCEEDED - В одном из параметров задано больше данных, чем эта функция может обработать. -. - -MessageId=1284 -Severity=Success -Facility=System -SymbolicName=ERROR_DEBUGGER_INACTIVE -Language=English -ERROR_DEBUGGER_INACTIVE - An attempt to do an operation on a debug object failed because the object is in the process of being deleted. -. -Language=Russian -ERROR_DEBUGGER_INACTIVE - Не удалось выполнить операцию над объектом отладки, так как он удаляется. -. - -MessageId=1285 -Severity=Success -Facility=System -SymbolicName=ERROR_DELAY_LOAD_FAILED -Language=English -ERROR_DELAY_LOAD_FAILED - An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed. -. -Language=Russian -ERROR_DELAY_LOAD_FAILED - Не удалось загрузить с задержкой библиотеку DLL или получить из нее адрес функции. -. - -MessageId=1286 -Severity=Success -Facility=System -SymbolicName=ERROR_VDM_DISALLOWED -Language=English -ERROR_VDM_DISALLOWED - %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator. -. -Language=Russian -ERROR_VDM_DISALLOWED - "%1" является 16-битным приложением. Вы не имеете прав доступа для выполнения 16-битных приложений. Проверьте ваши права доступа с вашим системным администратором. -. - -MessageId=1287 -Severity=Success -Facility=System -SymbolicName=ERROR_UNIDENTIFIED_ERROR -Language=English -ERROR_UNIDENTIFIED_ERROR - Insufficient information exists to identify the cause of failure. -. -Language=Russian -ERROR_UNIDENTIFIED_ERROR - Недостаточно сведений для установки причины сбоя. -. - -MessageId=1288 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_BANDWIDTH_PARAMETERS -Language=English -ERROR_INVALID_BANDWIDTH_PARAMETERS - An invalid budget or period parameter was specified. -. -Language=Russian -ERROR_INVALID_BANDWIDTH_PARAMETERS - В динамическую функцию C передан неверный параметр. -. - -MessageId=1289 -Severity=Success -Facility=System -SymbolicName=ERROR_AFFINITY_NOT_COMPATIBLE -Language=English -ERROR_AFFINITY_NOT_COMPATIBLE - An attempt was made to join a thread to a reserve whose affinity did not intersect the reserve affinity or an attempt was made to associate a process with a reserve whose affinity did not intersect the reserve affinity. -. -Language=Russian -ERROR_AFFINITY_NOT_COMPATIBLE - Операция выполнена за пределами допустимой длины данных файла. -. - -MessageId=1290 -Severity=Success -Facility=System -SymbolicName=ERROR_THREAD_ALREADY_IN_RESERVE -Language=English -ERROR_THREAD_ALREADY_IN_RESERVE - An attempt was made to join a thread to a reserve which was already joined to another reserve. -. -Language=Russian -ERROR_THREAD_ALREADY_IN_RESERVE - Не удалось запустить эту службу, так как одна или несколько служб одного процесса имеют несовместимый параметр типа SID службы. Служба с ограниченным типом SID может сосуществовать в одном и том же процессе только с другими службами с ограниченным типом SID. Если тип SID для этой службы только что настроен, необходимо перезапустить хост-процесс, чтобы запустить эту службу. -. - -MessageId=1291 -Severity=Success -Facility=System -SymbolicName=ERROR_THREAD_NOT_IN_RESERVE -Language=English -ERROR_THREAD_NOT_IN_RESERVE - An attempt was made to disjoin a thread from a reserve, but the thread was not joined to the reserve. -. -Language=Russian -ERROR_THREAD_NOT_IN_RESERVE - Процесс, использующий драйвер для этого устройства, прерван. -. - -MessageId=1292 -Severity=Success -Facility=System -SymbolicName=ERROR_THREAD_PROCESS_IN_RESERVE -Language=English -ERROR_THREAD_PROCESS_IN_RESERVE - An attempt was made to disjoin a thread from a reserve whose process is associated with a reserve. -. -Language=Russian -ERROR_THREAD_PROCESS_IN_RESERVE - Операция попыталась превысить установленный предел. -. - -MessageId=1293 -Severity=Success -Facility=System -SymbolicName=ERROR_PROCESS_ALREADY_IN_RESERVE -Language=English -ERROR_PROCESS_ALREADY_IN_RESERVE - An attempt was made to associate a process with a reserve that was already associated with a reserve. -. -Language=Russian -ERROR_PROCESS_ALREADY_IN_RESERVE - Целевой процесс или процесс целевого потока является защищенным. -. - -MessageId=1294 -Severity=Success -Facility=System -SymbolicName=ERROR_PROCESS_NOT_IN_RESERVE -Language=English -ERROR_PROCESS_NOT_IN_RESERVE - An attempt was made to disassociate a process from a reserve, but the process did not have an associated reserve. -. -Language=Russian -ERROR_PROCESS_NOT_IN_RESERVE - Клиент уведомлений службы значительно отстает от текущего состояния служб в системе. -. - -MessageId=1295 -Severity=Success -Facility=System -SymbolicName=ERROR_PROCESS_THREADS_IN_RESERVE -Language=English -ERROR_PROCESS_THREADS_IN_RESERVE - An attempt was made to associate a process with a reserve, but the process contained thread joined to a reserve. -. -Language=Russian -ERROR_PROCESS_THREADS_IN_RESERVE - Требуемая операция с файлами завершилась сбоем из-за превышения квоты на использование места на диске. Чтобы освободить место на диске, переместите файлы в другое место или удалите ненужные файлы. За дополнительными сведениями обратитесь к системному администратору. -. - -MessageId=1296 -Severity=Success -Facility=System -SymbolicName=ERROR_AFFINITY_NOT_SET_IN_RESERVE -Language=English -ERROR_AFFINITY_NOT_SET_IN_RESERVE - An attempt was made to set the affinity of a thread or a process, but the thread or process was joined or associated with a reserve. -. -Language=Russian -ERROR_AFFINITY_NOT_SET_IN_RESERVE - Требуемая операция с файлами завершилась сбоем, так как политика хранилища блокирует этот тип файлов. За дополнительными сведениями обратитесь к системному администратору. -. - -MessageId=1297 -Severity=Success -Facility=System -SymbolicName=ERROR_IMPLEMENTATION_LIMIT -Language=English -ERROR_IMPLEMENTATION_LIMIT - An operation attempted to exceed an implementation-defined limit. -. -Language=Russian -ERROR_IMPLEMENTATION_LIMIT - Права, необходимые службе для правильной работы, не существуют в конфигурации учетной записи службы. -. - -MessageId=1298 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CACHE_ONLY -Language=English -ERROR_DS_CACHE_ONLY - The requested object is for internal DS operations only. -. -Language=Russian -ERROR_DS_CACHE_ONLY - Поток, задействованный в данной операции, не отвечает. -. - -MessageId=1300 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_ALL_ASSIGNED -Language=English -ERROR_NOT_ALL_ASSIGNED - Not all privileges referenced are assigned to the caller. -. -Language=Russian -ERROR_NOT_ALL_ASSIGNED - Вызывающая сторона не обладает всеми необходимыми правами доступа. -. - -MessageId=1301 -Severity=Success -Facility=System -SymbolicName=ERROR_SOME_NOT_MAPPED -Language=English -ERROR_SOME_NOT_MAPPED - Some mapping between account names and security IDs was not done. -. -Language=Russian -ERROR_SOME_NOT_MAPPED - Некоторые соответствия между именами пользователей и идентификаторами безопасности не были установлены. -. - -MessageId=1302 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_QUOTAS_FOR_ACCOUNT -Language=English -ERROR_NO_QUOTAS_FOR_ACCOUNT - No system quota limits are specifically set for this account. -. -Language=Russian -ERROR_NO_QUOTAS_FOR_ACCOUNT - Системные квоты для данной учетной записи не установлены. -. - -MessageId=1303 -Severity=Success -Facility=System -SymbolicName=ERROR_LOCAL_USER_SESSION_KEY -Language=English -ERROR_LOCAL_USER_SESSION_KEY - No encryption key is available. A well-known encryption key was returned. -. -Language=Russian -ERROR_LOCAL_USER_SESSION_KEY - Ключ шифрования недоступен. Возвращен общедоступный ключ. -. - -MessageId=1304 -Severity=Success -Facility=System -SymbolicName=ERROR_NULL_LM_PASSWORD -Language=English -ERROR_NULL_LM_PASSWORD - The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string. -. -Language=Russian -ERROR_NULL_LM_PASSWORD - Пароль слишком сложен и не может быть преобразован в пароль LAN Manager. Вместо пароля LAN Manager была возвращена пустая строка. -. - -MessageId=1305 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_REVISION -Language=English -ERROR_UNKNOWN_REVISION - The revision level is unknown. -. -Language=Russian -ERROR_UNKNOWN_REVISION - Уровень редакции неизвестен. -. - -MessageId=1306 -Severity=Success -Facility=System -SymbolicName=ERROR_REVISION_MISMATCH -Language=English -ERROR_REVISION_MISMATCH - Indicates two revision levels are incompatible. -. -Language=Russian -ERROR_REVISION_MISMATCH - Два уровня редакции являются несовместимыми. -. - -MessageId=1307 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_OWNER -Language=English -ERROR_INVALID_OWNER - This security ID may not be assigned as the owner of this object. -. -Language=Russian -ERROR_INVALID_OWNER - Этот идентификатор безопасности не может быть назначен владельцем этого объекта. -. - -MessageId=1308 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PRIMARY_GROUP -Language=English -ERROR_INVALID_PRIMARY_GROUP - This security ID may not be assigned as the primary group of an object. -. -Language=Russian -ERROR_INVALID_PRIMARY_GROUP - Этот идентификатор безопасности не может быть назначен основной группой объекта. -. - -MessageId=1309 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_IMPERSONATION_TOKEN -Language=English -ERROR_NO_IMPERSONATION_TOKEN - An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. -. -Language=Russian -ERROR_NO_IMPERSONATION_TOKEN - Предпринята попытка использования элемента олицетворения потоком команд, который в данное время не олицетворяет клиента. -. - -MessageId=1310 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_DISABLE_MANDATORY -Language=English -ERROR_CANT_DISABLE_MANDATORY - The group may not be disabled. -. -Language=Russian -ERROR_CANT_DISABLE_MANDATORY - Эту группу невозможно отключить. -. - -MessageId=1311 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_LOGON_SERVERS -Language=English -ERROR_NO_LOGON_SERVERS - There are currently no logon servers available to service the logon request. -. -Language=Russian -ERROR_NO_LOGON_SERVERS - Отсутствуют серверы, которые могли бы обработать запрос на вход в сеть. -. - -MessageId=1312 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_LOGON_SESSION -Language=English -ERROR_NO_SUCH_LOGON_SESSION - A specified logon session does not exist. It may already have been terminated. -. -Language=Russian -ERROR_NO_SUCH_LOGON_SESSION - Указанный сеанс работы не существует. Возможно, он уже завершен. -. - -MessageId=1313 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_PRIVILEGE -Language=English -ERROR_NO_SUCH_PRIVILEGE - A specified privilege does not exist. -. -Language=Russian -ERROR_NO_SUCH_PRIVILEGE - Указанная привилегия не существует. -. - -MessageId=1314 -Severity=Success -Facility=System -SymbolicName=ERROR_PRIVILEGE_NOT_HELD -Language=English -ERROR_PRIVILEGE_NOT_HELD - A required privilege is not held by the client. -. -Language=Russian -ERROR_PRIVILEGE_NOT_HELD - Клиент не обладает требуемыми правами. -. - -MessageId=1315 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ACCOUNT_NAME -Language=English -ERROR_INVALID_ACCOUNT_NAME - The name provided is not a properly formed account name. -. -Language=Russian -ERROR_INVALID_ACCOUNT_NAME - Указанное имя не является корректным именем пользователя. -. - -MessageId=1316 -Severity=Success -Facility=System -SymbolicName=ERROR_USER_EXISTS -Language=English -ERROR_USER_EXISTS - The specified user already exists. -. -Language=Russian -ERROR_USER_EXISTS - Указанная учетная запись уже существует. -. - -MessageId=1317 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_USER -Language=English -ERROR_NO_SUCH_USER - The specified user does not exist. -. -Language=Russian -ERROR_NO_SUCH_USER - Указанная учетная запись не существует. -. - -MessageId=1318 -Severity=Success -Facility=System -SymbolicName=ERROR_GROUP_EXISTS -Language=English -ERROR_GROUP_EXISTS - The specified group already exists. -. -Language=Russian -ERROR_GROUP_EXISTS - Указанная группа уже существует. -. - -MessageId=1319 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_GROUP -Language=English -ERROR_NO_SUCH_GROUP - The specified group does not exist. -. -Language=Russian -ERROR_NO_SUCH_GROUP - Указанная группа не существует. -. - -MessageId=1320 -Severity=Success -Facility=System -SymbolicName=ERROR_MEMBER_IN_GROUP -Language=English -ERROR_MEMBER_IN_GROUP - Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member. -. -Language=Russian -ERROR_MEMBER_IN_GROUP - Указанный пользователь уже является членом заданной группы, либо группа не может быть удалена, так как содержит как минимум одного пользователя. -. - -MessageId=1321 -Severity=Success -Facility=System -SymbolicName=ERROR_MEMBER_NOT_IN_GROUP -Language=English -ERROR_MEMBER_NOT_IN_GROUP - The specified user account is not a member of the specified group account. -. -Language=Russian -ERROR_MEMBER_NOT_IN_GROUP - Указанный пользователь не является членом заданной группы. -. - -MessageId=1322 -Severity=Success -Facility=System -SymbolicName=ERROR_LAST_ADMIN -Language=English -ERROR_LAST_ADMIN - The last remaining administration account cannot be disabled or deleted. -. -Language=Russian -ERROR_LAST_ADMIN - Эта операция запрещена, так как может привести к отключению, удалению или невозможности входа учетной записи администратора. -. - -MessageId=1323 -Severity=Success -Facility=System -SymbolicName=ERROR_WRONG_PASSWORD -Language=English -ERROR_WRONG_PASSWORD - Unable to update the password. The value provided as the current password is incorrect. -. -Language=Russian -ERROR_WRONG_PASSWORD - Не удается обновить пароль. Текущий пароль был задан неверно. -. - -MessageId=1324 -Severity=Success -Facility=System -SymbolicName=ERROR_ILL_FORMED_PASSWORD -Language=English -ERROR_ILL_FORMED_PASSWORD - Unable to update the password. The value provided for the new password contains values that are not allowed in passwords. -. -Language=Russian -ERROR_ILL_FORMED_PASSWORD - Не удается обновить пароль. Новый пароль содержит недопустимые символы. -. - -MessageId=1325 -Severity=Success -Facility=System -SymbolicName=ERROR_PASSWORD_RESTRICTION -Language=English -ERROR_PASSWORD_RESTRICTION - Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain. -. -Language=Russian -ERROR_PASSWORD_RESTRICTION - Не удается обновить пароль. Введенный пароль не обеспечивает требований домена к длине пароля, его сложности или истории обновления. -. - -MessageId=1326 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGON_FAILURE -Language=English -ERROR_LOGON_FAILURE - Logon failure: unknown user name or bad password. -. -Language=Russian -ERROR_LOGON_FAILURE - Неверное имя пользователя или пароль. -. - -MessageId=1327 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCOUNT_RESTRICTION -Language=English -ERROR_ACCOUNT_RESTRICTION - Logon failure: user account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced. -. -Language=Russian -ERROR_ACCOUNT_RESTRICTION - Вход этого пользователя в систему не выполнен из-за ограничений учетной записи. Например: пустые пароли не разрешены, ограничено число входов или включено ограничение политики. -. - -MessageId=1328 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LOGON_HOURS -Language=English -ERROR_INVALID_LOGON_HOURS - Logon failure: account logon time restriction violation. -. -Language=Russian -ERROR_INVALID_LOGON_HOURS - Вы не можете войти в систему сейчас из-за ограничений вашей учетной записи. -. - -MessageId=1329 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_WORKSTATION -Language=English -ERROR_INVALID_WORKSTATION - Logon failure: user not allowed to log on to this computer. -. -Language=Russian -ERROR_INVALID_WORKSTATION - Этому пользователю не разрешен вход в систему на этом компьютере. -. - -MessageId=1330 -Severity=Success -Facility=System -SymbolicName=ERROR_PASSWORD_EXPIRED -Language=English -ERROR_PASSWORD_EXPIRED - Logon failure: the specified account password has expired. -. -Language=Russian -ERROR_PASSWORD_EXPIRED - Срок действия пароля для этой учетной записи истек. -. - -MessageId=1331 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCOUNT_DISABLED -Language=English -ERROR_ACCOUNT_DISABLED - Logon failure: account currently disabled. -. -Language=Russian -ERROR_ACCOUNT_DISABLED - Вход этого пользователя в систему невозможен, так как эта учетная запись сейчас отключена. -. - -MessageId=1332 -Severity=Success -Facility=System -SymbolicName=ERROR_NONE_MAPPED -Language=English -ERROR_NONE_MAPPED - No mapping between account names and security IDs was done. -. -Language=Russian -ERROR_NONE_MAPPED - Сопоставление между именами пользователей и идентификаторами безопасности не было произведено. -. - -MessageId=1333 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_LUIDS_REQUESTED -Language=English -ERROR_TOO_MANY_LUIDS_REQUESTED - Too many local user identifiers (LUIDs) were requested at one time. -. -Language=Russian -ERROR_TOO_MANY_LUIDS_REQUESTED - Одновременно запрошено слишком много локальных кодов пользователей. -. - -MessageId=1334 -Severity=Success -Facility=System -SymbolicName=ERROR_LUIDS_EXHAUSTED -Language=English -ERROR_LUIDS_EXHAUSTED - No more local user identifiers (LUIDs) are available. -. -Language=Russian -ERROR_LUIDS_EXHAUSTED - Дополнительные локальные коды пользователей недоступны. -. - -MessageId=1335 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SUB_AUTHORITY -Language=English -ERROR_INVALID_SUB_AUTHORITY - The subauthority part of a security ID is invalid for this particular use. -. -Language=Russian -ERROR_INVALID_SUB_AUTHORITY - Часть "subauthority" идентификатора безопасности недействительна для этого конкретного использования. -. - -MessageId=1336 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ACL -Language=English -ERROR_INVALID_ACL - The access control list (ACL) structure is invalid. -. -Language=Russian -ERROR_INVALID_ACL - Список управления доступом (ACL) имеет неверную структуру. -. - -MessageId=1337 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SID -Language=English -ERROR_INVALID_SID - The security ID structure is invalid. -. -Language=Russian -ERROR_INVALID_SID - Идентификатор безопасности имеет неверную структуру. -. - -MessageId=1338 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SECURITY_DESCR -Language=English -ERROR_INVALID_SECURITY_DESCR - The security descriptor structure is invalid. -. -Language=Russian -ERROR_INVALID_SECURITY_DESCR - Дескриптор защиты данных имеет неверную структуру. -. - -MessageId=1340 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_INHERITANCE_ACL -Language=English -ERROR_BAD_INHERITANCE_ACL - The inherited access control list (ACL) or access control entry (ACE) could not be built. -. -Language=Russian -ERROR_BAD_INHERITANCE_ACL - Не удается построить список управления доступом (ACL) или элемент этого списка (ACE). -. - -MessageId=1341 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVER_DISABLED -Language=English -ERROR_SERVER_DISABLED - The server is currently disabled. -. -Language=Russian -ERROR_SERVER_DISABLED - Сервер в настоящее время отключен. -. - -MessageId=1342 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVER_NOT_DISABLED -Language=English -ERROR_SERVER_NOT_DISABLED - The server is currently enabled. -. -Language=Russian -ERROR_SERVER_NOT_DISABLED - Сервер в настоящее время включен. -. - -MessageId=1343 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ID_AUTHORITY -Language=English -ERROR_INVALID_ID_AUTHORITY - The value provided was an invalid value for an identifier authority. -. -Language=Russian -ERROR_INVALID_ID_AUTHORITY - Указано недопустимое значение для защитного кода. -. - -MessageId=1344 -Severity=Success -Facility=System -SymbolicName=ERROR_ALLOTTED_SPACE_EXCEEDED -Language=English -ERROR_ALLOTTED_SPACE_EXCEEDED - No more memory is available for security information updates. -. -Language=Russian -ERROR_ALLOTTED_SPACE_EXCEEDED - Недостаточно памяти для обновления сведений, относящихся к защите данных. -. - -MessageId=1345 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_GROUP_ATTRIBUTES -Language=English -ERROR_INVALID_GROUP_ATTRIBUTES - The specified attributes are invalid, or incompatible with the attributes for the group as a whole. -. -Language=Russian -ERROR_INVALID_GROUP_ATTRIBUTES - Указанные атрибуты неверны или несовместимы с атрибутами группы в целом. -. - -MessageId=1346 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_IMPERSONATION_LEVEL -Language=English -ERROR_BAD_IMPERSONATION_LEVEL - Either a required impersonation level was not provided, or the provided impersonation level is invalid. -. -Language=Russian -ERROR_BAD_IMPERSONATION_LEVEL - Требуемый уровень олицетворения не обеспечен, или обеспеченный уровень неверен. -. - -MessageId=1347 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_OPEN_ANONYMOUS -Language=English -ERROR_CANT_OPEN_ANONYMOUS - Cannot open an anonymous level security token. -. -Language=Russian -ERROR_CANT_OPEN_ANONYMOUS - Не удается открыть токен безопасности анонимного уровня. -. - -MessageId=1348 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_VALIDATION_CLASS -Language=English -ERROR_BAD_VALIDATION_CLASS - The validation information class requested was invalid. -. -Language=Russian -ERROR_BAD_VALIDATION_CLASS - Запрошен неправильный класс сведений для проверки. -. - -MessageId=1349 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_TOKEN_TYPE -Language=English -ERROR_BAD_TOKEN_TYPE - The type of the token is inappropriate for its attempted use. -. -Language=Russian -ERROR_BAD_TOKEN_TYPE - Тип токена не соответствует выполняемой операции. -. - -MessageId=1350 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SECURITY_ON_OBJECT -Language=English -ERROR_NO_SECURITY_ON_OBJECT - Unable to perform a security operation on an object that has no associated security. -. -Language=Russian -ERROR_NO_SECURITY_ON_OBJECT - Операция, связанная с защитой данных, не может быть выполнена для незащищенного объекта. -. - -MessageId=1351 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_ACCESS_DOMAIN_INFO -Language=English -ERROR_CANT_ACCESS_DOMAIN_INFO - Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied. -. -Language=Russian -ERROR_CANT_ACCESS_DOMAIN_INFO - Не удалось получить данные о конфигурации от контроллера домена. Либо он отключен, либо к нему нет доступа. -. - -MessageId=1352 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SERVER_STATE -Language=English -ERROR_INVALID_SERVER_STATE - The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation. -. -Language=Russian -ERROR_INVALID_SERVER_STATE - Диспетчер защиты (SAM) или локальный сервер (LSA) не смог выполнить требуемую операцию. -. - -MessageId=1353 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DOMAIN_STATE -Language=English -ERROR_INVALID_DOMAIN_STATE - The domain was in the wrong state to perform the security operation. -. -Language=Russian -ERROR_INVALID_DOMAIN_STATE - Состояние домена не позволило выполнить нужную операцию. -. - -MessageId=1354 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DOMAIN_ROLE -Language=English -ERROR_INVALID_DOMAIN_ROLE - This operation is only allowed for the Primary Domain Controller of the domain. -. -Language=Russian -ERROR_INVALID_DOMAIN_ROLE - Операция разрешена только для основного контроллера домена. -. - -MessageId=1355 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_DOMAIN -Language=English -ERROR_NO_SUCH_DOMAIN - The specified domain either does not exist or could not be contacted. -. -Language=Russian -ERROR_NO_SUCH_DOMAIN - Указанный домен не существует или к нему невозможно подключиться. -. - -MessageId=1356 -Severity=Success -Facility=System -SymbolicName=ERROR_DOMAIN_EXISTS -Language=English -ERROR_DOMAIN_EXISTS - The specified domain already exists. -. -Language=Russian -ERROR_DOMAIN_EXISTS - Указанный домен уже существует. -. - -MessageId=1357 -Severity=Success -Facility=System -SymbolicName=ERROR_DOMAIN_LIMIT_EXCEEDED -Language=English -ERROR_DOMAIN_LIMIT_EXCEEDED - An attempt was made to exceed the limit on the number of domains per server. -. -Language=Russian -ERROR_DOMAIN_LIMIT_EXCEEDED - Была сделана попытка превысить предел на число доменов, обслуживаемых одним сервером. -. - -MessageId=1358 -Severity=Success -Facility=System -SymbolicName=ERROR_INTERNAL_DB_CORRUPTION -Language=English -ERROR_INTERNAL_DB_CORRUPTION - Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk. -. -Language=Russian -ERROR_INTERNAL_DB_CORRUPTION - Не удается завершить требуемую операцию из-за сбоев в данных на диске или неустранимой ошибки носителя. -. - -MessageId=1359 -Severity=Success -Facility=System -SymbolicName=ERROR_INTERNAL_ERROR -Language=English -ERROR_INTERNAL_ERROR - An internal error occurred. -. -Language=Russian -ERROR_INTERNAL_ERROR - Внутренняя ошибка. -. - -MessageId=1360 -Severity=Success -Facility=System -SymbolicName=ERROR_GENERIC_NOT_MAPPED -Language=English -ERROR_GENERIC_NOT_MAPPED - Generic access types were contained in an access mask which should already be mapped to nongeneric types. -. -Language=Russian -ERROR_GENERIC_NOT_MAPPED - Универсальные типы доступа содержатся в маске доступа, которая должна была уже быть связана с нестандартными типами. -. - -MessageId=1361 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_DESCRIPTOR_FORMAT -Language=English -ERROR_BAD_DESCRIPTOR_FORMAT - A security descriptor is not in the right format (absolute or self-relative). -. -Language=Russian -ERROR_BAD_DESCRIPTOR_FORMAT - Дескриптор защиты имеет неверный формат. -. - -MessageId=1362 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_LOGON_PROCESS -Language=English -ERROR_NOT_LOGON_PROCESS - The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. -. -Language=Russian -ERROR_NOT_LOGON_PROCESS - Выполнение запрошенной операции разрешено только для процессов входа в систему. Вызывающий процесс не зарегистрирован как процесс входа в систему. -. - -MessageId=1363 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGON_SESSION_EXISTS -Language=English -ERROR_LOGON_SESSION_EXISTS - Cannot start a new logon session with an ID that is already in use. -. -Language=Russian -ERROR_LOGON_SESSION_EXISTS - Запуск нового сеанса работы с уже использующимся кодом невозможен. -. - -MessageId=1364 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_PACKAGE -Language=English -ERROR_NO_SUCH_PACKAGE - A specified authentication package is unknown. -. -Language=Russian -ERROR_NO_SUCH_PACKAGE - Пакет проверки подлинности не опознан. -. - -MessageId=1365 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_LOGON_SESSION_STATE -Language=English -ERROR_BAD_LOGON_SESSION_STATE - The logon session is not in a state that is consistent with the requested operation. -. -Language=Russian -ERROR_BAD_LOGON_SESSION_STATE - Текущее состояние сеанса входа в систему не подходит для запрошенной операции. -. - -MessageId=1366 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGON_SESSION_COLLISION -Language=English -ERROR_LOGON_SESSION_COLLISION - The logon session ID is already in use. -. -Language=Russian -ERROR_LOGON_SESSION_COLLISION - Код сеанса входа в систему уже используется. -. - -MessageId=1367 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LOGON_TYPE -Language=English -ERROR_INVALID_LOGON_TYPE - A logon request contained an invalid logon type value. -. -Language=Russian -ERROR_INVALID_LOGON_TYPE - Режим входа в систему задан неверно. -. - -MessageId=1368 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_IMPERSONATE -Language=English -ERROR_CANNOT_IMPERSONATE - Unable to impersonate using a named pipe until data has been read from that pipe. -. -Language=Russian -ERROR_CANNOT_IMPERSONATE - Невозможно обеспечить олицетворение через именованный канал до тех пор, пока данные не считаны из этого канала. -. - -MessageId=1369 -Severity=Success -Facility=System -SymbolicName=ERROR_RXACT_INVALID_STATE -Language=English -ERROR_RXACT_INVALID_STATE - The transaction state of a registry subtree is incompatible with the requested operation. -. -Language=Russian -ERROR_RXACT_INVALID_STATE - Операция несовместима с состоянием транзакции для ветви реестра. -. - -MessageId=1370 -Severity=Success -Facility=System -SymbolicName=ERROR_RXACT_COMMIT_FAILURE -Language=English -ERROR_RXACT_COMMIT_FAILURE - An internal security database corruption has been encountered. -. -Language=Russian -ERROR_RXACT_COMMIT_FAILURE - База данных защиты повреждена. -. - -MessageId=1371 -Severity=Success -Facility=System -SymbolicName=ERROR_SPECIAL_ACCOUNT -Language=English -ERROR_SPECIAL_ACCOUNT - Cannot perform this operation on built-in accounts. -. -Language=Russian -ERROR_SPECIAL_ACCOUNT - Операция не предназначена для встроенных учетных записей. -. - -MessageId=1372 -Severity=Success -Facility=System -SymbolicName=ERROR_SPECIAL_GROUP -Language=English -ERROR_SPECIAL_GROUP - Cannot perform this operation on this built-in special group. -. -Language=Russian -ERROR_SPECIAL_GROUP - Операция не предназначена для встроенной специальной группы. -. - -MessageId=1373 -Severity=Success -Facility=System -SymbolicName=ERROR_SPECIAL_USER -Language=English -ERROR_SPECIAL_USER - Cannot perform this operation on this built-in special user. -. -Language=Russian -ERROR_SPECIAL_USER - Операция не предназначена для встроенного специального пользователя. -. - -MessageId=1374 -Severity=Success -Facility=System -SymbolicName=ERROR_MEMBERS_PRIMARY_GROUP -Language=English -ERROR_MEMBERS_PRIMARY_GROUP - The user cannot be removed from a group because the group is currently the user's primary group. -. -Language=Russian -ERROR_MEMBERS_PRIMARY_GROUP - Невозможно удалить пользователя из группы, так как она является для него основной. -. - -MessageId=1375 -Severity=Success -Facility=System -SymbolicName=ERROR_TOKEN_ALREADY_IN_USE -Language=English -ERROR_TOKEN_ALREADY_IN_USE - The token is already in use as a primary token. -. -Language=Russian -ERROR_TOKEN_ALREADY_IN_USE - Токен уже используется в качестве основного токена. -. - -MessageId=1376 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_ALIAS -Language=English -ERROR_NO_SUCH_ALIAS - The specified local group does not exist. -. -Language=Russian -ERROR_NO_SUCH_ALIAS - Указанная локальная группа не существует. -. - -MessageId=1377 -Severity=Success -Facility=System -SymbolicName=ERROR_MEMBER_NOT_IN_ALIAS -Language=English -ERROR_MEMBER_NOT_IN_ALIAS - The specified account name is not a member of the local group. -. -Language=Russian -ERROR_MEMBER_NOT_IN_ALIAS - Указанная учетная запись не входит в эту группу. -. - -MessageId=1378 -Severity=Success -Facility=System -SymbolicName=ERROR_MEMBER_IN_ALIAS -Language=English -ERROR_MEMBER_IN_ALIAS - The specified account name is already a member of the local group. -. -Language=Russian -ERROR_MEMBER_IN_ALIAS - Указанная учетная запись уже входит в эту группу. -. - -MessageId=1379 -Severity=Success -Facility=System -SymbolicName=ERROR_ALIAS_EXISTS -Language=English -ERROR_ALIAS_EXISTS - The specified local group already exists. -. -Language=Russian -ERROR_ALIAS_EXISTS - Указанная локальная группа уже существует. -. - -MessageId=1380 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGON_NOT_GRANTED -Language=English -ERROR_LOGON_NOT_GRANTED - Logon failure: the user has not been granted the requested logon type at this computer. -. -Language=Russian -ERROR_LOGON_NOT_GRANTED - Вход в систему не произведен: выбранный режим входа для данного пользователя на этом компьютере не предусмотрен. -. - -MessageId=1381 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_SECRETS -Language=English -ERROR_TOO_MANY_SECRETS - The maximum number of secrets that may be stored in a single system has been exceeded. -. -Language=Russian -ERROR_TOO_MANY_SECRETS - Достигнут предел по количеству защищенных данных/ресурсов для одной системы. -. - -MessageId=1382 -Severity=Success -Facility=System -SymbolicName=ERROR_SECRET_TOO_LONG -Language=English -ERROR_SECRET_TOO_LONG - The length of a secret exceeds the maximum length allowed. -. -Language=Russian -ERROR_SECRET_TOO_LONG - Длина защищенных данных превышает максимально возможную. -. - -MessageId=1383 -Severity=Success -Facility=System -SymbolicName=ERROR_INTERNAL_DB_ERROR -Language=English -ERROR_INTERNAL_DB_ERROR - The local security authority database contains an internal inconsistency. -. -Language=Russian -ERROR_INTERNAL_DB_ERROR - Локальная база данных защиты содержит внутренние несоответствия. -. - -MessageId=1384 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_CONTEXT_IDS -Language=English -ERROR_TOO_MANY_CONTEXT_IDS - During a logon attempt, the user's security context accumulated too many security IDs. -. -Language=Russian -ERROR_TOO_MANY_CONTEXT_IDS - При попытке входа в систему контекст безопасности пользователя накопил слишком много идентификаторов безопасности. -. - -MessageId=1385 -Severity=Success -Facility=System -SymbolicName=ERROR_LOGON_TYPE_NOT_GRANTED -Language=English -ERROR_LOGON_TYPE_NOT_GRANTED - Logon failure: the user has not been granted the requested logon type at this computer. -. -Language=Russian -ERROR_LOGON_TYPE_NOT_GRANTED - Вход в систему не произведен: выбранный режим входа для данного пользователя на этом компьютере не предусмотрен. -. - -MessageId=1386 -Severity=Success -Facility=System -SymbolicName=ERROR_NT_CROSS_ENCRYPTION_REQUIRED -Language=English -ERROR_NT_CROSS_ENCRYPTION_REQUIRED - A cross-encrypted password is necessary to change a user password. -. -Language=Russian -ERROR_NT_CROSS_ENCRYPTION_REQUIRED - Для смены пароля необходим зашифрованный пароль. -. - -MessageId=1387 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUCH_MEMBER -Language=English -ERROR_NO_SUCH_MEMBER - A new member could not be added to or removed from the local group because the member does not exist. -. -Language=Russian -ERROR_NO_SUCH_MEMBER - Не удалось добавить или удалить члена локальной группы, так как он не существует. -. - -MessageId=1388 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MEMBER -Language=English -ERROR_INVALID_MEMBER - A new member could not be added to a local group because the member has the wrong account type. -. -Language=Russian -ERROR_INVALID_MEMBER - Добавление нового члена в локальную группу невозможно, так как он имеет неправильный тип учетной записи. -. - -MessageId=1389 -Severity=Success -Facility=System -SymbolicName=ERROR_TOO_MANY_SIDS -Language=English -ERROR_TOO_MANY_SIDS - Too many security IDs have been specified. -. -Language=Russian -ERROR_TOO_MANY_SIDS - Задано слишком много идентификаторов безопасности. -. - -MessageId=1390 -Severity=Success -Facility=System -SymbolicName=ERROR_LM_CROSS_ENCRYPTION_REQUIRED -Language=English -ERROR_LM_CROSS_ENCRYPTION_REQUIRED - A cross-encrypted password is necessary to change this user password. -. -Language=Russian -ERROR_LM_CROSS_ENCRYPTION_REQUIRED - Для смены пароля необходим зашифрованный пароль. -. - -MessageId=1391 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_INHERITANCE -Language=English -ERROR_NO_INHERITANCE - Indicates an ACL contains no inheritable components. -. -Language=Russian -ERROR_NO_INHERITANCE - Список управления доступом (ACL) не содержит наследуемых компонентов. -. - -MessageId=1392 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_CORRUPT -Language=English -ERROR_FILE_CORRUPT - The file or directory is corrupted and unreadable. -. -Language=Russian -ERROR_FILE_CORRUPT - Файл или папка повреждены. Чтение невозможно. -. - -MessageId=1393 -Severity=Success -Facility=System -SymbolicName=ERROR_DISK_CORRUPT -Language=English -ERROR_DISK_CORRUPT - The disk structure is corrupted and unreadable. -. -Language=Russian -ERROR_DISK_CORRUPT - Структура диска повреждена. Чтение невозможно. -. - -MessageId=1394 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_USER_SESSION_KEY -Language=English -ERROR_NO_USER_SESSION_KEY - There is no user session key for the specified logon session. -. -Language=Russian -ERROR_NO_USER_SESSION_KEY - Для заданного сеанса входа в систему отсутствует раздел сеанса пользователя. -. - -MessageId=1395 -Severity=Success -Facility=System -SymbolicName=ERROR_LICENSE_QUOTA_EXCEEDED -Language=English -ERROR_LICENSE_QUOTA_EXCEEDED - The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept. -. -Language=Russian -ERROR_LICENSE_QUOTA_EXCEEDED - Для вызываемой службы действует лицензия на определенное число подключений. В настоящее время создание дополнительных подключений к службе невозможно, так как уже существует максимально допустимое число подключений. -. - -MessageId=1396 -Severity=Success -Facility=System -SymbolicName=ERROR_WRONG_TARGET_NAME -Language=English -ERROR_WRONG_TARGET_NAME - Logon Failure: The target account name is incorrect. -. -Language=Russian -ERROR_WRONG_TARGET_NAME - Конечная учетная запись указана неверно. -. - -MessageId=1397 -Severity=Success -Facility=System -SymbolicName=ERROR_MUTUAL_AUTH_FAILED -Language=English -ERROR_MUTUAL_AUTH_FAILED - Mutual Authentication failed. The server's password is out of date at the domain controller. -. -Language=Russian -ERROR_MUTUAL_AUTH_FAILED - Ошибка взаимной проверки подлинности. Пароль сервера на контроллере домена устарел. -. - -MessageId=1398 -Severity=Success -Facility=System -SymbolicName=ERROR_TIME_SKEW -Language=English -ERROR_TIME_SKEW - There is a time and/or date difference between the client and server. -. -Language=Russian -ERROR_TIME_SKEW - Существует разница настройки времени и/или даты между клиентом и сервером. -. - -MessageId=1399 -Severity=Success -Facility=System -SymbolicName=ERROR_CURRENT_DOMAIN_NOT_ALLOWED -Language=English -ERROR_CURRENT_DOMAIN_NOT_ALLOWED - This operation cannot be performed on the current domain. -. -Language=Russian -ERROR_CURRENT_DOMAIN_NOT_ALLOWED - Эта операция не может быть выполнена над текущим доменом. -. - -MessageId=1400 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_WINDOW_HANDLE -Language=English -ERROR_INVALID_WINDOW_HANDLE - Invalid window handle. -. -Language=Russian -ERROR_INVALID_WINDOW_HANDLE - Недопустимый дескриптор окна. -. - -MessageId=1401 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MENU_HANDLE -Language=English -ERROR_INVALID_MENU_HANDLE - Invalid menu handle. -. -Language=Russian -ERROR_INVALID_MENU_HANDLE - Неверный дескриптор меню. -. - -MessageId=1402 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_CURSOR_HANDLE -Language=English -ERROR_INVALID_CURSOR_HANDLE - Invalid cursor handle. -. -Language=Russian -ERROR_INVALID_CURSOR_HANDLE - Неверный дескриптор указателя. -. - -MessageId=1403 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ACCEL_HANDLE -Language=English -ERROR_INVALID_ACCEL_HANDLE - Invalid accelerator table handle. -. -Language=Russian -ERROR_INVALID_ACCEL_HANDLE - Неверный дескриптор таблицы сочетаний клавиш. -. - -MessageId=1404 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_HOOK_HANDLE -Language=English -ERROR_INVALID_HOOK_HANDLE - Invalid hook handle. -. -Language=Russian -ERROR_INVALID_HOOK_HANDLE - Неверный дескриптор обработчика. -. - -MessageId=1405 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DWP_HANDLE -Language=English -ERROR_INVALID_DWP_HANDLE - Invalid handle to a multiple-window position structure. -. -Language=Russian -ERROR_INVALID_DWP_HANDLE - Неверный дескриптор многооконной структуры. -. - -MessageId=1406 -Severity=Success -Facility=System -SymbolicName=ERROR_TLW_WITH_WSCHILD -Language=English -ERROR_TLW_WITH_WSCHILD - Cannot create a top-level child window. -. -Language=Russian -ERROR_TLW_WITH_WSCHILD - Не удается создать дочернее окно верхнего уровня. -. - -MessageId=1407 -Severity=Success -Facility=System -SymbolicName=ERROR_CANNOT_FIND_WND_CLASS -Language=English -ERROR_CANNOT_FIND_WND_CLASS - Cannot find window class. -. -Language=Russian -ERROR_CANNOT_FIND_WND_CLASS - Не удается найти класс окна. -. - -MessageId=1408 -Severity=Success -Facility=System -SymbolicName=ERROR_WINDOW_OF_OTHER_THREAD -Language=English -ERROR_WINDOW_OF_OTHER_THREAD - Invalid window; it belongs to other thread. -. -Language=Russian -ERROR_WINDOW_OF_OTHER_THREAD - Окно принадлежит другому потоку команд. -. - -MessageId=1409 -Severity=Success -Facility=System -SymbolicName=ERROR_HOTKEY_ALREADY_REGISTERED -Language=English -ERROR_HOTKEY_ALREADY_REGISTERED - Hot key is already registered. -. -Language=Russian -ERROR_HOTKEY_ALREADY_REGISTERED - Назначенная клавиша уже зарегистрирована. -. - -MessageId=1410 -Severity=Success -Facility=System -SymbolicName=ERROR_CLASS_ALREADY_EXISTS -Language=English -ERROR_CLASS_ALREADY_EXISTS - Class already exists. -. -Language=Russian -ERROR_CLASS_ALREADY_EXISTS - Класс уже существует. -. - -MessageId=1411 -Severity=Success -Facility=System -SymbolicName=ERROR_CLASS_DOES_NOT_EXIST -Language=English -ERROR_CLASS_DOES_NOT_EXIST - Class does not exist. -. -Language=Russian -ERROR_CLASS_DOES_NOT_EXIST - Класс не существует. -. - -MessageId=1412 -Severity=Success -Facility=System -SymbolicName=ERROR_CLASS_HAS_WINDOWS -Language=English -ERROR_CLASS_HAS_WINDOWS - Class still has open windows. -. - -MessageId=1413 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_INDEX -Language=English -ERROR_INVALID_INDEX - Invalid index. -. - -MessageId=1414 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ICON_HANDLE -Language=English -ERROR_INVALID_ICON_HANDLE - Invalid icon handle. -. - -MessageId=1415 -Severity=Success -Facility=System -SymbolicName=ERROR_PRIVATE_DIALOG_INDEX -Language=English -ERROR_PRIVATE_DIALOG_INDEX - Using private DIALOG window words. -. - -MessageId=1416 -Severity=Success -Facility=System -SymbolicName=ERROR_LISTBOX_ID_NOT_FOUND -Language=English -ERROR_LISTBOX_ID_NOT_FOUND - The list box identifier was not found. -. - -MessageId=1417 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_WILDCARD_CHARACTERS -Language=English -ERROR_NO_WILDCARD_CHARACTERS - No wildcards were found. -. - -MessageId=1418 -Severity=Success -Facility=System -SymbolicName=ERROR_CLIPBOARD_NOT_OPEN -Language=English -ERROR_CLIPBOARD_NOT_OPEN - Thread does not have a clipboard open. -. - -MessageId=1419 -Severity=Success -Facility=System -SymbolicName=ERROR_HOTKEY_NOT_REGISTERED -Language=English -ERROR_HOTKEY_NOT_REGISTERED - Hot key is not registered. -. - -MessageId=1420 -Severity=Success -Facility=System -SymbolicName=ERROR_WINDOW_NOT_DIALOG -Language=English -ERROR_WINDOW_NOT_DIALOG - The window is not a valid dialog window. -. - -MessageId=1421 -Severity=Success -Facility=System -SymbolicName=ERROR_CONTROL_ID_NOT_FOUND -Language=English -ERROR_CONTROL_ID_NOT_FOUND - Control ID not found. -. - -MessageId=1422 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_COMBOBOX_MESSAGE -Language=English -ERROR_INVALID_COMBOBOX_MESSAGE - Invalid message for a combo box because it does not have an edit control. -. - -MessageId=1423 -Severity=Success -Facility=System -SymbolicName=ERROR_WINDOW_NOT_COMBOBOX -Language=English -ERROR_WINDOW_NOT_COMBOBOX - The window is not a combo box. -. - -MessageId=1424 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_EDIT_HEIGHT -Language=English -ERROR_INVALID_EDIT_HEIGHT - Height must be less than 256. -. - -MessageId=1425 -Severity=Success -Facility=System -SymbolicName=ERROR_DC_NOT_FOUND -Language=English -ERROR_DC_NOT_FOUND - Invalid device context (DC) handle. -. - -MessageId=1426 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_HOOK_FILTER -Language=English -ERROR_INVALID_HOOK_FILTER - Invalid hook procedure type. -. - -MessageId=1427 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FILTER_PROC -Language=English -ERROR_INVALID_FILTER_PROC - Invalid hook procedure. -. - -MessageId=1428 -Severity=Success -Facility=System -SymbolicName=ERROR_HOOK_NEEDS_HMOD -Language=English -ERROR_HOOK_NEEDS_HMOD - Cannot set nonlocal hook without a module handle. -. - -MessageId=1429 -Severity=Success -Facility=System -SymbolicName=ERROR_GLOBAL_ONLY_HOOK -Language=English -ERROR_GLOBAL_ONLY_HOOK - This hook procedure can only be set globally. -. - -MessageId=1430 -Severity=Success -Facility=System -SymbolicName=ERROR_JOURNAL_HOOK_SET -Language=English -ERROR_JOURNAL_HOOK_SET - The journal hook procedure is already installed. -. - -MessageId=1431 -Severity=Success -Facility=System -SymbolicName=ERROR_HOOK_NOT_INSTALLED -Language=English -ERROR_HOOK_NOT_INSTALLED - The hook procedure is not installed. -. - -MessageId=1432 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LB_MESSAGE -Language=English -ERROR_INVALID_LB_MESSAGE - Invalid message for single-selection list box. -. - -MessageId=1433 -Severity=Success -Facility=System -SymbolicName=ERROR_SETCOUNT_ON_BAD_LB -Language=English -ERROR_SETCOUNT_ON_BAD_LB - LB_SETCOUNT sent to non-lazy list box. -. - -MessageId=1434 -Severity=Success -Facility=System -SymbolicName=ERROR_LB_WITHOUT_TABSTOPS -Language=English -ERROR_LB_WITHOUT_TABSTOPS - This list box does not support tab stops. -. - -MessageId=1435 -Severity=Success -Facility=System -SymbolicName=ERROR_DESTROY_OBJECT_OF_OTHER_THREAD -Language=English -ERROR_DESTROY_OBJECT_OF_OTHER_THREAD - Cannot destroy object created by another thread. -. - -MessageId=1436 -Severity=Success -Facility=System -SymbolicName=ERROR_CHILD_WINDOW_MENU -Language=English -ERROR_CHILD_WINDOW_MENU - Child windows cannot have menus. -. - -MessageId=1437 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SYSTEM_MENU -Language=English -ERROR_NO_SYSTEM_MENU - The window does not have a system menu. -. - -MessageId=1438 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MSGBOX_STYLE -Language=English -ERROR_INVALID_MSGBOX_STYLE - Invalid message box style. -. - -MessageId=1439 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SPI_VALUE -Language=English -ERROR_INVALID_SPI_VALUE - Invalid system-wide (SPI_*) parameter. -. - -MessageId=1440 -Severity=Success -Facility=System -SymbolicName=ERROR_SCREEN_ALREADY_LOCKED -Language=English -ERROR_SCREEN_ALREADY_LOCKED - Screen already locked. -. - -MessageId=1441 -Severity=Success -Facility=System -SymbolicName=ERROR_HWNDS_HAVE_DIFF_PARENT -Language=English -ERROR_HWNDS_HAVE_DIFF_PARENT - All handles to windows in a multiple-window position structure must have the same parent. -. - -MessageId=1442 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_CHILD_WINDOW -Language=English -ERROR_NOT_CHILD_WINDOW - The window is not a child window. -. - -MessageId=1443 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_GW_COMMAND -Language=English -ERROR_INVALID_GW_COMMAND - Invalid GW_* command. -. - -MessageId=1444 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_THREAD_ID -Language=English -ERROR_INVALID_THREAD_ID - Invalid thread identifier. -. - -MessageId=1445 -Severity=Success -Facility=System -SymbolicName=ERROR_NON_MDICHILD_WINDOW -Language=English -ERROR_NON_MDICHILD_WINDOW - Cannot process a message from a window that is not a multiple document interface (MDI) window. -. - -MessageId=1446 -Severity=Success -Facility=System -SymbolicName=ERROR_POPUP_ALREADY_ACTIVE -Language=English -ERROR_POPUP_ALREADY_ACTIVE - Popup menu already active. -. - -MessageId=1447 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SCROLLBARS -Language=English -ERROR_NO_SCROLLBARS - The window does not have scroll bars. -. - -MessageId=1448 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SCROLLBAR_RANGE -Language=English -ERROR_INVALID_SCROLLBAR_RANGE - Scroll bar range cannot be greater than MAXLONG. -. - -MessageId=1449 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SHOWWIN_COMMAND -Language=English -ERROR_INVALID_SHOWWIN_COMMAND - Cannot show or remove the window in the way specified. -. - -MessageId=1450 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SYSTEM_RESOURCES -Language=English -ERROR_NO_SYSTEM_RESOURCES - Insufficient system resources exist to complete the requested service. -. - -MessageId=1451 -Severity=Success -Facility=System -SymbolicName=ERROR_NONPAGED_SYSTEM_RESOURCES -Language=English -ERROR_NONPAGED_SYSTEM_RESOURCES - Insufficient system resources exist to complete the requested service. -. - -MessageId=1452 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGED_SYSTEM_RESOURCES -Language=English -ERROR_PAGED_SYSTEM_RESOURCES - Insufficient system resources exist to complete the requested service. -. - -MessageId=1453 -Severity=Success -Facility=System -SymbolicName=ERROR_WORKING_SET_QUOTA -Language=English -ERROR_WORKING_SET_QUOTA - Insufficient quota to complete the requested service. -. - -MessageId=1454 -Severity=Success -Facility=System -SymbolicName=ERROR_PAGEFILE_QUOTA -Language=English -ERROR_PAGEFILE_QUOTA - Insufficient quota to complete the requested service. -. - -MessageId=1455 -Severity=Success -Facility=System -SymbolicName=ERROR_COMMITMENT_LIMIT -Language=English -ERROR_COMMITMENT_LIMIT - The paging file is too small for this operation to complete. -. - -MessageId=1456 -Severity=Success -Facility=System -SymbolicName=ERROR_MENU_ITEM_NOT_FOUND -Language=English -ERROR_MENU_ITEM_NOT_FOUND - A menu item was not found. -. - -MessageId=1457 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_KEYBOARD_HANDLE -Language=English -ERROR_INVALID_KEYBOARD_HANDLE - Invalid keyboard layout handle. -. - -MessageId=1458 -Severity=Success -Facility=System -SymbolicName=ERROR_HOOK_TYPE_NOT_ALLOWED -Language=English -ERROR_HOOK_TYPE_NOT_ALLOWED - Hook type not allowed. -. - -MessageId=1459 -Severity=Success -Facility=System -SymbolicName=ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION -Language=English -ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION - This operation requires an interactive window station. -. - -MessageId=1460 -Severity=Success -Facility=System -SymbolicName=ERROR_TIMEOUT -Language=English -ERROR_TIMEOUT - This operation returned because the timeout period expired. -. - -MessageId=1461 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MONITOR_HANDLE -Language=English -ERROR_INVALID_MONITOR_HANDLE - Invalid monitor handle. -. - -MessageId=1500 -Severity=Success -Facility=System -SymbolicName=ERROR_EVENTLOG_FILE_CORRUPT -Language=English -ERROR_EVENTLOG_FILE_CORRUPT - The event log file is corrupted. -. - -MessageId=1501 -Severity=Success -Facility=System -SymbolicName=ERROR_EVENTLOG_CANT_START -Language=English -ERROR_EVENTLOG_CANT_START - No event log file could be opened, so the event logging service did not start. -. - -MessageId=1502 -Severity=Success -Facility=System -SymbolicName=ERROR_LOG_FILE_FULL -Language=English -ERROR_LOG_FILE_FULL - The event log file is full. -. - -MessageId=1503 -Severity=Success -Facility=System -SymbolicName=ERROR_EVENTLOG_FILE_CHANGED -Language=English -ERROR_EVENTLOG_FILE_CHANGED - The event log file has changed between read operations. -. - -MessageId=1601 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_SERVICE_FAILURE -Language=English -ERROR_INSTALL_SERVICE_FAILURE - The Windows Installer service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance. -. - -MessageId=1602 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_USEREXIT -Language=English -ERROR_INSTALL_USEREXIT - User cancelled installation. -. - -MessageId=1603 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_FAILURE -Language=English -ERROR_INSTALL_FAILURE - Fatal error during installation. -. - -MessageId=1604 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_SUSPEND -Language=English -ERROR_INSTALL_SUSPEND - Installation suspended, incomplete. -. - -MessageId=1605 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_PRODUCT -Language=English -ERROR_UNKNOWN_PRODUCT - This action is only valid for products that are currently installed. -. - -MessageId=1606 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_FEATURE -Language=English -ERROR_UNKNOWN_FEATURE - Feature ID not registered. -. - -MessageId=1607 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_COMPONENT -Language=English -ERROR_UNKNOWN_COMPONENT - Component ID not registered. -. - -MessageId=1608 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_PROPERTY -Language=English -ERROR_UNKNOWN_PROPERTY - Unknown property. -. - -MessageId=1609 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_HANDLE_STATE -Language=English -ERROR_INVALID_HANDLE_STATE - Handle is in an invalid state. -. - -MessageId=1610 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_CONFIGURATION -Language=English -ERROR_BAD_CONFIGURATION - The configuration data for this product is corrupt. Contact your support personnel. -. - -MessageId=1611 -Severity=Success -Facility=System -SymbolicName=ERROR_INDEX_ABSENT -Language=English -ERROR_INDEX_ABSENT - Component qualifier not present. -. - -MessageId=1612 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_SOURCE_ABSENT -Language=English -ERROR_INSTALL_SOURCE_ABSENT - The installation source for this product is not available. Verify that the source exists and that you can access it. -. - -MessageId=1613 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_PACKAGE_VERSION -Language=English -ERROR_INSTALL_PACKAGE_VERSION - This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. -. - -MessageId=1614 -Severity=Success -Facility=System -SymbolicName=ERROR_PRODUCT_UNINSTALLED -Language=English -ERROR_PRODUCT_UNINSTALLED - Product is uninstalled. -. - -MessageId=1615 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_QUERY_SYNTAX -Language=English -ERROR_BAD_QUERY_SYNTAX - SQL query syntax invalid or unsupported. -. - -MessageId=1616 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FIELD -Language=English -ERROR_INVALID_FIELD - Record field does not exist. -. - -MessageId=1617 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_REMOVED -Language=English -ERROR_DEVICE_REMOVED - The device has been removed. -. - -MessageId=1618 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_ALREADY_RUNNING -Language=English -ERROR_INSTALL_ALREADY_RUNNING - Another installation is already in progress. Complete that installation before proceeding with this install. -. - -MessageId=1619 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_PACKAGE_OPEN_FAILED -Language=English -ERROR_INSTALL_PACKAGE_OPEN_FAILED - This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package. -. - -MessageId=1620 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_PACKAGE_INVALID -Language=English -ERROR_INSTALL_PACKAGE_INVALID - This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package. -. - -MessageId=1621 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_UI_FAILURE -Language=English -ERROR_INSTALL_UI_FAILURE - There was an error starting the Windows Installer service user interface. Contact your support personnel. -. - -MessageId=1622 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_LOG_FAILURE -Language=English -ERROR_INSTALL_LOG_FAILURE - Error opening installation log file. Verify that the specified log file location exists and that you can write to it. -. - -MessageId=1623 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_LANGUAGE_UNSUPPORTED -Language=English -ERROR_INSTALL_LANGUAGE_UNSUPPORTED - The language of this installation package is not supported by your system. -. - -MessageId=1624 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_TRANSFORM_FAILURE -Language=English -ERROR_INSTALL_TRANSFORM_FAILURE - Error applying transforms. Verify that the specified transform paths are valid. -. - -MessageId=1625 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_PACKAGE_REJECTED -Language=English -ERROR_INSTALL_PACKAGE_REJECTED - This installation is forbidden by system policy. Contact your system administrator. -. - -MessageId=1626 -Severity=Success -Facility=System -SymbolicName=ERROR_FUNCTION_NOT_CALLED -Language=English -ERROR_FUNCTION_NOT_CALLED - Function could not be executed. -. - -MessageId=1627 -Severity=Success -Facility=System -SymbolicName=ERROR_FUNCTION_FAILED -Language=English -ERROR_FUNCTION_FAILED - Function failed during execution. -. - -MessageId=1628 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_TABLE -Language=English -ERROR_INVALID_TABLE - Invalid or unknown table specified. -. - -MessageId=1629 -Severity=Success -Facility=System -SymbolicName=ERROR_DATATYPE_MISMATCH -Language=English -ERROR_DATATYPE_MISMATCH - Data supplied is of wrong type. -. - -MessageId=1630 -Severity=Success -Facility=System -SymbolicName=ERROR_UNSUPPORTED_TYPE -Language=English -ERROR_UNSUPPORTED_TYPE - Data of this type is not supported. -. - -MessageId=1631 -Severity=Success -Facility=System -SymbolicName=ERROR_CREATE_FAILED -Language=English -ERROR_CREATE_FAILED - The Windows Installer service failed to start. Contact your support personnel. -. - -MessageId=1632 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_TEMP_UNWRITABLE -Language=English -ERROR_INSTALL_TEMP_UNWRITABLE - The Temp folder is on a drive that is full or inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder. -. - -MessageId=1633 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_PLATFORM_UNSUPPORTED -Language=English -ERROR_INSTALL_PLATFORM_UNSUPPORTED - This installation package is not supported by this processor type. Contact your product vendor. -. - -MessageId=1634 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_NOTUSED -Language=English -ERROR_INSTALL_NOTUSED - Component not used on this computer. -. - -MessageId=1635 -Severity=Success -Facility=System -SymbolicName=ERROR_PATCH_PACKAGE_OPEN_FAILED -Language=English -ERROR_PATCH_PACKAGE_OPEN_FAILED - This patch package could not be opened. Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package. -. - -MessageId=1636 -Severity=Success -Facility=System -SymbolicName=ERROR_PATCH_PACKAGE_INVALID -Language=English -ERROR_PATCH_PACKAGE_INVALID - This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package. -. - -MessageId=1637 -Severity=Success -Facility=System -SymbolicName=ERROR_PATCH_PACKAGE_UNSUPPORTED -Language=English -ERROR_PATCH_PACKAGE_UNSUPPORTED - This patch package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. -. - -MessageId=1638 -Severity=Success -Facility=System -SymbolicName=ERROR_PRODUCT_VERSION -Language=English -ERROR_PRODUCT_VERSION - Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel. -. - -MessageId=1639 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_COMMAND_LINE -Language=English -ERROR_INVALID_COMMAND_LINE - Invalid command line argument. Consult the Windows Installer SDK for detailed command line help. -. - -MessageId=1640 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_REMOTE_DISALLOWED -Language=English -ERROR_INSTALL_REMOTE_DISALLOWED - Only administrators have permission to add, remove, or configure server software during a Terminal Services remote session. If you want to install or configure software on the server, contact your network administrator. -. - -MessageId=1641 -Severity=Success -Facility=System -SymbolicName=ERROR_SUCCESS_REBOOT_INITIATED -Language=English -ERROR_SUCCESS_REBOOT_INITIATED - The requested operation completed successfully. The system will be restarted so the changes can take effect. -. - -MessageId=1642 -Severity=Success -Facility=System -SymbolicName=ERROR_PATCH_TARGET_NOT_FOUND -Language=English -ERROR_PATCH_TARGET_NOT_FOUND - The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch. -. - -MessageId=1643 -Severity=Success -Facility=System -SymbolicName=ERROR_PATCH_PACKAGE_REJECTED -Language=English -ERROR_PATCH_PACKAGE_REJECTED - The patch package is not permitted by software restriction policy. -. - -MessageId=1644 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_TRANSFORM_REJECTED -Language=English -ERROR_INSTALL_TRANSFORM_REJECTED - One or more customizations are not permitted by software restriction policy. -. - -MessageId=1645 -Severity=Success -Facility=System -SymbolicName=ERROR_INSTALL_REMOTE_PROHIBITED -Language=English -ERROR_INSTALL_REMOTE_PROHIBITED - The Windows Installer does not permit installation from a Remote Desktop Connection. -. - -MessageId=1700 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_STRING_BINDING -Language=English -RPC_S_INVALID_STRING_BINDING - The string binding is invalid. -. - -MessageId=1701 -Severity=Success -Facility=System -SymbolicName=RPC_S_WRONG_KIND_OF_BINDING -Language=English -RPC_S_WRONG_KIND_OF_BINDING - The binding handle is not the correct type. -. - -MessageId=1702 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_BINDING -Language=English -RPC_S_INVALID_BINDING - The binding handle is invalid. -. - -MessageId=1703 -Severity=Success -Facility=System -SymbolicName=RPC_S_PROTSEQ_NOT_SUPPORTED -Language=English -RPC_S_PROTSEQ_NOT_SUPPORTED - The RPC protocol sequence is not supported. -. - -MessageId=1704 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_RPC_PROTSEQ -Language=English -RPC_S_INVALID_RPC_PROTSEQ - The RPC protocol sequence is invalid. -. - -MessageId=1705 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_STRING_UUID -Language=English -RPC_S_INVALID_STRING_UUID - The string universal unique identifier (UUID) is invalid. -. - -MessageId=1706 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_ENDPOINT_FORMAT -Language=English -RPC_S_INVALID_ENDPOINT_FORMAT - The endpoint format is invalid. -. - -MessageId=1707 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_NET_ADDR -Language=English -RPC_S_INVALID_NET_ADDR - The network address is invalid. -. - -MessageId=1708 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_ENDPOINT_FOUND -Language=English -RPC_S_NO_ENDPOINT_FOUND - No endpoint was found. -. - -MessageId=1709 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_TIMEOUT -Language=English -RPC_S_INVALID_TIMEOUT - The timeout value is invalid. -. - -MessageId=1710 -Severity=Success -Facility=System -SymbolicName=RPC_S_OBJECT_NOT_FOUND -Language=English -RPC_S_OBJECT_NOT_FOUND - The object universal unique identifier (UUID) was not found. -. - -MessageId=1711 -Severity=Success -Facility=System -SymbolicName=RPC_S_ALREADY_REGISTERED -Language=English -RPC_S_ALREADY_REGISTERED - The object universal unique identifier (UUID) has already been registered. -. - -MessageId=1712 -Severity=Success -Facility=System -SymbolicName=RPC_S_TYPE_ALREADY_REGISTERED -Language=English -RPC_S_TYPE_ALREADY_REGISTERED - The type universal unique identifier (UUID) has already been registered. -. - -MessageId=1713 -Severity=Success -Facility=System -SymbolicName=RPC_S_ALREADY_LISTENING -Language=English -RPC_S_ALREADY_LISTENING - The RPC server is already listening. -. - -MessageId=1714 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_PROTSEQS_REGISTERED -Language=English -RPC_S_NO_PROTSEQS_REGISTERED - No protocol sequences have been registered. -. - -MessageId=1715 -Severity=Success -Facility=System -SymbolicName=RPC_S_NOT_LISTENING -Language=English -RPC_S_NOT_LISTENING - The RPC server is not listening. -. - -MessageId=1716 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNKNOWN_MGR_TYPE -Language=English -RPC_S_UNKNOWN_MGR_TYPE - The manager type is unknown. -. - -MessageId=1717 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNKNOWN_IF -Language=English -RPC_S_UNKNOWN_IF - The interface is unknown. -. - -MessageId=1718 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_BINDINGS -Language=English -RPC_S_NO_BINDINGS - There are no bindings. -. - -MessageId=1719 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_PROTSEQS -Language=English -RPC_S_NO_PROTSEQS - There are no protocol sequences. -. - -MessageId=1720 -Severity=Success -Facility=System -SymbolicName=RPC_S_CANT_CREATE_ENDPOINT -Language=English -RPC_S_CANT_CREATE_ENDPOINT - The endpoint cannot be created. -. - -MessageId=1721 -Severity=Success -Facility=System -SymbolicName=RPC_S_OUT_OF_RESOURCES -Language=English -RPC_S_OUT_OF_RESOURCES - Not enough resources are available to complete this operation. -. - -MessageId=1722 -Severity=Success -Facility=System -SymbolicName=RPC_S_SERVER_UNAVAILABLE -Language=English -RPC_S_SERVER_UNAVAILABLE - The RPC server is unavailable. -. - -MessageId=1723 -Severity=Success -Facility=System -SymbolicName=RPC_S_SERVER_TOO_BUSY -Language=English -RPC_S_SERVER_TOO_BUSY - The RPC server is too busy to complete this operation. -. - -MessageId=1724 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_NETWORK_OPTIONS -Language=English -RPC_S_INVALID_NETWORK_OPTIONS - The network options are invalid. -. - -MessageId=1725 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_CALL_ACTIVE -Language=English -RPC_S_NO_CALL_ACTIVE - There are no remote procedure calls active on this thread. -. - -MessageId=1726 -Severity=Success -Facility=System -SymbolicName=RPC_S_CALL_FAILED -Language=English -RPC_S_CALL_FAILED - The remote procedure call failed. -. - -MessageId=1727 -Severity=Success -Facility=System -SymbolicName=RPC_S_CALL_FAILED_DNE -Language=English -RPC_S_CALL_FAILED_DNE - The remote procedure call failed and did not execute. -. - -MessageId=1728 -Severity=Success -Facility=System -SymbolicName=RPC_S_PROTOCOL_ERROR -Language=English -RPC_S_PROTOCOL_ERROR - A remote procedure call (RPC) protocol error occurred. -. - -MessageId=1730 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNSUPPORTED_TRANS_SYN -Language=English -RPC_S_UNSUPPORTED_TRANS_SYN - The transfer syntax is not supported by the RPC server. -. - -MessageId=1732 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNSUPPORTED_TYPE -Language=English -RPC_S_UNSUPPORTED_TYPE - The universal unique identifier (UUID) type is not supported. -. - -MessageId=1733 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_TAG -Language=English -RPC_S_INVALID_TAG - The tag is invalid. -. - -MessageId=1734 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_BOUND -Language=English -RPC_S_INVALID_BOUND - The array bounds are invalid. -. - -MessageId=1735 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_ENTRY_NAME -Language=English -RPC_S_NO_ENTRY_NAME - The binding does not contain an entry name. -. - -MessageId=1736 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_NAME_SYNTAX -Language=English -RPC_S_INVALID_NAME_SYNTAX - The name syntax is invalid. -. - -MessageId=1737 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNSUPPORTED_NAME_SYNTAX -Language=English -RPC_S_UNSUPPORTED_NAME_SYNTAX - The name syntax is not supported. -. - -MessageId=1739 -Severity=Success -Facility=System -SymbolicName=RPC_S_UUID_NO_ADDRESS -Language=English -RPC_S_UUID_NO_ADDRESS - No network address is available to use to construct a universal unique identifier (UUID). -. - -MessageId=1740 -Severity=Success -Facility=System -SymbolicName=RPC_S_DUPLICATE_ENDPOINT -Language=English -RPC_S_DUPLICATE_ENDPOINT - The endpoint is a duplicate. -. - -MessageId=1741 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNKNOWN_AUTHN_TYPE -Language=English -RPC_S_UNKNOWN_AUTHN_TYPE - The authentication type is unknown. -. - -MessageId=1742 -Severity=Success -Facility=System -SymbolicName=RPC_S_MAX_CALLS_TOO_SMALL -Language=English -RPC_S_MAX_CALLS_TOO_SMALL - The maximum number of calls is too small. -. - -MessageId=1743 -Severity=Success -Facility=System -SymbolicName=RPC_S_STRING_TOO_LONG -Language=English -RPC_S_STRING_TOO_LONG - The string is too long. -. - -MessageId=1744 -Severity=Success -Facility=System -SymbolicName=RPC_S_PROTSEQ_NOT_FOUND -Language=English -RPC_S_PROTSEQ_NOT_FOUND - The RPC protocol sequence was not found. -. - -MessageId=1745 -Severity=Success -Facility=System -SymbolicName=RPC_S_PROCNUM_OUT_OF_RANGE -Language=English -RPC_S_PROCNUM_OUT_OF_RANGE - The procedure number is out of range. -. - -MessageId=1746 -Severity=Success -Facility=System -SymbolicName=RPC_S_BINDING_HAS_NO_AUTH -Language=English -RPC_S_BINDING_HAS_NO_AUTH - The binding does not contain any authentication information. -. - -MessageId=1747 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNKNOWN_AUTHN_SERVICE -Language=English -RPC_S_UNKNOWN_AUTHN_SERVICE - The authentication service is unknown. -. - -MessageId=1748 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNKNOWN_AUTHN_LEVEL -Language=English -RPC_S_UNKNOWN_AUTHN_LEVEL - The authentication level is unknown. -. - -MessageId=1749 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_AUTH_IDENTITY -Language=English -RPC_S_INVALID_AUTH_IDENTITY - The security context is invalid. -. - -MessageId=1750 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNKNOWN_AUTHZ_SERVICE -Language=English -RPC_S_UNKNOWN_AUTHZ_SERVICE - The authorization service is unknown. -. - -MessageId=1751 -Severity=Success -Facility=System -SymbolicName=EPT_S_INVALID_ENTRY -Language=English -EPT_S_INVALID_ENTRY - The entry is invalid. -. - -MessageId=1752 -Severity=Success -Facility=System -SymbolicName=EPT_S_CANT_PERFORM_OP -Language=English -EPT_S_CANT_PERFORM_OP - The server endpoint cannot perform the operation. -. - -MessageId=1753 -Severity=Success -Facility=System -SymbolicName=EPT_S_NOT_REGISTERED -Language=English -EPT_S_NOT_REGISTERED - There are no more endpoints available from the endpoint mapper. -. - -MessageId=1754 -Severity=Success -Facility=System -SymbolicName=RPC_S_NOTHING_TO_EXPORT -Language=English -RPC_S_NOTHING_TO_EXPORT - No interfaces have been exported. -. - -MessageId=1755 -Severity=Success -Facility=System -SymbolicName=RPC_S_INCOMPLETE_NAME -Language=English -RPC_S_INCOMPLETE_NAME - The entry name is incomplete. -. - -MessageId=1756 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_VERS_OPTION -Language=English -RPC_S_INVALID_VERS_OPTION - The version option is invalid. -. - -MessageId=1757 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_MORE_MEMBERS -Language=English -RPC_S_NO_MORE_MEMBERS - There are no more members. -. - -MessageId=1758 -Severity=Success -Facility=System -SymbolicName=RPC_S_NOT_ALL_OBJS_UNEXPORTED -Language=English -RPC_S_NOT_ALL_OBJS_UNEXPORTED - There is nothing to unexport. -. - -MessageId=1759 -Severity=Success -Facility=System -SymbolicName=RPC_S_INTERFACE_NOT_FOUND -Language=English -RPC_S_INTERFACE_NOT_FOUND - The interface was not found. -. - -MessageId=1760 -Severity=Success -Facility=System -SymbolicName=RPC_S_ENTRY_ALREADY_EXISTS -Language=English -RPC_S_ENTRY_ALREADY_EXISTS - The entry already exists. -. - -MessageId=1761 -Severity=Success -Facility=System -SymbolicName=RPC_S_ENTRY_NOT_FOUND -Language=English -RPC_S_ENTRY_NOT_FOUND - The entry is not found. -. - -MessageId=1762 -Severity=Success -Facility=System -SymbolicName=RPC_S_NAME_SERVICE_UNAVAILABLE -Language=English -RPC_S_NAME_SERVICE_UNAVAILABLE - The name service is unavailable. -. - -MessageId=1763 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_NAF_ID -Language=English -RPC_S_INVALID_NAF_ID - The network address family is invalid. -. - -MessageId=1764 -Severity=Success -Facility=System -SymbolicName=RPC_S_CANNOT_SUPPORT -Language=English -RPC_S_CANNOT_SUPPORT - The requested operation is not supported. -. - -MessageId=1765 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_CONTEXT_AVAILABLE -Language=English -RPC_S_NO_CONTEXT_AVAILABLE - No security context is available to allow impersonation. -. - -MessageId=1766 -Severity=Success -Facility=System -SymbolicName=RPC_S_INTERNAL_ERROR -Language=English -RPC_S_INTERNAL_ERROR - An internal error occurred in a remote procedure call (RPC). -. - -MessageId=1767 -Severity=Success -Facility=System -SymbolicName=RPC_S_ZERO_DIVIDE -Language=English -RPC_S_ZERO_DIVIDE - The RPC server attempted an integer division by zero. -. - -MessageId=1768 -Severity=Success -Facility=System -SymbolicName=RPC_S_ADDRESS_ERROR -Language=English -RPC_S_ADDRESS_ERROR - An addressing error occurred in the RPC server. -. - -MessageId=1769 -Severity=Success -Facility=System -SymbolicName=RPC_S_FP_DIV_ZERO -Language=English -RPC_S_FP_DIV_ZERO - A floating-point operation at the RPC server caused a division by zero. -. - -MessageId=1770 -Severity=Success -Facility=System -SymbolicName=RPC_S_FP_UNDERFLOW -Language=English -RPC_S_FP_UNDERFLOW - A floating-point underflow occurred at the RPC server. -. - -MessageId=1771 -Severity=Success -Facility=System -SymbolicName=RPC_S_FP_OVERFLOW -Language=English -RPC_S_FP_OVERFLOW - A floating-point overflow occurred at the RPC server. -. - -MessageId=1772 -Severity=Success -Facility=System -SymbolicName=RPC_X_NO_MORE_ENTRIES -Language=English -RPC_X_NO_MORE_ENTRIES - The list of RPC servers available for the binding of auto handles has been exhausted. -. - -MessageId=1773 -Severity=Success -Facility=System -SymbolicName=RPC_X_SS_CHAR_TRANS_OPEN_FAIL -Language=English -RPC_X_SS_CHAR_TRANS_OPEN_FAIL - Unable to open the character translation table file. -. - -MessageId=1774 -Severity=Success -Facility=System -SymbolicName=RPC_X_SS_CHAR_TRANS_SHORT_FILE -Language=English -RPC_X_SS_CHAR_TRANS_SHORT_FILE - The file containing the character translation table has fewer than 512 bytes. -. - -MessageId=1775 -Severity=Success -Facility=System -SymbolicName=RPC_X_SS_IN_NULL_CONTEXT -Language=English -RPC_X_SS_IN_NULL_CONTEXT - A null context handle was passed from the client to the host during a remote procedure call. -. - -MessageId=1777 -Severity=Success -Facility=System -SymbolicName=RPC_X_SS_CONTEXT_DAMAGED -Language=English -RPC_X_SS_CONTEXT_DAMAGED - The context handle changed during a remote procedure call. -. - -MessageId=1778 -Severity=Success -Facility=System -SymbolicName=RPC_X_SS_HANDLES_MISMATCH -Language=English -RPC_X_SS_HANDLES_MISMATCH - The binding handles passed to a remote procedure call do not match. -. - -MessageId=1779 -Severity=Success -Facility=System -SymbolicName=RPC_X_SS_CANNOT_GET_CALL_HANDLE -Language=English -RPC_X_SS_CANNOT_GET_CALL_HANDLE - The stub is unable to get the remote procedure call handle. -. - -MessageId=1780 -Severity=Success -Facility=System -SymbolicName=RPC_X_NULL_REF_POINTER -Language=English -RPC_X_NULL_REF_POINTER - A null reference pointer was passed to the stub. -. - -MessageId=1781 -Severity=Success -Facility=System -SymbolicName=RPC_X_ENUM_VALUE_OUT_OF_RANGE -Language=English -RPC_X_ENUM_VALUE_OUT_OF_RANGE - The enumeration value is out of range. -. - -MessageId=1782 -Severity=Success -Facility=System -SymbolicName=RPC_X_BYTE_COUNT_TOO_SMALL -Language=English -RPC_X_BYTE_COUNT_TOO_SMALL - The byte count is too small. -. - -MessageId=1783 -Severity=Success -Facility=System -SymbolicName=RPC_X_BAD_STUB_DATA -Language=English -RPC_X_BAD_STUB_DATA - The stub received bad data. -. - -MessageId=1784 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_USER_BUFFER -Language=English -ERROR_INVALID_USER_BUFFER - The supplied user buffer is not valid for the requested operation. -. - -MessageId=1785 -Severity=Success -Facility=System -SymbolicName=ERROR_UNRECOGNIZED_MEDIA -Language=English -ERROR_UNRECOGNIZED_MEDIA - The disk media is not recognized. It may not be formatted. -. - -MessageId=1786 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_TRUST_LSA_SECRET -Language=English -ERROR_NO_TRUST_LSA_SECRET - The workstation does not have a trust secret. -. - -MessageId=1787 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_TRUST_SAM_ACCOUNT -Language=English -ERROR_NO_TRUST_SAM_ACCOUNT - The security database on the server does not have a computer account for this workstation trust relationship. -. - -MessageId=1788 -Severity=Success -Facility=System -SymbolicName=ERROR_TRUSTED_DOMAIN_FAILURE -Language=English -ERROR_TRUSTED_DOMAIN_FAILURE - The trust relationship between the primary domain and the trusted domain failed. -. - -MessageId=1789 -Severity=Success -Facility=System -SymbolicName=ERROR_TRUSTED_RELATIONSHIP_FAILURE -Language=English -ERROR_TRUSTED_RELATIONSHIP_FAILURE - The trust relationship between this workstation and the primary domain failed. -. - -MessageId=1790 -Severity=Success -Facility=System -SymbolicName=ERROR_TRUST_FAILURE -Language=English -ERROR_TRUST_FAILURE - The network logon failed. -. - -MessageId=1791 -Severity=Success -Facility=System -SymbolicName=RPC_S_CALL_IN_PROGRESS -Language=English -RPC_S_CALL_IN_PROGRESS - A remote procedure call is already in progress for this thread. -. - -MessageId=1792 -Severity=Success -Facility=System -SymbolicName=ERROR_NETLOGON_NOT_STARTED -Language=English -ERROR_NETLOGON_NOT_STARTED - An attempt was made to logon, but the network logon service was not started. -. - -MessageId=1793 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCOUNT_EXPIRED -Language=English -ERROR_ACCOUNT_EXPIRED - The user's account has expired. -. - -MessageId=1794 -Severity=Success -Facility=System -SymbolicName=ERROR_REDIRECTOR_HAS_OPEN_HANDLES -Language=English -ERROR_REDIRECTOR_HAS_OPEN_HANDLES - The redirector is in use and cannot be unloaded. -. - -MessageId=1795 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_DRIVER_ALREADY_INSTALLED -Language=English -ERROR_PRINTER_DRIVER_ALREADY_INSTALLED - The specified printer driver is already installed. -. - -MessageId=1796 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_PORT -Language=English -ERROR_UNKNOWN_PORT - The specified port is unknown. -. - -MessageId=1797 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_PRINTER_DRIVER -Language=English -ERROR_UNKNOWN_PRINTER_DRIVER - The printer driver is unknown. -. - -MessageId=1798 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_PRINTPROCESSOR -Language=English -ERROR_UNKNOWN_PRINTPROCESSOR - The print processor is unknown. -. - -MessageId=1799 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_SEPARATOR_FILE -Language=English -ERROR_INVALID_SEPARATOR_FILE - The specified separator file is invalid. -. - -MessageId=1800 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PRIORITY -Language=English -ERROR_INVALID_PRIORITY - The specified priority is invalid. -. - -MessageId=1801 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PRINTER_NAME -Language=English -ERROR_INVALID_PRINTER_NAME - The printer name is invalid. -. - -MessageId=1802 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_ALREADY_EXISTS -Language=English -ERROR_PRINTER_ALREADY_EXISTS - The printer already exists. -. - -MessageId=1803 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PRINTER_COMMAND -Language=English -ERROR_INVALID_PRINTER_COMMAND - The printer command is invalid. -. - -MessageId=1804 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DATATYPE -Language=English -ERROR_INVALID_DATATYPE - The specified datatype is invalid. -. - -MessageId=1805 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_ENVIRONMENT -Language=English -ERROR_INVALID_ENVIRONMENT - The environment specified is invalid. -. - -MessageId=1806 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_MORE_BINDINGS -Language=English -RPC_S_NO_MORE_BINDINGS - There are no more bindings. -. - -MessageId=1807 -Severity=Success -Facility=System -SymbolicName=ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT -Language=English -ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT - The account used is an interdomain trust account. Use your global user account or local user account to access this server. -. - -MessageId=1808 -Severity=Success -Facility=System -SymbolicName=ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT -Language=English -ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT - The account used is a computer account. Use your global user account or local user account to access this server. -. - -MessageId=1809 -Severity=Success -Facility=System -SymbolicName=ERROR_NOLOGON_SERVER_TRUST_ACCOUNT -Language=English -ERROR_NOLOGON_SERVER_TRUST_ACCOUNT - The account used is a server trust account. Use your global user account or local user account to access this server. -. - -MessageId=1810 -Severity=Success -Facility=System -SymbolicName=ERROR_DOMAIN_TRUST_INCONSISTENT -Language=English -ERROR_DOMAIN_TRUST_INCONSISTENT - The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain. -. - -MessageId=1811 -Severity=Success -Facility=System -SymbolicName=ERROR_SERVER_HAS_OPEN_HANDLES -Language=English -ERROR_SERVER_HAS_OPEN_HANDLES - The server is in use and cannot be unloaded. -. - -MessageId=1812 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_DATA_NOT_FOUND -Language=English -ERROR_RESOURCE_DATA_NOT_FOUND - The specified image file did not contain a resource section. -. - -MessageId=1813 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_TYPE_NOT_FOUND -Language=English -ERROR_RESOURCE_TYPE_NOT_FOUND - The specified resource type cannot be found in the image file. -. - -MessageId=1814 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_NAME_NOT_FOUND -Language=English -ERROR_RESOURCE_NAME_NOT_FOUND - The specified resource name cannot be found in the image file. -. - -MessageId=1815 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_LANG_NOT_FOUND -Language=English -ERROR_RESOURCE_LANG_NOT_FOUND - The specified resource language ID cannot be found in the image file. -. - -MessageId=1816 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_ENOUGH_QUOTA -Language=English -ERROR_NOT_ENOUGH_QUOTA - Not enough quota is available to process this command. -. - -MessageId=1817 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_INTERFACES -Language=English -RPC_S_NO_INTERFACES - No interfaces have been registered. -. - -MessageId=1818 -Severity=Success -Facility=System -SymbolicName=RPC_S_CALL_CANCELLED -Language=English -RPC_S_CALL_CANCELLED - The remote procedure call was cancelled. -. - -MessageId=1819 -Severity=Success -Facility=System -SymbolicName=RPC_S_BINDING_INCOMPLETE -Language=English -RPC_S_BINDING_INCOMPLETE - The binding handle does not contain all required information. -. - -MessageId=1820 -Severity=Success -Facility=System -SymbolicName=RPC_S_COMM_FAILURE -Language=English -RPC_S_COMM_FAILURE - A communications failure occurred during a remote procedure call. -. - -MessageId=1821 -Severity=Success -Facility=System -SymbolicName=RPC_S_UNSUPPORTED_AUTHN_LEVEL -Language=English -RPC_S_UNSUPPORTED_AUTHN_LEVEL - The requested authentication level is not supported. -. - -MessageId=1822 -Severity=Success -Facility=System -SymbolicName=RPC_S_NO_PRINC_NAME -Language=English -RPC_S_NO_PRINC_NAME - No principal name registered. -. - -MessageId=1823 -Severity=Success -Facility=System -SymbolicName=RPC_S_NOT_RPC_ERROR -Language=English -RPC_S_NOT_RPC_ERROR - The error specified is not a valid Windows RPC error code. -. - -MessageId=1824 -Severity=Success -Facility=System -SymbolicName=RPC_S_UUID_LOCAL_ONLY -Language=English -RPC_S_UUID_LOCAL_ONLY - A UUID that is valid only on this computer has been allocated. -. - -MessageId=1825 -Severity=Success -Facility=System -SymbolicName=RPC_S_SEC_PKG_ERROR -Language=English -RPC_S_SEC_PKG_ERROR - A security package specific error occurred. -. - -MessageId=1826 -Severity=Success -Facility=System -SymbolicName=RPC_S_NOT_CANCELLED -Language=English -RPC_S_NOT_CANCELLED - Thread is not canceled. -. - -MessageId=1827 -Severity=Success -Facility=System -SymbolicName=RPC_X_INVALID_ES_ACTION -Language=English -RPC_X_INVALID_ES_ACTION - Invalid operation on the encoding/decoding handle. -. - -MessageId=1828 -Severity=Success -Facility=System -SymbolicName=RPC_X_WRONG_ES_VERSION -Language=English -RPC_X_WRONG_ES_VERSION - Incompatible version of the serializing package. -. - -MessageId=1829 -Severity=Success -Facility=System -SymbolicName=RPC_X_WRONG_STUB_VERSION -Language=English -RPC_X_WRONG_STUB_VERSION - Incompatible version of the RPC stub. -. - -MessageId=1830 -Severity=Success -Facility=System -SymbolicName=RPC_X_INVALID_PIPE_OBJECT -Language=English -RPC_X_INVALID_PIPE_OBJECT - The RPC pipe object is invalid or corrupted. -. - -MessageId=1831 -Severity=Success -Facility=System -SymbolicName=RPC_X_WRONG_PIPE_ORDER -Language=English -RPC_X_WRONG_PIPE_ORDER - An invalid operation was attempted on an RPC pipe object. -. - -MessageId=1832 -Severity=Success -Facility=System -SymbolicName=RPC_X_WRONG_PIPE_VERSION -Language=English -RPC_X_WRONG_PIPE_VERSION - Unsupported RPC pipe version. -. - -MessageId=1898 -Severity=Success -Facility=System -SymbolicName=RPC_S_GROUP_MEMBER_NOT_FOUND -Language=English -RPC_S_GROUP_MEMBER_NOT_FOUND - The group member was not found. -. - -MessageId=1899 -Severity=Success -Facility=System -SymbolicName=EPT_S_CANT_CREATE -Language=English -EPT_S_CANT_CREATE - The endpoint mapper database entry could not be created. -. - -MessageId=1900 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_OBJECT -Language=English -RPC_S_INVALID_OBJECT - The object universal unique identifier (UUID) is the nil UUID. -. - -MessageId=1901 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_TIME -Language=English -ERROR_INVALID_TIME - The specified time is invalid. -. - -MessageId=1902 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FORM_NAME -Language=English -ERROR_INVALID_FORM_NAME - The specified form name is invalid. -. - -MessageId=1903 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_FORM_SIZE -Language=English -ERROR_INVALID_FORM_SIZE - The specified form size is invalid. -. - -MessageId=1904 -Severity=Success -Facility=System -SymbolicName=ERROR_ALREADY_WAITING -Language=English -ERROR_ALREADY_WAITING - The specified printer handle is already being waited on -. - -MessageId=1905 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_DELETED -Language=English -ERROR_PRINTER_DELETED - The specified printer has been deleted. -. - -MessageId=1906 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PRINTER_STATE -Language=English -ERROR_INVALID_PRINTER_STATE - The state of the printer is invalid. -. - -MessageId=1907 -Severity=Success -Facility=System -SymbolicName=ERROR_PASSWORD_MUST_CHANGE -Language=English -ERROR_PASSWORD_MUST_CHANGE - The user's password must be changed before logging on the first time. -. - -MessageId=1908 -Severity=Success -Facility=System -SymbolicName=ERROR_DOMAIN_CONTROLLER_NOT_FOUND -Language=English -ERROR_DOMAIN_CONTROLLER_NOT_FOUND - Could not find the domain controller for this domain. -. - -MessageId=1909 -Severity=Success -Facility=System -SymbolicName=ERROR_ACCOUNT_LOCKED_OUT -Language=English -ERROR_ACCOUNT_LOCKED_OUT - The referenced account is currently locked out and may not be used to log on. -. - -MessageId=1910 -Severity=Success -Facility=System -SymbolicName=OR_INVALID_OXID -Language=English -OR_INVALID_OXID - The object exporter specified was not found. -. - -MessageId=1911 -Severity=Success -Facility=System -SymbolicName=OR_INVALID_OID -Language=English -OR_INVALID_OID - The object specified was not found. -. - -MessageId=1912 -Severity=Success -Facility=System -SymbolicName=OR_INVALID_SET -Language=English -OR_INVALID_SET - The object resolver set specified was not found. -. - -MessageId=1913 -Severity=Success -Facility=System -SymbolicName=RPC_S_SEND_INCOMPLETE -Language=English -RPC_S_SEND_INCOMPLETE - Some data remains to be sent in the request buffer. -. - -MessageId=1914 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_ASYNC_HANDLE -Language=English -RPC_S_INVALID_ASYNC_HANDLE - Invalid asynchronous remote procedure call handle. -. - -MessageId=1915 -Severity=Success -Facility=System -SymbolicName=RPC_S_INVALID_ASYNC_CALL -Language=English -RPC_S_INVALID_ASYNC_CALL - Invalid asynchronous RPC call handle for this operation. -. - -MessageId=1916 -Severity=Success -Facility=System -SymbolicName=RPC_X_PIPE_CLOSED -Language=English -RPC_X_PIPE_CLOSED - The RPC pipe object has already been closed. -. - -MessageId=1917 -Severity=Success -Facility=System -SymbolicName=RPC_X_PIPE_DISCIPLINE_ERROR -Language=English -RPC_X_PIPE_DISCIPLINE_ERROR - The RPC call completed before all pipes were processed. -. - -MessageId=1918 -Severity=Success -Facility=System -SymbolicName=RPC_X_PIPE_EMPTY -Language=English -RPC_X_PIPE_EMPTY - No more data is available from the RPC pipe. -. - -MessageId=1919 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SITENAME -Language=English -ERROR_NO_SITENAME - No site name is available for this machine. -. - -MessageId=1920 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_ACCESS_FILE -Language=English -ERROR_CANT_ACCESS_FILE - The file cannot be accessed by the system. -. - -MessageId=1921 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_RESOLVE_FILENAME -Language=English -ERROR_CANT_RESOLVE_FILENAME - The name of the file cannot be resolved by the system. -. - -MessageId=1922 -Severity=Success -Facility=System -SymbolicName=RPC_S_ENTRY_TYPE_MISMATCH -Language=English -RPC_S_ENTRY_TYPE_MISMATCH - The entry is not of the expected type. -. - -MessageId=1923 -Severity=Success -Facility=System -SymbolicName=RPC_S_NOT_ALL_OBJS_EXPORTED -Language=English -RPC_S_NOT_ALL_OBJS_EXPORTED - Not all object UUIDs could be exported to the specified entry. -. - -MessageId=1924 -Severity=Success -Facility=System -SymbolicName=RPC_S_INTERFACE_NOT_EXPORTED -Language=English -RPC_S_INTERFACE_NOT_EXPORTED - Interface could not be exported to the specified entry. -. - -MessageId=1925 -Severity=Success -Facility=System -SymbolicName=RPC_S_PROFILE_NOT_ADDED -Language=English -RPC_S_PROFILE_NOT_ADDED - The specified profile entry could not be added. -. - -MessageId=1926 -Severity=Success -Facility=System -SymbolicName=RPC_S_PRF_ELT_NOT_ADDED -Language=English -RPC_S_PRF_ELT_NOT_ADDED - The specified profile element could not be added. -. - -MessageId=1927 -Severity=Success -Facility=System -SymbolicName=RPC_S_PRF_ELT_NOT_REMOVED -Language=English -RPC_S_PRF_ELT_NOT_REMOVED - The specified profile element could not be removed. -. - -MessageId=1928 -Severity=Success -Facility=System -SymbolicName=RPC_S_GRP_ELT_NOT_ADDED -Language=English -RPC_S_GRP_ELT_NOT_ADDED - The group element could not be added. -. - -MessageId=1929 -Severity=Success -Facility=System -SymbolicName=RPC_S_GRP_ELT_NOT_REMOVED -Language=English -RPC_S_GRP_ELT_NOT_REMOVED - The group element could not be removed. -. - -MessageId=1930 -Severity=Success -Facility=System -SymbolicName=ERROR_KM_DRIVER_BLOCKED -Language=English -ERROR_KM_DRIVER_BLOCKED - The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers. -. - -MessageId=1931 -Severity=Success -Facility=System -SymbolicName=ERROR_CONTEXT_EXPIRED -Language=English -ERROR_CONTEXT_EXPIRED - The context has expired and can no longer be used. -. - -MessageId=1932 -Severity=Success -Facility=System -SymbolicName=ERROR_PER_USER_TRUST_QUOTA_EXCEEDED -Language=English -ERROR_PER_USER_TRUST_QUOTA_EXCEEDED - The current user's delegated trust creation quota has been exceeded. -. - -MessageId=1933 -Severity=Success -Facility=System -SymbolicName=ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED -Language=English -ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED - The total delegated trust creation quota has been exceeded. -. - -MessageId=1934 -Severity=Success -Facility=System -SymbolicName=ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED -Language=English -ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED - The current user's delegated trust deletion quota has been exceeded. -. - -MessageId=2000 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PIXEL_FORMAT -Language=English -ERROR_INVALID_PIXEL_FORMAT - The pixel format is invalid. -. - -MessageId=2001 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_DRIVER -Language=English -ERROR_BAD_DRIVER - The specified driver is invalid. -. - -MessageId=2002 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_WINDOW_STYLE -Language=English -ERROR_INVALID_WINDOW_STYLE - The window style or class attribute is invalid for this operation. -. - -MessageId=2003 -Severity=Success -Facility=System -SymbolicName=ERROR_METAFILE_NOT_SUPPORTED -Language=English -ERROR_METAFILE_NOT_SUPPORTED - The requested metafile operation is not supported. -. - -MessageId=2004 -Severity=Success -Facility=System -SymbolicName=ERROR_TRANSFORM_NOT_SUPPORTED -Language=English -ERROR_TRANSFORM_NOT_SUPPORTED - The requested transformation operation is not supported. -. - -MessageId=2005 -Severity=Success -Facility=System -SymbolicName=ERROR_CLIPPING_NOT_SUPPORTED -Language=English -ERROR_CLIPPING_NOT_SUPPORTED - The requested clipping operation is not supported. -. - -MessageId=2010 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_CMM -Language=English -ERROR_INVALID_CMM - The specified color management module is invalid. -. - -MessageId=2011 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PROFILE -Language=English -ERROR_INVALID_PROFILE - The specified color profile is invalid. -. - -MessageId=2012 -Severity=Success -Facility=System -SymbolicName=ERROR_TAG_NOT_FOUND -Language=English -ERROR_TAG_NOT_FOUND - The specified tag was not found. -. - -MessageId=2013 -Severity=Success -Facility=System -SymbolicName=ERROR_TAG_NOT_PRESENT -Language=English -ERROR_TAG_NOT_PRESENT - A required tag is not present. -. - -MessageId=2014 -Severity=Success -Facility=System -SymbolicName=ERROR_DUPLICATE_TAG -Language=English -ERROR_DUPLICATE_TAG - The specified tag is already present. -. - -MessageId=2015 -Severity=Success -Facility=System -SymbolicName=ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE -Language=English -ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE - The specified color profile is not associated with any device. -. - -MessageId=2016 -Severity=Success -Facility=System -SymbolicName=ERROR_PROFILE_NOT_FOUND -Language=English -ERROR_PROFILE_NOT_FOUND - The specified color profile was not found. -. - -MessageId=2017 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_COLORSPACE -Language=English -ERROR_INVALID_COLORSPACE - The specified color space is invalid. -. - -MessageId=2018 -Severity=Success -Facility=System -SymbolicName=ERROR_ICM_NOT_ENABLED -Language=English -ERROR_ICM_NOT_ENABLED - Image Color Management is not enabled. -. - -MessageId=2019 -Severity=Success -Facility=System -SymbolicName=ERROR_DELETING_ICM_XFORM -Language=English -ERROR_DELETING_ICM_XFORM - There was an error while deleting the color transform. -. - -MessageId=2020 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_TRANSFORM -Language=English -ERROR_INVALID_TRANSFORM - The specified color transform is invalid. -. - -MessageId=2021 -Severity=Success -Facility=System -SymbolicName=ERROR_COLORSPACE_MISMATCH -Language=English -ERROR_COLORSPACE_MISMATCH - The specified transform does not match the bitmap's color space. -. - -MessageId=2022 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_COLORINDEX -Language=English -ERROR_INVALID_COLORINDEX - The specified named color index is not present in the profile. -. - -MessageId=2108 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTED_OTHER_PASSWORD -Language=English -ERROR_CONNECTED_OTHER_PASSWORD - The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified. -. - -MessageId=2109 -Severity=Success -Facility=System -SymbolicName=ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT -Language=English -ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT - The network connection was made successfully using default credentials. -. - -MessageId=2202 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_USERNAME -Language=English -ERROR_BAD_USERNAME - The specified username is invalid. -. - -MessageId=2250 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_CONNECTED -Language=English -ERROR_NOT_CONNECTED - This network connection does not exist. -. - -MessageId=2401 -Severity=Success -Facility=System -SymbolicName=ERROR_OPEN_FILES -Language=English -ERROR_OPEN_FILES - This network connection has files open or requests pending. -. - -MessageId=2402 -Severity=Success -Facility=System -SymbolicName=ERROR_ACTIVE_CONNECTIONS -Language=English -ERROR_ACTIVE_CONNECTIONS - Active connections still exist. -. - -MessageId=2404 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_IN_USE -Language=English -ERROR_DEVICE_IN_USE - The device is in use by an active process and cannot be disconnected. -. - -MessageId=3000 -Severity=Success -Facility=System -SymbolicName=ERROR_UNKNOWN_PRINT_MONITOR -Language=English -ERROR_UNKNOWN_PRINT_MONITOR - The specified print monitor is unknown. -. - -MessageId=3001 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_DRIVER_IN_USE -Language=English -ERROR_PRINTER_DRIVER_IN_USE - The specified printer driver is currently in use. -. - -MessageId=3002 -Severity=Success -Facility=System -SymbolicName=ERROR_SPOOL_FILE_NOT_FOUND -Language=English -ERROR_SPOOL_FILE_NOT_FOUND - The spool file was not found. -. - -MessageId=3003 -Severity=Success -Facility=System -SymbolicName=ERROR_SPL_NO_STARTDOC -Language=English -ERROR_SPL_NO_STARTDOC - A StartDocPrinter call was not issued. -. - -MessageId=3004 -Severity=Success -Facility=System -SymbolicName=ERROR_SPL_NO_ADDJOB -Language=English -ERROR_SPL_NO_ADDJOB - An AddJob call was not issued. -. - -MessageId=3005 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED -Language=English -ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED - The specified print processor has already been installed. -. - -MessageId=3006 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINT_MONITOR_ALREADY_INSTALLED -Language=English -ERROR_PRINT_MONITOR_ALREADY_INSTALLED - The specified print monitor has already been installed. -. - -MessageId=3007 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_PRINT_MONITOR -Language=English -ERROR_INVALID_PRINT_MONITOR - The specified print monitor does not have the required functions. -. - -MessageId=3008 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINT_MONITOR_IN_USE -Language=English -ERROR_PRINT_MONITOR_IN_USE - The specified print monitor is currently in use. -. - -MessageId=3009 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_HAS_JOBS_QUEUED -Language=English -ERROR_PRINTER_HAS_JOBS_QUEUED - The requested operation is not allowed when there are jobs queued to the printer. -. - -MessageId=3010 -Severity=Success -Facility=System -SymbolicName=ERROR_SUCCESS_REBOOT_REQUIRED -Language=English -ERROR_SUCCESS_REBOOT_REQUIRED - The requested operation is successful. Changes will not be effective until the system is rebooted. -. - -MessageId=3011 -Severity=Success -Facility=System -SymbolicName=ERROR_SUCCESS_RESTART_REQUIRED -Language=English -ERROR_SUCCESS_RESTART_REQUIRED - The requested operation is successful. Changes will not be effective until the service is restarted. -. - -MessageId=3012 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_NOT_FOUND -Language=English -ERROR_PRINTER_NOT_FOUND - No printers were found. -. - -MessageId=3013 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_DRIVER_WARNED -Language=English -ERROR_PRINTER_DRIVER_WARNED - The printer driver is known to be unreliable. -. - -MessageId=3014 -Severity=Success -Facility=System -SymbolicName=ERROR_PRINTER_DRIVER_BLOCKED -Language=English -ERROR_PRINTER_DRIVER_BLOCKED - The printer driver is known to harm the system. -. - -MessageId=3100 -Severity=Success -Facility=System -SymbolicName=ERROR_XML_UNDEFINED_ENTITY -Language=English -ERROR_XML_UNDEFINED_ENTITY - The XML contains an entity reference to an undefined entity. -. - -MessageId=3101 -Severity=Success -Facility=System -SymbolicName=ERROR_XML_MALFORMED_ENTITY -Language=English -ERROR_XML_MALFORMED_ENTITY - The XML contains a malformed entity reference. -. - -MessageId=3102 -Severity=Success -Facility=System -SymbolicName=ERROR_XML_CHAR_NOT_IN_RANGE -Language=English -ERROR_XML_CHAR_NOT_IN_RANGE - The XML contains a character which is not permitted in XML. -. - -MessageId=3200 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_EXTERNAL_PROXY -Language=English -ERROR_PCM_COMPILER_DUPLICATE_EXTERNAL_PROXY - The manifest contained a duplicate definition for external proxy stub %1 at (%1:%2,%3) -. - -MessageId=3201 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_ASSEMBLY_REFERENCE -Language=English -ERROR_PCM_COMPILER_DUPLICATE_ASSEMBLY_REFERENCE - The manifest already contains a reference to %4 - a second reference was found at (%1:%2,%3) -. - -MessageId=3202 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_INVALID_ASSEMBLY_REFERENCE -Language=English -ERROR_PCM_COMPILER_INVALID_ASSEMBLY_REFERENCE - The assembly reference at (%1:%2,%3) is invalid. -. - -MessageId=3203 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_INVALID_ASSEMBLY_DEFINITION -Language=English -ERROR_PCM_COMPILER_INVALID_ASSEMBLY_DEFINITION - The assembly definition at (%1:%2,%3) is invalid. -. - -MessageId=3204 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_WINDOW_CLASS -Language=English -ERROR_PCM_COMPILER_DUPLICATE_WINDOW_CLASS - The manifest already contained the window class %4, found a second declaration at (%1:%2,%3) -. - -MessageId=3205 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_PROGID -Language=English -ERROR_PCM_COMPILER_DUPLICATE_PROGID - The manifest already declared the progId %4, found a second declaration at (%1:%2,%3) -. - -MessageId=3206 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_NOINHERIT -Language=English -ERROR_PCM_COMPILER_DUPLICATE_NOINHERIT - Only one noInherit tag may be present in a manifest, found a second tag at (%1:%2,%3) -. - -MessageId=3207 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_NOINHERITABLE -Language=English -ERROR_PCM_COMPILER_DUPLICATE_NOINHERITABLE - Only one noInheritable tag may be present in a manifest, found a second tag at (%1:%2,%3) -. - -MessageId=3208 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_COM_CLASS -Language=English -ERROR_PCM_COMPILER_DUPLICATE_COM_CLASS - The manifest contained a duplicate declaration of COM class %4 at (%1:%2,%3) -. - -MessageId=3209 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_FILE_NAME -Language=English -ERROR_PCM_COMPILER_DUPLICATE_FILE_NAME - The manifest already declared the file %4, a second definition was found at (%1:%2,%3) -. - -MessageId=3210 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_CLR_SURROGATE -Language=English -ERROR_PCM_COMPILER_DUPLICATE_CLR_SURROGATE - CLR surrogate %1 was already defined, second definition at (%1:%2,%3) is invalid. -. - -MessageId=3211 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_TYPE_LIBRARY -Language=English -ERROR_PCM_COMPILER_DUPLICATE_TYPE_LIBRARY - Type library %1 was already defined, second definition at (%1:%2,%3) is invalid. -. - -MessageId=3212 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_PROXY_STUB -Language=English -ERROR_PCM_COMPILER_DUPLICATE_PROXY_STUB - Proxy stub definition %1 was already defined, second definition at (%1:%2,%3) is invalid. -. - -MessageId=3213 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_CATEGORY_NAME -Language=English -ERROR_PCM_COMPILER_DUPLICATE_CATEGORY_NAME - Category friendly name %4 was already used, second definition was found at (%1:%2,%3) is invalid. -. - -MessageId=3214 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_TOP_LEVEL_IDENTITY_FOUND -Language=English -ERROR_PCM_COMPILER_DUPLICATE_TOP_LEVEL_IDENTITY_FOUND - Only one top-level assemblyIdentity tag may be present in a manifest. A second tag with identity %4 was found at (%1:%2,%3) -. - -MessageId=3215 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_UNKNOWN_ROOT_ELEMENT -Language=English -ERROR_PCM_COMPILER_UNKNOWN_ROOT_ELEMENT - The root element for a manifest found at (%1:%2,%3) was not expected or was of the wrong version. -. - -MessageId=3216 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_INVALID_ELEMENT -Language=English -ERROR_PCM_COMPILER_INVALID_ELEMENT - The element found at (%1:%2,%3) was not expected according to the manifest schema. -. - -MessageId=3217 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_MISSING_REQUIRED_ATTRIBUTE -Language=English -ERROR_PCM_COMPILER_MISSING_REQUIRED_ATTRIBUTE - The element found at (%1:%2,%3) was missing the required attribute '%4'. See the manifest schema for more information -. - -MessageId=3218 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_INVALID_ATTRIBUTE_VALUE -Language=English -ERROR_PCM_COMPILER_INVALID_ATTRIBUTE_VALUE - The attribute value %4 at (%1:%2,%3) was invalid according to the schema. -. - -MessageId=3219 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_COMPILER_UNEXPECTED_PCDATA -Language=English -ERROR_PCM_COMPILER_UNEXPECTED_PCDATA - PCDATA or CDATA found at (%1:%2,%3) in the source document was not expected in the parent element %4. -. - -MessageId=3220 -Severity=Success -Facility=System -SymbolicName=ERROR_PCM_DUPLICATE_STRING_TABLE_ENT -Language=English -ERROR_PCM_DUPLICATE_STRING_TABLE_ENT - The string table entry with culture %4, name %5, and value '%6' at (%1:%2,%3) duplicated a previous entry. -. - -MessageId=4000 -Severity=Success -Facility=System -SymbolicName=ERROR_WINS_INTERNAL -Language=English -ERROR_WINS_INTERNAL - WINS encountered an error while processing the command. -. - -MessageId=4001 -Severity=Success -Facility=System -SymbolicName=ERROR_CAN_NOT_DEL_LOCAL_WINS -Language=English -ERROR_CAN_NOT_DEL_LOCAL_WINS - The local WINS cannot be deleted. -. - -MessageId=4002 -Severity=Success -Facility=System -SymbolicName=ERROR_STATIC_INIT -Language=English -ERROR_STATIC_INIT - The importation from the file failed. -. - -MessageId=4003 -Severity=Success -Facility=System -SymbolicName=ERROR_INC_BACKUP -Language=English -ERROR_INC_BACKUP - The backup failed. Was a full backup done before? -. - -MessageId=4004 -Severity=Success -Facility=System -SymbolicName=ERROR_FULL_BACKUP -Language=English -ERROR_FULL_BACKUP - The backup failed. Check the directory to which you are backing the database. -. - -MessageId=4005 -Severity=Success -Facility=System -SymbolicName=ERROR_REC_NON_EXISTENT -Language=English -ERROR_REC_NON_EXISTENT - The name does not exist in the WINS database. -. - -MessageId=4006 -Severity=Success -Facility=System -SymbolicName=ERROR_RPL_NOT_ALLOWED -Language=English -ERROR_RPL_NOT_ALLOWED - Replication with a nonconfigured partner is not allowed. -. - -MessageId=4100 -Severity=Success -Facility=System -SymbolicName=ERROR_DHCP_ADDRESS_CONFLICT -Language=English -ERROR_DHCP_ADDRESS_CONFLICT - The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address. -. - -MessageId=4200 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_GUID_NOT_FOUND -Language=English -ERROR_WMI_GUID_NOT_FOUND - The GUID passed was not recognized as valid by a WMI data provider. -. - -MessageId=4201 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_INSTANCE_NOT_FOUND -Language=English -ERROR_WMI_INSTANCE_NOT_FOUND - The instance name passed was not recognized as valid by a WMI data provider. -. - -MessageId=4202 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_ITEMID_NOT_FOUND -Language=English -ERROR_WMI_ITEMID_NOT_FOUND - The data item ID passed was not recognized as valid by a WMI data provider. -. - -MessageId=4203 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_TRY_AGAIN -Language=English -ERROR_WMI_TRY_AGAIN - The WMI request could not be completed and should be retried. -. - -MessageId=4204 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_DP_NOT_FOUND -Language=English -ERROR_WMI_DP_NOT_FOUND - The WMI data provider could not be located. -. - -MessageId=4205 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_UNRESOLVED_INSTANCE_REF -Language=English -ERROR_WMI_UNRESOLVED_INSTANCE_REF - The WMI data provider references an instance set that has not been registered. -. - -MessageId=4206 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_ALREADY_ENABLED -Language=English -ERROR_WMI_ALREADY_ENABLED - The WMI data block or event notification has already been enabled. -. - -MessageId=4207 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_GUID_DISCONNECTED -Language=English -ERROR_WMI_GUID_DISCONNECTED - The WMI data block is no longer available. -. - -MessageId=4208 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_SERVER_UNAVAILABLE -Language=English -ERROR_WMI_SERVER_UNAVAILABLE - The WMI data service is not available. -. - -MessageId=4209 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_DP_FAILED -Language=English -ERROR_WMI_DP_FAILED - The WMI data provider failed to carry out the request. -. - -MessageId=4210 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_INVALID_MOF -Language=English -ERROR_WMI_INVALID_MOF - The WMI MOF information is not valid. -. - -MessageId=4211 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_INVALID_REGINFO -Language=English -ERROR_WMI_INVALID_REGINFO - The WMI registration information is not valid. -. - -MessageId=4212 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_ALREADY_DISABLED -Language=English -ERROR_WMI_ALREADY_DISABLED - The WMI data block or event notification has already been disabled. -. - -MessageId=4213 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_READ_ONLY -Language=English -ERROR_WMI_READ_ONLY - The WMI data item or data block is read only. -. - -MessageId=4214 -Severity=Success -Facility=System -SymbolicName=ERROR_WMI_SET_FAILURE -Language=English -ERROR_WMI_SET_FAILURE - The WMI data item or data block could not be changed. -. - -MessageId=4300 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MEDIA -Language=English -ERROR_INVALID_MEDIA - The media identifier does not represent a valid medium. -. - -MessageId=4301 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_LIBRARY -Language=English -ERROR_INVALID_LIBRARY - The library identifier does not represent a valid library. -. - -MessageId=4302 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_MEDIA_POOL -Language=English -ERROR_INVALID_MEDIA_POOL - The media pool identifier does not represent a valid media pool. -. - -MessageId=4303 -Severity=Success -Facility=System -SymbolicName=ERROR_DRIVE_MEDIA_MISMATCH -Language=English -ERROR_DRIVE_MEDIA_MISMATCH - The drive and medium are not compatible or exist in different libraries. -. - -MessageId=4304 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIA_OFFLINE -Language=English -ERROR_MEDIA_OFFLINE - The medium currently exists in an offline library and must be online to perform this operation. -. - -MessageId=4305 -Severity=Success -Facility=System -SymbolicName=ERROR_LIBRARY_OFFLINE -Language=English -ERROR_LIBRARY_OFFLINE - The operation cannot be performed on an offline library. -. - -MessageId=4306 -Severity=Success -Facility=System -SymbolicName=ERROR_EMPTY -Language=English -ERROR_EMPTY - The library, drive, or media pool is empty. -. - -MessageId=4307 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_EMPTY -Language=English -ERROR_NOT_EMPTY - The library, drive, or media pool must be empty to perform this operation. -. - -MessageId=4308 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIA_UNAVAILABLE -Language=English -ERROR_MEDIA_UNAVAILABLE - No media is currently available in this media pool or library. -. - -MessageId=4309 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_DISABLED -Language=English -ERROR_RESOURCE_DISABLED - A resource required for this operation is disabled. -. - -MessageId=4310 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_CLEANER -Language=English -ERROR_INVALID_CLEANER - The media identifier does not represent a valid cleaner. -. - -MessageId=4311 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_CLEAN -Language=English -ERROR_UNABLE_TO_CLEAN - The drive cannot be cleaned or does not support cleaning. -. - -MessageId=4312 -Severity=Success -Facility=System -SymbolicName=ERROR_OBJECT_NOT_FOUND -Language=English -ERROR_OBJECT_NOT_FOUND - The object identifier does not represent a valid object. -. - -MessageId=4313 -Severity=Success -Facility=System -SymbolicName=ERROR_DATABASE_FAILURE -Language=English -ERROR_DATABASE_FAILURE - Unable to read from or write to the database. -. - -MessageId=4314 -Severity=Success -Facility=System -SymbolicName=ERROR_DATABASE_FULL -Language=English -ERROR_DATABASE_FULL - The database is full. -. - -MessageId=4315 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIA_INCOMPATIBLE -Language=English -ERROR_MEDIA_INCOMPATIBLE - The medium is not compatible with the device or media pool. -. - -MessageId=4316 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_NOT_PRESENT -Language=English -ERROR_RESOURCE_NOT_PRESENT - The resource required for this operation does not exist. -. - -MessageId=4317 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_OPERATION -Language=English -ERROR_INVALID_OPERATION - The operation identifier is not valid. -. - -MessageId=4318 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIA_NOT_AVAILABLE -Language=English -ERROR_MEDIA_NOT_AVAILABLE - The media is not mounted or ready for use. -. - -MessageId=4319 -Severity=Success -Facility=System -SymbolicName=ERROR_DEVICE_NOT_AVAILABLE -Language=English -ERROR_DEVICE_NOT_AVAILABLE - The device is not ready for use. -. - -MessageId=4320 -Severity=Success -Facility=System -SymbolicName=ERROR_REQUEST_REFUSED -Language=English -ERROR_REQUEST_REFUSED - The operator or administrator has refused the request. -. - -MessageId=4321 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_DRIVE_OBJECT -Language=English -ERROR_INVALID_DRIVE_OBJECT - The drive identifier does not represent a valid drive. -. - -MessageId=4322 -Severity=Success -Facility=System -SymbolicName=ERROR_LIBRARY_FULL -Language=English -ERROR_LIBRARY_FULL - Library is full. No slot is available for use. -. - -MessageId=4323 -Severity=Success -Facility=System -SymbolicName=ERROR_MEDIUM_NOT_ACCESSIBLE -Language=English -ERROR_MEDIUM_NOT_ACCESSIBLE - The transport cannot access the medium. -. - -MessageId=4324 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_LOAD_MEDIUM -Language=English -ERROR_UNABLE_TO_LOAD_MEDIUM - Unable to load the medium into the drive. -. - -MessageId=4325 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_INVENTORY_DRIVE -Language=English -ERROR_UNABLE_TO_INVENTORY_DRIVE - Unable to retrieve status about the drive. -. - -MessageId=4326 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_INVENTORY_SLOT -Language=English -ERROR_UNABLE_TO_INVENTORY_SLOT - Unable to retrieve status about the slot. -. - -MessageId=4327 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_INVENTORY_TRANSPORT -Language=English -ERROR_UNABLE_TO_INVENTORY_TRANSPORT - Unable to retrieve status about the transport. -. - -MessageId=4328 -Severity=Success -Facility=System -SymbolicName=ERROR_TRANSPORT_FULL -Language=English -ERROR_TRANSPORT_FULL - Cannot use the transport because it is already in use. -. - -MessageId=4329 -Severity=Success -Facility=System -SymbolicName=ERROR_CONTROLLING_IEPORT -Language=English -ERROR_CONTROLLING_IEPORT - Unable to open or close the inject/eject port. -. - -MessageId=4330 -Severity=Success -Facility=System -SymbolicName=ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA -Language=English -ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA - Unable to eject the media because it is in a drive. -. - -MessageId=4331 -Severity=Success -Facility=System -SymbolicName=ERROR_CLEANER_SLOT_SET -Language=English -ERROR_CLEANER_SLOT_SET - A cleaner slot is already reserved. -. - -MessageId=4332 -Severity=Success -Facility=System -SymbolicName=ERROR_CLEANER_SLOT_NOT_SET -Language=English -ERROR_CLEANER_SLOT_NOT_SET - A cleaner slot is not reserved. -. - -MessageId=4333 -Severity=Success -Facility=System -SymbolicName=ERROR_CLEANER_CARTRIDGE_SPENT -Language=English -ERROR_CLEANER_CARTRIDGE_SPENT - The cleaner cartridge has performed the maximum number of drive cleanings. -. - -MessageId=4334 -Severity=Success -Facility=System -SymbolicName=ERROR_UNEXPECTED_OMID -Language=English -ERROR_UNEXPECTED_OMID - Unexpected on-medium identifier. -. - -MessageId=4335 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_DELETE_LAST_ITEM -Language=English -ERROR_CANT_DELETE_LAST_ITEM - The last remaining item in this group or resource cannot be deleted. -. - -MessageId=4336 -Severity=Success -Facility=System -SymbolicName=ERROR_MESSAGE_EXCEEDS_MAX_SIZE -Language=English -ERROR_MESSAGE_EXCEEDS_MAX_SIZE - The message provided exceeds the maximum size allowed for this parameter. -. - -MessageId=4337 -Severity=Success -Facility=System -SymbolicName=ERROR_VOLUME_CONTAINS_SYS_FILES -Language=English -ERROR_VOLUME_CONTAINS_SYS_FILES - The volume contains system or paging files. -. - -MessageId=4338 -Severity=Success -Facility=System -SymbolicName=ERROR_INDIGENOUS_TYPE -Language=English -ERROR_INDIGENOUS_TYPE - The media type cannot be removed from this library since at least one drive in the library reports it can support this media type. -. - -MessageId=4339 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_SUPPORTING_DRIVES -Language=English -ERROR_NO_SUPPORTING_DRIVES - This offline media cannot be mounted on this system since no enabled drives are present which can be used. -. - -MessageId=4340 -Severity=Success -Facility=System -SymbolicName=ERROR_CLEANER_CARTRIDGE_INSTALLED -Language=English -ERROR_CLEANER_CARTRIDGE_INSTALLED - A cleaner cartridge is present in the tape library. -. - -MessageId=4350 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_OFFLINE -Language=English -ERROR_FILE_OFFLINE - The remote storage service was not able to recall the file. -. - -MessageId=4351 -Severity=Success -Facility=System -SymbolicName=ERROR_REMOTE_STORAGE_NOT_ACTIVE -Language=English -ERROR_REMOTE_STORAGE_NOT_ACTIVE - The remote storage service is not operational at this time. -. - -MessageId=4352 -Severity=Success -Facility=System -SymbolicName=ERROR_REMOTE_STORAGE_MEDIA_ERROR -Language=English -ERROR_REMOTE_STORAGE_MEDIA_ERROR - The remote storage service encountered a media error. -. - -MessageId=4390 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_A_REPARSE_POINT -Language=English -ERROR_NOT_A_REPARSE_POINT - The file or directory is not a reparse point. -. - -MessageId=4391 -Severity=Success -Facility=System -SymbolicName=ERROR_REPARSE_ATTRIBUTE_CONFLICT -Language=English -ERROR_REPARSE_ATTRIBUTE_CONFLICT - The reparse point attribute cannot be set because it conflicts with an existing attribute. -. - -MessageId=4392 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_REPARSE_DATA -Language=English -ERROR_INVALID_REPARSE_DATA - The data present in the reparse point buffer is invalid. -. - -MessageId=4393 -Severity=Success -Facility=System -SymbolicName=ERROR_REPARSE_TAG_INVALID -Language=English -ERROR_REPARSE_TAG_INVALID - The tag present in the reparse point buffer is invalid. -. - -MessageId=4394 -Severity=Success -Facility=System -SymbolicName=ERROR_REPARSE_TAG_MISMATCH -Language=English -ERROR_REPARSE_TAG_MISMATCH - There is a mismatch between the tag specified in the request and the tag present in the reparse point. -. - -MessageId=4500 -Severity=Success -Facility=System -SymbolicName=ERROR_VOLUME_NOT_SIS_ENABLED -Language=English -ERROR_VOLUME_NOT_SIS_ENABLED - Single Instance Storage is not available on this volume. -. - -MessageId=5001 -Severity=Success -Facility=System -SymbolicName=ERROR_DEPENDENT_RESOURCE_EXISTS -Language=English -ERROR_DEPENDENT_RESOURCE_EXISTS - The cluster resource cannot be moved to another group because other resources are dependent on it. -. - -MessageId=5002 -Severity=Success -Facility=System -SymbolicName=ERROR_DEPENDENCY_NOT_FOUND -Language=English -ERROR_DEPENDENCY_NOT_FOUND - The cluster resource dependency cannot be found. -. - -MessageId=5003 -Severity=Success -Facility=System -SymbolicName=ERROR_DEPENDENCY_ALREADY_EXISTS -Language=English -ERROR_DEPENDENCY_ALREADY_EXISTS - The cluster resource cannot be made dependent on the specified resource because it is already dependent. -. - -MessageId=5004 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_NOT_ONLINE -Language=English -ERROR_RESOURCE_NOT_ONLINE - The cluster resource is not online. -. - -MessageId=5005 -Severity=Success -Facility=System -SymbolicName=ERROR_HOST_NODE_NOT_AVAILABLE -Language=English -ERROR_HOST_NODE_NOT_AVAILABLE - A cluster node is not available for this operation. -. - -MessageId=5006 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_NOT_AVAILABLE -Language=English -ERROR_RESOURCE_NOT_AVAILABLE - The cluster resource is not available. -. - -MessageId=5007 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_NOT_FOUND -Language=English -ERROR_RESOURCE_NOT_FOUND - The cluster resource could not be found. -. - -MessageId=5008 -Severity=Success -Facility=System -SymbolicName=ERROR_SHUTDOWN_CLUSTER -Language=English -ERROR_SHUTDOWN_CLUSTER - The cluster is being shut down. -. - -MessageId=5009 -Severity=Success -Facility=System -SymbolicName=ERROR_CANT_EVICT_ACTIVE_NODE -Language=English -ERROR_CANT_EVICT_ACTIVE_NODE - A cluster node cannot be evicted from the cluster unless the node is down. -. - -MessageId=5010 -Severity=Success -Facility=System -SymbolicName=ERROR_OBJECT_ALREADY_EXISTS -Language=English -ERROR_OBJECT_ALREADY_EXISTS - The object already exists. -. - -MessageId=5011 -Severity=Success -Facility=System -SymbolicName=ERROR_OBJECT_IN_LIST -Language=English -ERROR_OBJECT_IN_LIST - The object is already in the list. -. - -MessageId=5012 -Severity=Success -Facility=System -SymbolicName=ERROR_GROUP_NOT_AVAILABLE -Language=English -ERROR_GROUP_NOT_AVAILABLE - The cluster group is not available for any new requests. -. - -MessageId=5013 -Severity=Success -Facility=System -SymbolicName=ERROR_GROUP_NOT_FOUND -Language=English -ERROR_GROUP_NOT_FOUND - The cluster group could not be found. -. - -MessageId=5014 -Severity=Success -Facility=System -SymbolicName=ERROR_GROUP_NOT_ONLINE -Language=English -ERROR_GROUP_NOT_ONLINE - The operation could not be completed because the cluster group is not online. -. - -MessageId=5015 -Severity=Success -Facility=System -SymbolicName=ERROR_HOST_NODE_NOT_RESOURCE_OWNER -Language=English -ERROR_HOST_NODE_NOT_RESOURCE_OWNER - The cluster node is not the owner of the resource. -. - -MessageId=5016 -Severity=Success -Facility=System -SymbolicName=ERROR_HOST_NODE_NOT_GROUP_OWNER -Language=English -ERROR_HOST_NODE_NOT_GROUP_OWNER - The cluster node is not the owner of the group. -. - -MessageId=5017 -Severity=Success -Facility=System -SymbolicName=ERROR_RESMON_CREATE_FAILED -Language=English -ERROR_RESMON_CREATE_FAILED - The cluster resource could not be created in the specified resource monitor. -. - -MessageId=5018 -Severity=Success -Facility=System -SymbolicName=ERROR_RESMON_ONLINE_FAILED -Language=English -ERROR_RESMON_ONLINE_FAILED - The cluster resource could not be brought online by the resource monitor. -. - -MessageId=5019 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_ONLINE -Language=English -ERROR_RESOURCE_ONLINE - The operation could not be completed because the cluster resource is online. -. - -MessageId=5020 -Severity=Success -Facility=System -SymbolicName=ERROR_QUORUM_RESOURCE -Language=English -ERROR_QUORUM_RESOURCE - The cluster resource could not be deleted or brought offline because it is the quorum resource. -. - -MessageId=5021 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_QUORUM_CAPABLE -Language=English -ERROR_NOT_QUORUM_CAPABLE - The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource. -. - -MessageId=5022 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_SHUTTING_DOWN -Language=English -ERROR_CLUSTER_SHUTTING_DOWN - The cluster software is shutting down. -. - -MessageId=5023 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_STATE -Language=English -ERROR_INVALID_STATE - The group or resource is not in the correct state to perform the requested operation. -. - -MessageId=5024 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_PROPERTIES_STORED -Language=English -ERROR_RESOURCE_PROPERTIES_STORED - The properties were stored but not all changes will take effect until the next time the resource is brought online. -. - -MessageId=5025 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_QUORUM_CLASS -Language=English -ERROR_NOT_QUORUM_CLASS - The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class. -. - -MessageId=5026 -Severity=Success -Facility=System -SymbolicName=ERROR_CORE_RESOURCE -Language=English -ERROR_CORE_RESOURCE - The cluster resource could not be deleted since it is a core resource. -. - -MessageId=5027 -Severity=Success -Facility=System -SymbolicName=ERROR_QUORUM_RESOURCE_ONLINE_FAILED -Language=English -ERROR_QUORUM_RESOURCE_ONLINE_FAILED - The quorum resource failed to come online. -. - -MessageId=5028 -Severity=Success -Facility=System -SymbolicName=ERROR_QUORUMLOG_OPEN_FAILED -Language=English -ERROR_QUORUMLOG_OPEN_FAILED - The quorum log could not be created or mounted successfully. -. - -MessageId=5029 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTERLOG_CORRUPT -Language=English -ERROR_CLUSTERLOG_CORRUPT - The cluster log is corrupt. -. - -MessageId=5030 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE -Language=English -ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE - The record could not be written to the cluster log since it exceeds the maximum size. -. - -MessageId=5031 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE -Language=English -ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE - The cluster log exceeds its maximum size. -. - -MessageId=5032 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND -Language=English -ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND - No checkpoint record was found in the cluster log. -. - -MessageId=5033 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE -Language=English -ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE - The minimum required disk space needed for logging is not available. -. - -MessageId=5034 -Severity=Success -Facility=System -SymbolicName=ERROR_QUORUM_OWNER_ALIVE -Language=English -ERROR_QUORUM_OWNER_ALIVE - The cluster node failed to take control of the quorum resource because the resource is owned by another active node. -. - -MessageId=5035 -Severity=Success -Facility=System -SymbolicName=ERROR_NETWORK_NOT_AVAILABLE -Language=English -ERROR_NETWORK_NOT_AVAILABLE - A cluster network is not available for this operation. -. - -MessageId=5036 -Severity=Success -Facility=System -SymbolicName=ERROR_NODE_NOT_AVAILABLE -Language=English -ERROR_NODE_NOT_AVAILABLE - A cluster node is not available for this operation. -. - -MessageId=5037 -Severity=Success -Facility=System -SymbolicName=ERROR_ALL_NODES_NOT_AVAILABLE -Language=English -ERROR_ALL_NODES_NOT_AVAILABLE - All cluster nodes must be running to perform this operation. -. - -MessageId=5038 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_FAILED -Language=English -ERROR_RESOURCE_FAILED - A cluster resource failed. -. - -MessageId=5039 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_INVALID_NODE -Language=English -ERROR_CLUSTER_INVALID_NODE - The cluster node is not valid. -. - -MessageId=5040 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_EXISTS -Language=English -ERROR_CLUSTER_NODE_EXISTS - The cluster node already exists. -. - -MessageId=5041 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_JOIN_IN_PROGRESS -Language=English -ERROR_CLUSTER_JOIN_IN_PROGRESS - A node is in the process of joining the cluster. -. - -MessageId=5042 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_NOT_FOUND -Language=English -ERROR_CLUSTER_NODE_NOT_FOUND - The cluster node was not found. -. - -MessageId=5043 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND -Language=English -ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND - The cluster local node information was not found. -. - -MessageId=5044 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_EXISTS -Language=English -ERROR_CLUSTER_NETWORK_EXISTS - The cluster network already exists. -. - -MessageId=5045 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_NOT_FOUND -Language=English -ERROR_CLUSTER_NETWORK_NOT_FOUND - The cluster network was not found. -. - -MessageId=5046 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETINTERFACE_EXISTS -Language=English -ERROR_CLUSTER_NETINTERFACE_EXISTS - The cluster network interface already exists. -. - -MessageId=5047 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETINTERFACE_NOT_FOUND -Language=English -ERROR_CLUSTER_NETINTERFACE_NOT_FOUND - The cluster network interface was not found. -. - -MessageId=5048 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_INVALID_REQUEST -Language=English -ERROR_CLUSTER_INVALID_REQUEST - The cluster request is not valid for this object. -. - -MessageId=5049 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_INVALID_NETWORK_PROVIDER -Language=English -ERROR_CLUSTER_INVALID_NETWORK_PROVIDER - The cluster network provider is not valid. -. - -MessageId=5050 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_DOWN -Language=English -ERROR_CLUSTER_NODE_DOWN - The cluster node is down. -. - -MessageId=5051 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_UNREACHABLE -Language=English -ERROR_CLUSTER_NODE_UNREACHABLE - The cluster node is not reachable. -. - -MessageId=5052 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_NOT_MEMBER -Language=English -ERROR_CLUSTER_NODE_NOT_MEMBER - The cluster node is not a member of the cluster. -. - -MessageId=5053 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS -Language=English -ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS - A cluster join operation is not in progress. -. - -MessageId=5054 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_INVALID_NETWORK -Language=English -ERROR_CLUSTER_INVALID_NETWORK - The cluster network is not valid. -. - -MessageId=5056 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_UP -Language=English -ERROR_CLUSTER_NODE_UP - The cluster node is up. -. - -MessageId=5057 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_IPADDR_IN_USE -Language=English -ERROR_CLUSTER_IPADDR_IN_USE - The cluster IP address is already in use. -. - -MessageId=5058 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_NOT_PAUSED -Language=English -ERROR_CLUSTER_NODE_NOT_PAUSED - The cluster node is not paused. -. - -MessageId=5059 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NO_SECURITY_CONTEXT -Language=English -ERROR_CLUSTER_NO_SECURITY_CONTEXT - No cluster security context is available. -. - -MessageId=5060 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_NOT_INTERNAL -Language=English -ERROR_CLUSTER_NETWORK_NOT_INTERNAL - The cluster network is not configured for internal cluster communication. -. - -MessageId=5061 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_ALREADY_UP -Language=English -ERROR_CLUSTER_NODE_ALREADY_UP - The cluster node is already up. -. - -MessageId=5062 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_ALREADY_DOWN -Language=English -ERROR_CLUSTER_NODE_ALREADY_DOWN - The cluster node is already down. -. - -MessageId=5063 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_ALREADY_ONLINE -Language=English -ERROR_CLUSTER_NETWORK_ALREADY_ONLINE - The cluster network is already online. -. - -MessageId=5064 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE -Language=English -ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE - The cluster network is already offline. -. - -MessageId=5065 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_ALREADY_MEMBER -Language=English -ERROR_CLUSTER_NODE_ALREADY_MEMBER - The cluster node is already a member of the cluster. -. - -MessageId=5066 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_LAST_INTERNAL_NETWORK -Language=English -ERROR_CLUSTER_LAST_INTERNAL_NETWORK - The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network. -. - -MessageId=5067 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS -Language=English -ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS - One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network. -. - -MessageId=5068 -Severity=Success -Facility=System -SymbolicName=ERROR_INVALID_OPERATION_ON_QUORUM -Language=English -ERROR_INVALID_OPERATION_ON_QUORUM - This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list. -. - -MessageId=5069 -Severity=Success -Facility=System -SymbolicName=ERROR_DEPENDENCY_NOT_ALLOWED -Language=English -ERROR_DEPENDENCY_NOT_ALLOWED - The cluster quorum resource is not allowed to have any dependencies. -. - -MessageId=5070 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_PAUSED -Language=English -ERROR_CLUSTER_NODE_PAUSED - The cluster node is paused. -. - -MessageId=5071 -Severity=Success -Facility=System -SymbolicName=ERROR_NODE_CANT_HOST_RESOURCE -Language=English -ERROR_NODE_CANT_HOST_RESOURCE - The cluster resource cannot be brought online. The owner node cannot run this resource. -. - -MessageId=5072 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_NOT_READY -Language=English -ERROR_CLUSTER_NODE_NOT_READY - The cluster node is not ready to perform the requested operation. -. - -MessageId=5073 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_SHUTTING_DOWN -Language=English -ERROR_CLUSTER_NODE_SHUTTING_DOWN - The cluster node is shutting down. -. - -MessageId=5074 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_JOIN_ABORTED -Language=English -ERROR_CLUSTER_JOIN_ABORTED - The cluster join operation was aborted. -. - -MessageId=5075 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_INCOMPATIBLE_VERSIONS -Language=English -ERROR_CLUSTER_INCOMPATIBLE_VERSIONS - The cluster join operation failed due to incompatible software versions between the joining node and its sponsor. -. - -MessageId=5076 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED -Language=English -ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED - This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor. -. - -MessageId=5077 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED -Language=English -ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED - The system configuration changed during the cluster join or form operation. The join or form operation was aborted. -. - -MessageId=5078 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND -Language=English -ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND - The specified resource type was not found. -. - -MessageId=5079 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED -Language=English -ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED - The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node. -. - -MessageId=5080 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_RESNAME_NOT_FOUND -Language=English -ERROR_CLUSTER_RESNAME_NOT_FOUND - The specified resource name is supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL. -. - -MessageId=5081 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED -Language=English -ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED - No authentication package could be registered with the RPC server. -. - -MessageId=5082 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST -Language=English -ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST - You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group. -. - -MessageId=5083 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_DATABASE_SEQMISMATCH -Language=English -ERROR_CLUSTER_DATABASE_SEQMISMATCH - The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join. -. - -MessageId=5084 -Severity=Success -Facility=System -SymbolicName=ERROR_RESMON_INVALID_STATE -Language=English -ERROR_RESMON_INVALID_STATE - The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state. -. - -MessageId=5085 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_GUM_NOT_LOCKER -Language=English -ERROR_CLUSTER_GUM_NOT_LOCKER - A non locker code got a request to reserve the lock for making global updates. -. - -MessageId=5086 -Severity=Success -Facility=System -SymbolicName=ERROR_QUORUM_DISK_NOT_FOUND -Language=English -ERROR_QUORUM_DISK_NOT_FOUND - The quorum disk could not be located by the cluster service. -. - -MessageId=5087 -Severity=Success -Facility=System -SymbolicName=ERROR_DATABASE_BACKUP_CORRUPT -Language=English -ERROR_DATABASE_BACKUP_CORRUPT - The backup up cluster database is possibly corrupt. -. - -MessageId=5088 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT -Language=English -ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT - A DFS root already exists in this cluster node. -. - -MessageId=5089 -Severity=Success -Facility=System -SymbolicName=ERROR_RESOURCE_PROPERTY_UNCHANGEABLE -Language=English -ERROR_RESOURCE_PROPERTY_UNCHANGEABLE - An attempt to modify a resource property failed because it conflicts with another existing property. -. - -MessageId=5890 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE -Language=English -ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE - An operation was attempted that is incompatible with the current membership state of the node. -. - -MessageId=5891 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_QUORUMLOG_NOT_FOUND -Language=English -ERROR_CLUSTER_QUORUMLOG_NOT_FOUND - The quorum resource does not contain the quorum log. -. - -MessageId=5892 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_MEMBERSHIP_HALT -Language=English -ERROR_CLUSTER_MEMBERSHIP_HALT - The membership engine requested shutdown of the cluster service on this node. -. - -MessageId=5893 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_INSTANCE_ID_MISMATCH -Language=English -ERROR_CLUSTER_INSTANCE_ID_MISMATCH - The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node. -. - -MessageId=5894 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP -Language=English -ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP - A matching network for the specified IP address could not be found. Please also specify a subnet mask and a cluster network. -. - -MessageId=5895 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH -Language=English -ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH - The actual data type of the property did not match the expected data type of the property. -. - -MessageId=5896 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP -Language=English -ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP - The cluster node was evicted from the cluster successfully, but the node was not cleaned up. Extended status information explaining why the node was not cleaned up is available. -. - -MessageId=5897 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_PARAMETER_MISMATCH -Language=English -ERROR_CLUSTER_PARAMETER_MISMATCH - Two or more parameter values specified for a resource's properties are in conflict. -. - -MessageId=5898 -Severity=Success -Facility=System -SymbolicName=ERROR_NODE_CANNOT_BE_CLUSTERED -Language=English -ERROR_NODE_CANNOT_BE_CLUSTERED - This computer cannot be made a member of a cluster. -. - -MessageId=5899 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_WRONG_OS_VERSION -Language=English -ERROR_CLUSTER_WRONG_OS_VERSION - This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed. -. - -MessageId=5900 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME -Language=English -ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME - A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster. -. - -MessageId=5901 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSCFG_ALREADY_COMMITTED -Language=English -ERROR_CLUSCFG_ALREADY_COMMITTED - The cluster configuration action has already been committed. -. - -MessageId=5902 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSCFG_ROLLBACK_FAILED -Language=English -ERROR_CLUSCFG_ROLLBACK_FAILED - The cluster configuration action could not be rolled back. -. - -MessageId=5903 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT -Language=English -ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT - The drive letter assigned to a system disk on one node conflicted with the driver letter assigned to a disk on another node. -. - -MessageId=5904 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_OLD_VERSION -Language=English -ERROR_CLUSTER_OLD_VERSION - One or more nodes in the cluster are running a version of Windows that does not support this operation. -. - -MessageId=5905 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME -Language=English -ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME - The name of the corresponding computer account doesn't match the Network Name for this resource. -. - -MessageId=5906 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_NO_NET_ADAPTERS -Language=English -ERROR_CLUSTER_NO_NET_ADAPTERS - No network adapters are available. -. - -MessageId=5907 -Severity=Success -Facility=System -SymbolicName=ERROR_CLUSTER_POISONED -Language=English -ERROR_CLUSTER_POISONED - The cluster node has been poisoned. -. - -MessageId=6000 -Severity=Success -Facility=System -SymbolicName=ERROR_ENCRYPTION_FAILED -Language=English -ERROR_ENCRYPTION_FAILED - The specified file could not be encrypted. -. - -MessageId=6001 -Severity=Success -Facility=System -SymbolicName=ERROR_DECRYPTION_FAILED -Language=English -ERROR_DECRYPTION_FAILED - The specified file could not be decrypted. -. - -MessageId=6002 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_ENCRYPTED -Language=English -ERROR_FILE_ENCRYPTED - The specified file is encrypted and the user does not have the ability to decrypt it. -. - -MessageId=6003 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_RECOVERY_POLICY -Language=English -ERROR_NO_RECOVERY_POLICY - There is no valid encryption recovery policy configured for this system. -. - -MessageId=6004 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_EFS -Language=English -ERROR_NO_EFS - The required encryption driver is not loaded for this system. -. - -MessageId=6005 -Severity=Success -Facility=System -SymbolicName=ERROR_WRONG_EFS -Language=English -ERROR_WRONG_EFS - The file was encrypted with a different encryption driver than is currently loaded. -. - -MessageId=6006 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_USER_KEYS -Language=English -ERROR_NO_USER_KEYS - There are no EFS keys defined for the user. -. - -MessageId=6007 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_NOT_ENCRYPTED -Language=English -ERROR_FILE_NOT_ENCRYPTED - The specified file is not encrypted. -. - -MessageId=6008 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_EXPORT_FORMAT -Language=English -ERROR_NOT_EXPORT_FORMAT - The specified file is not in the defined EFS export format. -. - -MessageId=6009 -Severity=Success -Facility=System -SymbolicName=ERROR_FILE_READ_ONLY -Language=English -ERROR_FILE_READ_ONLY - The specified file is read only. -. - -MessageId=6010 -Severity=Success -Facility=System -SymbolicName=ERROR_DIR_EFS_DISALLOWED -Language=English -ERROR_DIR_EFS_DISALLOWED - The directory has been disabled for encryption. -. - -MessageId=6011 -Severity=Success -Facility=System -SymbolicName=ERROR_EFS_SERVER_NOT_TRUSTED -Language=English -ERROR_EFS_SERVER_NOT_TRUSTED - The server is not trusted for remote encryption operation. -. - -MessageId=6012 -Severity=Success -Facility=System -SymbolicName=ERROR_BAD_RECOVERY_POLICY -Language=English -ERROR_BAD_RECOVERY_POLICY - Recovery policy configured for this system contains invalid recovery certificate. -. - -MessageId=6013 -Severity=Success -Facility=System -SymbolicName=ERROR_EFS_ALG_BLOB_TOO_BIG -Language=English -ERROR_EFS_ALG_BLOB_TOO_BIG - The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file. -. - -MessageId=6014 -Severity=Success -Facility=System -SymbolicName=ERROR_VOLUME_NOT_SUPPORT_EFS -Language=English -ERROR_VOLUME_NOT_SUPPORT_EFS - The disk partition does not support file encryption. -. - -MessageId=6015 -Severity=Success -Facility=System -SymbolicName=ERROR_EFS_DISABLED -Language=English -ERROR_EFS_DISABLED - This machine is disabled for file encryption. -. - -MessageId=6016 -Severity=Success -Facility=System -SymbolicName=ERROR_EFS_VERSION_NOT_SUPPORT -Language=English -ERROR_EFS_VERSION_NOT_SUPPORT - A newer system is required to decrypt this encrypted file. -. - -MessageId=6118 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_BROWSER_SERVERS_FOUND -Language=English -ERROR_NO_BROWSER_SERVERS_FOUND - The list of servers for this workgroup is not currently available. -. - -MessageId=6200 -Severity=Success -Facility=System -SymbolicName=SCHED_E_SERVICE_NOT_LOCALSYSTEM -Language=English -SCHED_E_SERVICE_NOT_LOCALSYSTEM - The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts. -. - -MessageId=7001 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WINSTATION_NAME_INVALID -Language=English -ERROR_CTX_WINSTATION_NAME_INVALID - The specified session name is invalid. -. - -MessageId=7002 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_INVALID_PD -Language=English -ERROR_CTX_INVALID_PD - The specified protocol driver is invalid. -. - -MessageId=7003 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_PD_NOT_FOUND -Language=English -ERROR_CTX_PD_NOT_FOUND - The specified protocol driver was not found in the system path. -. - -MessageId=7004 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WD_NOT_FOUND -Language=English -ERROR_CTX_WD_NOT_FOUND - The specified terminal connection driver was not found in the system path. -. - -MessageId=7005 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY -Language=English -ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY - A registry key for event logging could not be created for this session. -. - -MessageId=7006 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SERVICE_NAME_COLLISION -Language=English -ERROR_CTX_SERVICE_NAME_COLLISION - A service with the same name already exists on the system. -. - -MessageId=7007 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CLOSE_PENDING -Language=English -ERROR_CTX_CLOSE_PENDING - A close operation is pending on the session. -. - -MessageId=7008 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_NO_OUTBUF -Language=English -ERROR_CTX_NO_OUTBUF - There are no free output buffers available. -. - -MessageId=7009 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_INF_NOT_FOUND -Language=English -ERROR_CTX_MODEM_INF_NOT_FOUND - The MODEM.INF file was not found. -. - -MessageId=7010 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_INVALID_MODEMNAME -Language=English -ERROR_CTX_INVALID_MODEMNAME - The modem name was not found in MODEM.INF. -. - -MessageId=7011 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_RESPONSE_ERROR -Language=English -ERROR_CTX_MODEM_RESPONSE_ERROR - The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem. -. - -MessageId=7012 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_RESPONSE_TIMEOUT -Language=English -ERROR_CTX_MODEM_RESPONSE_TIMEOUT - The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on. -. - -MessageId=7013 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_RESPONSE_NO_CARRIER -Language=English -ERROR_CTX_MODEM_RESPONSE_NO_CARRIER - Carrier detect has failed or carrier has been dropped due to disconnect. -. - -MessageId=7014 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE -Language=English -ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE - Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional. -. - -MessageId=7015 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_RESPONSE_BUSY -Language=English -ERROR_CTX_MODEM_RESPONSE_BUSY - Busy signal detected at remote site on callback. -. - -MessageId=7016 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_MODEM_RESPONSE_VOICE -Language=English -ERROR_CTX_MODEM_RESPONSE_VOICE - Voice detected at remote site on callback. -. - -MessageId=7017 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_TD_ERROR -Language=English -ERROR_CTX_TD_ERROR - Transport driver error -. - -MessageId=7022 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WINSTATION_NOT_FOUND -Language=English -ERROR_CTX_WINSTATION_NOT_FOUND - The specified session cannot be found. -. - -MessageId=7023 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WINSTATION_ALREADY_EXISTS -Language=English -ERROR_CTX_WINSTATION_ALREADY_EXISTS - The specified session name is already in use. -. - -MessageId=7024 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WINSTATION_BUSY -Language=English -ERROR_CTX_WINSTATION_BUSY - The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation. -. - -MessageId=7025 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_BAD_VIDEO_MODE -Language=English -ERROR_CTX_BAD_VIDEO_MODE - An attempt has been made to connect to a session whose video mode is not supported by the current client. -. - -MessageId=7035 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_GRAPHICS_INVALID -Language=English -ERROR_CTX_GRAPHICS_INVALID - The application attempted to enable DOS graphics mode. DOS graphics mode is not supported. -. - -MessageId=7037 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_LOGON_DISABLED -Language=English -ERROR_CTX_LOGON_DISABLED - Your interactive logon privilege has been disabled. Please contact your administrator. -. - -MessageId=7038 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_NOT_CONSOLE -Language=English -ERROR_CTX_NOT_CONSOLE - The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access. -. - -MessageId=7040 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CLIENT_QUERY_TIMEOUT -Language=English -ERROR_CTX_CLIENT_QUERY_TIMEOUT - The client failed to respond to the server connect message. -. - -MessageId=7041 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CONSOLE_DISCONNECT -Language=English -ERROR_CTX_CONSOLE_DISCONNECT - Disconnecting the console session is not supported. -. - -MessageId=7042 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CONSOLE_CONNECT -Language=English -ERROR_CTX_CONSOLE_CONNECT - Reconnecting a disconnected session to the console is not supported. -. - -MessageId=7044 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SHADOW_DENIED -Language=English -ERROR_CTX_SHADOW_DENIED - The request to control another session remotely was denied. -. - -MessageId=7045 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WINSTATION_ACCESS_DENIED -Language=English -ERROR_CTX_WINSTATION_ACCESS_DENIED - The requested session access is denied. -. - -MessageId=7049 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_INVALID_WD -Language=English -ERROR_CTX_INVALID_WD - The specified terminal connection driver is invalid. -. - -MessageId=7050 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SHADOW_INVALID -Language=English -ERROR_CTX_SHADOW_INVALID - The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on. -. - -MessageId=7051 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SHADOW_DISABLED -Language=English -ERROR_CTX_SHADOW_DISABLED - The requested session is not configured to allow remote control. -. - -MessageId=7052 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CLIENT_LICENSE_IN_USE -Language=English -ERROR_CTX_CLIENT_LICENSE_IN_USE - Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number. -. - -MessageId=7053 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CLIENT_LICENSE_NOT_SET -Language=English -ERROR_CTX_CLIENT_LICENSE_NOT_SET - Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator. -. - -MessageId=7054 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_LICENSE_NOT_AVAILABLE -Language=English -ERROR_CTX_LICENSE_NOT_AVAILABLE - The system has reached its licensed logon limit. Please try again later. -. - -MessageId=7055 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_LICENSE_CLIENT_INVALID -Language=English -ERROR_CTX_LICENSE_CLIENT_INVALID - The client you are using is not licensed to use this system. Your logon request is denied. -. - -MessageId=7056 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_LICENSE_EXPIRED -Language=English -ERROR_CTX_LICENSE_EXPIRED - The system license has expired. Your logon request is denied. -. - -MessageId=7057 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SHADOW_NOT_RUNNING -Language=English -ERROR_CTX_SHADOW_NOT_RUNNING - Remote control could not be terminated because the specified session is not currently being remotely controlled. -. - -MessageId=7058 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE -Language=English -ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE - The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported. -. - -MessageId=7059 -Severity=Success -Facility=System -SymbolicName=ERROR_ACTIVATION_COUNT_EXCEEDED -Language=English -ERROR_ACTIVATION_COUNT_EXCEEDED - Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared. -. - -MessageId=7060 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_WINSTATIONS_DISABLED -Language=English -ERROR_CTX_WINSTATIONS_DISABLED - Remote logins are currently disabled. -. - -MessageId=7061 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED -Language=English -ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED - You do not have the proper encryption level to access this Session. -. - -MessageId=7062 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_SESSION_IN_USE -Language=English -ERROR_CTX_SESSION_IN_USE - The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer. -. - -MessageId=7063 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_NO_FORCE_LOGOFF -Language=English -ERROR_CTX_NO_FORCE_LOGOFF - The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off. -. - -MessageId=7064 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_ACCOUNT_RESTRICTION -Language=English -ERROR_CTX_ACCOUNT_RESTRICTION - Unable to log you on because of an account restriction. -. - -MessageId=7065 -Severity=Success -Facility=System -SymbolicName=ERROR_RDP_PROTOCOL_ERROR -Language=English -ERROR_RDP_PROTOCOL_ERROR - The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client. -. - -MessageId=7066 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CDM_CONNECT -Language=English -ERROR_CTX_CDM_CONNECT - The Client Drive Mapping Service Has Connected on Terminal Connection. -. - -MessageId=7067 -Severity=Success -Facility=System -SymbolicName=ERROR_CTX_CDM_DISCONNECT -Language=English -ERROR_CTX_CDM_DISCONNECT - The Client Drive Mapping Service Has Disconnected on Terminal Connection. -. - -MessageId=8001 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_INVALID_API_SEQUENCE -Language=English -FRS_ERR_INVALID_API_SEQUENCE - The file replication service API was called incorrectly. -. - -MessageId=8002 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_STARTING_SERVICE -Language=English -FRS_ERR_STARTING_SERVICE - The file replication service cannot be started. -. - -MessageId=8003 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_STOPPING_SERVICE -Language=English -FRS_ERR_STOPPING_SERVICE - The file replication service cannot be stopped. -. - -MessageId=8004 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_INTERNAL_API -Language=English -FRS_ERR_INTERNAL_API - The file replication service API terminated the request. The event log may have more information. -. - -MessageId=8005 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_INTERNAL -Language=English -FRS_ERR_INTERNAL - The file replication service terminated the request. The event log may have more information. -. - -MessageId=8006 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_SERVICE_COMM -Language=English -FRS_ERR_SERVICE_COMM - The file replication service cannot be contacted. The event log may have more information. -. - -MessageId=8007 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_INSUFFICIENT_PRIV -Language=English -FRS_ERR_INSUFFICIENT_PRIV - The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information. -. - -MessageId=8008 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_AUTHENTICATION -Language=English -FRS_ERR_AUTHENTICATION - The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information. -. - -MessageId=8009 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_PARENT_INSUFFICIENT_PRIV -Language=English -FRS_ERR_PARENT_INSUFFICIENT_PRIV - The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information. -. - -MessageId=8010 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_PARENT_AUTHENTICATION -Language=English -FRS_ERR_PARENT_AUTHENTICATION - The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information. -. - -MessageId=8011 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_CHILD_TO_PARENT_COMM -Language=English -FRS_ERR_CHILD_TO_PARENT_COMM - The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information. -. - -MessageId=8012 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_PARENT_TO_CHILD_COMM -Language=English -FRS_ERR_PARENT_TO_CHILD_COMM - The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information. -. - -MessageId=8013 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_SYSVOL_POPULATE -Language=English -FRS_ERR_SYSVOL_POPULATE - The file replication service cannot populate the system volume because of an internal error. The event log may have more information. -. - -MessageId=8014 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_SYSVOL_POPULATE_TIMEOUT -Language=English -FRS_ERR_SYSVOL_POPULATE_TIMEOUT - The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information. -. - -MessageId=8015 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_SYSVOL_IS_BUSY -Language=English -FRS_ERR_SYSVOL_IS_BUSY - The file replication service cannot process the request. The system volume is busy with a previous request. -. - -MessageId=8016 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_SYSVOL_DEMOTE -Language=English -FRS_ERR_SYSVOL_DEMOTE - The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information. -. - -MessageId=8017 -Severity=Success -Facility=System -SymbolicName=FRS_ERR_INVALID_SERVICE_PARAMETER -Language=English -FRS_ERR_INVALID_SERVICE_PARAMETER - The file replication service detected an invalid parameter. -. - -MessageId=8200 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_INSTALLED -Language=English -ERROR_DS_NOT_INSTALLED - An error occurred while installing the directory service. For more information, see the event log. -. - -MessageId=8201 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY -Language=English -ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY - The directory service evaluated group memberships locally. -. - -MessageId=8202 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_ATTRIBUTE_OR_VALUE -Language=English -ERROR_DS_NO_ATTRIBUTE_OR_VALUE - The specified directory service attribute or value does not exist. -. - -MessageId=8203 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_ATTRIBUTE_SYNTAX -Language=English -ERROR_DS_INVALID_ATTRIBUTE_SYNTAX - The attribute syntax specified to the directory service is invalid. -. - -MessageId=8204 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED -Language=English -ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED - The attribute type specified to the directory service is not defined. -. - -MessageId=8205 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS -Language=English -ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS - The specified directory service attribute or value already exists. -. - -MessageId=8206 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BUSY -Language=English -ERROR_DS_BUSY - The directory service is busy. -. - -MessageId=8207 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNAVAILABLE -Language=English -ERROR_DS_UNAVAILABLE - The directory service is unavailable. -. - -MessageId=8208 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_RIDS_ALLOCATED -Language=English -ERROR_DS_NO_RIDS_ALLOCATED - The directory service was unable to allocate a relative identifier. -. - -MessageId=8209 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_MORE_RIDS -Language=English -ERROR_DS_NO_MORE_RIDS - The directory service has exhausted the pool of relative identifiers. -. - -MessageId=8210 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INCORRECT_ROLE_OWNER -Language=English -ERROR_DS_INCORRECT_ROLE_OWNER - The requested operation could not be performed because the directory service is not the master for that type of operation. -. - -MessageId=8211 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_RIDMGR_INIT_ERROR -Language=English -ERROR_DS_RIDMGR_INIT_ERROR - The directory service was unable to initialize the subsystem that allocates relative identifiers. -. - -MessageId=8212 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_CLASS_VIOLATION -Language=English -ERROR_DS_OBJ_CLASS_VIOLATION - The requested operation did not satisfy one or more constraints associated with the class of the object. -. - -MessageId=8213 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_ON_NON_LEAF -Language=English -ERROR_DS_CANT_ON_NON_LEAF - The directory service can perform the requested operation only on a leaf object. -. - -MessageId=8214 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_ON_RDN -Language=English -ERROR_DS_CANT_ON_RDN - The directory service cannot perform the requested operation on the RDN attribute of an object. -. - -MessageId=8215 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOD_OBJ_CLASS -Language=English -ERROR_DS_CANT_MOD_OBJ_CLASS - The directory service detected an attempt to modify the object class of an object. -. - -MessageId=8216 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CROSS_DOM_MOVE_ERROR -Language=English -ERROR_DS_CROSS_DOM_MOVE_ERROR - The requested cross-domain move operation could not be performed. -. - -MessageId=8217 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GC_NOT_AVAILABLE -Language=English -ERROR_DS_GC_NOT_AVAILABLE - Unable to contact the global catalog server. -. - -MessageId=8218 -Severity=Success -Facility=System -SymbolicName=ERROR_SHARED_POLICY -Language=English -ERROR_SHARED_POLICY - The policy object is shared and can only be modified at the root. -. - -MessageId=8219 -Severity=Success -Facility=System -SymbolicName=ERROR_POLICY_OBJECT_NOT_FOUND -Language=English -ERROR_POLICY_OBJECT_NOT_FOUND - The policy object does not exist. -. - -MessageId=8220 -Severity=Success -Facility=System -SymbolicName=ERROR_POLICY_ONLY_IN_DS -Language=English -ERROR_POLICY_ONLY_IN_DS - The requested policy information is only in the directory service. -. - -MessageId=8221 -Severity=Success -Facility=System -SymbolicName=ERROR_PROMOTION_ACTIVE -Language=English -ERROR_PROMOTION_ACTIVE - A domain controller promotion is currently active. -. - -MessageId=8222 -Severity=Success -Facility=System -SymbolicName=ERROR_NO_PROMOTION_ACTIVE -Language=English -ERROR_NO_PROMOTION_ACTIVE - A domain controller promotion is not currently active -. - -MessageId=8224 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OPERATIONS_ERROR -Language=English -ERROR_DS_OPERATIONS_ERROR - An operations error occurred. -. - -MessageId=8225 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_PROTOCOL_ERROR -Language=English -ERROR_DS_PROTOCOL_ERROR - A protocol error occurred. -. - -MessageId=8226 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_TIMELIMIT_EXCEEDED -Language=English -ERROR_DS_TIMELIMIT_EXCEEDED - The time limit for this request was exceeded. -. - -MessageId=8227 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SIZELIMIT_EXCEEDED -Language=English -ERROR_DS_SIZELIMIT_EXCEEDED - The size limit for this request was exceeded. -. - -MessageId=8228 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ADMIN_LIMIT_EXCEEDED -Language=English -ERROR_DS_ADMIN_LIMIT_EXCEEDED - The administrative limit for this request was exceeded. -. - -MessageId=8229 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COMPARE_FALSE -Language=English -ERROR_DS_COMPARE_FALSE - The compare response was false. -. - -MessageId=8230 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COMPARE_TRUE -Language=English -ERROR_DS_COMPARE_TRUE - The compare response was true. -. - -MessageId=8231 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_AUTH_METHOD_NOT_SUPPORTED -Language=English -ERROR_DS_AUTH_METHOD_NOT_SUPPORTED - The requested authentication method is not supported by the server. -. - -MessageId=8232 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_STRONG_AUTH_REQUIRED -Language=English -ERROR_DS_STRONG_AUTH_REQUIRED - A more secure authentication method is required for this server. -. - -MessageId=8233 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INAPPROPRIATE_AUTH -Language=English -ERROR_DS_INAPPROPRIATE_AUTH - Inappropriate authentication. -. - -MessageId=8234 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_AUTH_UNKNOWN -Language=English -ERROR_DS_AUTH_UNKNOWN - The authentication mechanism is unknown. -. - -MessageId=8235 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REFERRAL -Language=English -ERROR_DS_REFERRAL - A referral was returned from the server. -. - -MessageId=8236 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNAVAILABLE_CRIT_EXTENSION -Language=English -ERROR_DS_UNAVAILABLE_CRIT_EXTENSION - The server does not support the requested critical extension. -. - -MessageId=8237 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CONFIDENTIALITY_REQUIRED -Language=English -ERROR_DS_CONFIDENTIALITY_REQUIRED - This request requires a secure connection. -. - -MessageId=8238 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INAPPROPRIATE_MATCHING -Language=English -ERROR_DS_INAPPROPRIATE_MATCHING - Inappropriate matching. -. - -MessageId=8239 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CONSTRAINT_VIOLATION -Language=English -ERROR_DS_CONSTRAINT_VIOLATION - A constraint violation occurred. -. - -MessageId=8240 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_SUCH_OBJECT -Language=English -ERROR_DS_NO_SUCH_OBJECT - There is no such object on the server. -. - -MessageId=8241 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ALIAS_PROBLEM -Language=English -ERROR_DS_ALIAS_PROBLEM - There is an alias problem. -. - -MessageId=8242 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_DN_SYNTAX -Language=English -ERROR_DS_INVALID_DN_SYNTAX - An invalid dn syntax has been specified. -. - -MessageId=8243 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_IS_LEAF -Language=English -ERROR_DS_IS_LEAF - The object is a leaf object. -. - -MessageId=8244 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ALIAS_DEREF_PROBLEM -Language=English -ERROR_DS_ALIAS_DEREF_PROBLEM - There is an alias dereferencing problem. -. - -MessageId=8245 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNWILLING_TO_PERFORM -Language=English -ERROR_DS_UNWILLING_TO_PERFORM - The server is unwilling to process the request. -. - -MessageId=8246 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LOOP_DETECT -Language=English -ERROR_DS_LOOP_DETECT - A loop has been detected. -. - -MessageId=8247 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAMING_VIOLATION -Language=English -ERROR_DS_NAMING_VIOLATION - There is a naming violation. -. - -MessageId=8248 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJECT_RESULTS_TOO_LARGE -Language=English -ERROR_DS_OBJECT_RESULTS_TOO_LARGE - The result set is too large. -. - -MessageId=8249 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_AFFECTS_MULTIPLE_DSAS -Language=English -ERROR_DS_AFFECTS_MULTIPLE_DSAS - The operation affects multiple DSAs -. - -MessageId=8250 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SERVER_DOWN -Language=English -ERROR_DS_SERVER_DOWN - The server is not operational. -. - -MessageId=8251 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LOCAL_ERROR -Language=English -ERROR_DS_LOCAL_ERROR - A local error has occurred. -. - -MessageId=8252 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ENCODING_ERROR -Language=English -ERROR_DS_ENCODING_ERROR - An encoding error has occurred. -. - -MessageId=8253 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DECODING_ERROR -Language=English -ERROR_DS_DECODING_ERROR - A decoding error has occurred. -. - -MessageId=8254 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_FILTER_UNKNOWN -Language=English -ERROR_DS_FILTER_UNKNOWN - The search filter cannot be recognized. -. - -MessageId=8255 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_PARAM_ERROR -Language=English -ERROR_DS_PARAM_ERROR - One or more parameters are illegal. -. - -MessageId=8256 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_SUPPORTED -Language=English -ERROR_DS_NOT_SUPPORTED - The specified method is not supported. -. - -MessageId=8257 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_RESULTS_RETURNED -Language=English -ERROR_DS_NO_RESULTS_RETURNED - No results were returned. -. - -MessageId=8258 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CONTROL_NOT_FOUND -Language=English -ERROR_DS_CONTROL_NOT_FOUND - The specified control is not supported by the server. -. - -MessageId=8259 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CLIENT_LOOP -Language=English -ERROR_DS_CLIENT_LOOP - A referral loop was detected by the client. -. - -MessageId=8260 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REFERRAL_LIMIT_EXCEEDED -Language=English -ERROR_DS_REFERRAL_LIMIT_EXCEEDED - The preset referral limit was exceeded. -. - -MessageId=8261 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SORT_CONTROL_MISSING -Language=English -ERROR_DS_SORT_CONTROL_MISSING - The search requires a SORT control. -. - -MessageId=8262 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OFFSET_RANGE_ERROR -Language=English -ERROR_DS_OFFSET_RANGE_ERROR - The search results exceed the offset range specified. -. - -MessageId=8301 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ROOT_MUST_BE_NC -Language=English -ERROR_DS_ROOT_MUST_BE_NC - The root object must be the head of a naming context. The root object cannot have an instantiated parent. -. - -MessageId=8302 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ADD_REPLICA_INHIBITED -Language=English -ERROR_DS_ADD_REPLICA_INHIBITED - The add replica operation cannot be performed. The naming context must be writeable in order to create the replica. -. - -MessageId=8303 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_NOT_DEF_IN_SCHEMA -Language=English -ERROR_DS_ATT_NOT_DEF_IN_SCHEMA - A reference to an attribute that is not defined in the schema occurred. -. - -MessageId=8304 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MAX_OBJ_SIZE_EXCEEDED -Language=English -ERROR_DS_MAX_OBJ_SIZE_EXCEEDED - The maximum size of an object has been exceeded. -. - -MessageId=8305 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_STRING_NAME_EXISTS -Language=English -ERROR_DS_OBJ_STRING_NAME_EXISTS - An attempt was made to add an object to the directory with a name that is already in use. -. - -MessageId=8306 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA -Language=English -ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA - An attempt was made to add an object of a class that does not have an RDN defined in the schema. -. - -MessageId=8307 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_RDN_DOESNT_MATCH_SCHEMA -Language=English -ERROR_DS_RDN_DOESNT_MATCH_SCHEMA - An attempt was made to add an object using an RDN that is not the RDN defined in the schema. -. - -MessageId=8308 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_REQUESTED_ATTS_FOUND -Language=English -ERROR_DS_NO_REQUESTED_ATTS_FOUND - None of the requested attributes were found on the objects. -. - -MessageId=8309 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_USER_BUFFER_TO_SMALL -Language=English -ERROR_DS_USER_BUFFER_TO_SMALL - The user buffer is too small. -. - -MessageId=8310 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_IS_NOT_ON_OBJ -Language=English -ERROR_DS_ATT_IS_NOT_ON_OBJ - The attribute specified in the operation is not present on the object. -. - -MessageId=8311 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ILLEGAL_MOD_OPERATION -Language=English -ERROR_DS_ILLEGAL_MOD_OPERATION - Illegal modify operation. Some aspect of the modification is not permitted. -. - -MessageId=8312 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_TOO_LARGE -Language=English -ERROR_DS_OBJ_TOO_LARGE - The specified object is too large. -. - -MessageId=8313 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BAD_INSTANCE_TYPE -Language=English -ERROR_DS_BAD_INSTANCE_TYPE - The specified instance type is not valid. -. - -MessageId=8314 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MASTERDSA_REQUIRED -Language=English -ERROR_DS_MASTERDSA_REQUIRED - The operation must be performed at a master DSA. -. - -MessageId=8315 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJECT_CLASS_REQUIRED -Language=English -ERROR_DS_OBJECT_CLASS_REQUIRED - The object class attribute must be specified. -. - -MessageId=8316 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MISSING_REQUIRED_ATT -Language=English -ERROR_DS_MISSING_REQUIRED_ATT - A required attribute is missing. -. - -MessageId=8317 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_NOT_DEF_FOR_CLASS -Language=English -ERROR_DS_ATT_NOT_DEF_FOR_CLASS - An attempt was made to modify an object to include an attribute that is not legal for its class -. - -MessageId=8318 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_ALREADY_EXISTS -Language=English -ERROR_DS_ATT_ALREADY_EXISTS - The specified attribute is already present on the object. -. - -MessageId=8320 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_ADD_ATT_VALUES -Language=English -ERROR_DS_CANT_ADD_ATT_VALUES - The specified attribute is not present, or has no values. -. - -MessageId=8321 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SINGLE_VALUE_CONSTRAINT -Language=English -ERROR_DS_SINGLE_VALUE_CONSTRAINT - Multiple values were specified for an attribute that can have only one value. -. - -MessageId=8322 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_RANGE_CONSTRAINT -Language=English -ERROR_DS_RANGE_CONSTRAINT - A value for the attribute was not in the acceptable range of values. -. - -MessageId=8323 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_VAL_ALREADY_EXISTS -Language=English -ERROR_DS_ATT_VAL_ALREADY_EXISTS - The specified value already exists. -. - -MessageId=8324 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_REM_MISSING_ATT -Language=English -ERROR_DS_CANT_REM_MISSING_ATT - The attribute cannot be removed because it is not present on the object. -. - -MessageId=8325 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_REM_MISSING_ATT_VAL -Language=English -ERROR_DS_CANT_REM_MISSING_ATT_VAL - The attribute value cannot be removed because it is not present on the object. -. - -MessageId=8326 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ROOT_CANT_BE_SUBREF -Language=English -ERROR_DS_ROOT_CANT_BE_SUBREF - The specified root object cannot be a subref. -. - -MessageId=8327 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_CHAINING -Language=English -ERROR_DS_NO_CHAINING - Chaining is not permitted. -. - -MessageId=8328 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_CHAINED_EVAL -Language=English -ERROR_DS_NO_CHAINED_EVAL - Chained evaluation is not permitted. -. - -MessageId=8329 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_PARENT_OBJECT -Language=English -ERROR_DS_NO_PARENT_OBJECT - The operation could not be performed because the object's parent is either uninstantiated or deleted. -. - -MessageId=8330 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_PARENT_IS_AN_ALIAS -Language=English -ERROR_DS_PARENT_IS_AN_ALIAS - Having a parent that is an alias is not permitted. Aliases are leaf objects. -. - -MessageId=8331 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MIX_MASTER_AND_REPS -Language=English -ERROR_DS_CANT_MIX_MASTER_AND_REPS - The object and parent must be of the same type, either both masters or both replicas. -. - -MessageId=8332 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CHILDREN_EXIST -Language=English -ERROR_DS_CHILDREN_EXIST - The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object. -. - -MessageId=8333 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_NOT_FOUND -Language=English -ERROR_DS_OBJ_NOT_FOUND - Directory object not found. -. - -MessageId=8334 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ALIASED_OBJ_MISSING -Language=English -ERROR_DS_ALIASED_OBJ_MISSING - The aliased object is missing. -. - -MessageId=8335 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BAD_NAME_SYNTAX -Language=English -ERROR_DS_BAD_NAME_SYNTAX - The object name has bad syntax. -. - -MessageId=8336 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ALIAS_POINTS_TO_ALIAS -Language=English -ERROR_DS_ALIAS_POINTS_TO_ALIAS - It is not permitted for an alias to refer to another alias. -. - -MessageId=8337 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DEREF_ALIAS -Language=English -ERROR_DS_CANT_DEREF_ALIAS - The alias cannot be dereferenced. -. - -MessageId=8338 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OUT_OF_SCOPE -Language=English -ERROR_DS_OUT_OF_SCOPE - The operation is out of scope. -. - -MessageId=8339 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJECT_BEING_REMOVED -Language=English -ERROR_DS_OBJECT_BEING_REMOVED - The operation cannot continue because the object is in the process of being removed. -. - -MessageId=8340 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DELETE_DSA_OBJ -Language=English -ERROR_DS_CANT_DELETE_DSA_OBJ - The DSA object cannot be deleted. -. - -MessageId=8341 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GENERIC_ERROR -Language=English -ERROR_DS_GENERIC_ERROR - A directory service error has occurred. -. - -MessageId=8342 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DSA_MUST_BE_INT_MASTER -Language=English -ERROR_DS_DSA_MUST_BE_INT_MASTER - The operation can only be performed on an internal master DSA object. -. - -MessageId=8343 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CLASS_NOT_DSA -Language=English -ERROR_DS_CLASS_NOT_DSA - The object must be of class DSA. -. - -MessageId=8344 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INSUFF_ACCESS_RIGHTS -Language=English -ERROR_DS_INSUFF_ACCESS_RIGHTS - Insufficient access rights to perform the operation. -. - -MessageId=8345 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ILLEGAL_SUPERIOR -Language=English -ERROR_DS_ILLEGAL_SUPERIOR - The object cannot be added because the parent is not on the list of possible superiors. -. - -MessageId=8346 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATTRIBUTE_OWNED_BY_SAM -Language=English -ERROR_DS_ATTRIBUTE_OWNED_BY_SAM - Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM). -. - -MessageId=8347 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_TOO_MANY_PARTS -Language=English -ERROR_DS_NAME_TOO_MANY_PARTS - The name has too many parts. -. - -MessageId=8348 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_TOO_LONG -Language=English -ERROR_DS_NAME_TOO_LONG - The name is too long. -. - -MessageId=8349 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_VALUE_TOO_LONG -Language=English -ERROR_DS_NAME_VALUE_TOO_LONG - The name value is too long. -. - -MessageId=8350 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_UNPARSEABLE -Language=English -ERROR_DS_NAME_UNPARSEABLE - The directory service encountered an error parsing a name. -. - -MessageId=8351 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_TYPE_UNKNOWN -Language=English -ERROR_DS_NAME_TYPE_UNKNOWN - The directory service cannot get the attribute type for a name. -. - -MessageId=8352 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_AN_OBJECT -Language=English -ERROR_DS_NOT_AN_OBJECT - The name does not identify an object; the name identifies a phantom. -. - -MessageId=8353 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SEC_DESC_TOO_SHORT -Language=English -ERROR_DS_SEC_DESC_TOO_SHORT - The security descriptor is too short. -. - -MessageId=8354 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SEC_DESC_INVALID -Language=English -ERROR_DS_SEC_DESC_INVALID - The security descriptor is invalid. -. - -MessageId=8355 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_DELETED_NAME -Language=English -ERROR_DS_NO_DELETED_NAME - Failed to create name for deleted object. -. - -MessageId=8356 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SUBREF_MUST_HAVE_PARENT -Language=English -ERROR_DS_SUBREF_MUST_HAVE_PARENT - The parent of a new subref must exist. -. - -MessageId=8357 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NCNAME_MUST_BE_NC -Language=English -ERROR_DS_NCNAME_MUST_BE_NC - The object must be a naming context. -. - -MessageId=8358 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_ADD_SYSTEM_ONLY -Language=English -ERROR_DS_CANT_ADD_SYSTEM_ONLY - It is not permitted to add an attribute which is owned by the system. -. - -MessageId=8359 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CLASS_MUST_BE_CONCRETE -Language=English -ERROR_DS_CLASS_MUST_BE_CONCRETE - The class of the object must be structural; you cannot instantiate an abstract class. -. - -MessageId=8360 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_DMD -Language=English -ERROR_DS_INVALID_DMD - The schema object could not be found. -. - -MessageId=8361 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_GUID_EXISTS -Language=English -ERROR_DS_OBJ_GUID_EXISTS - A local object with this GUID (dead or alive) already exists. -. - -MessageId=8362 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_ON_BACKLINK -Language=English -ERROR_DS_NOT_ON_BACKLINK - The operation cannot be performed on a back link. -. - -MessageId=8363 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_CROSSREF_FOR_NC -Language=English -ERROR_DS_NO_CROSSREF_FOR_NC - The cross reference for the specified naming context could not be found. -. - -MessageId=8364 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SHUTTING_DOWN -Language=English -ERROR_DS_SHUTTING_DOWN - The operation could not be performed because the directory service is shutting down. -. - -MessageId=8365 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNKNOWN_OPERATION -Language=English -ERROR_DS_UNKNOWN_OPERATION - The directory service request is invalid. -. - -MessageId=8366 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_ROLE_OWNER -Language=English -ERROR_DS_INVALID_ROLE_OWNER - The role owner attribute could not be read. -. - -MessageId=8367 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COULDNT_CONTACT_FSMO -Language=English -ERROR_DS_COULDNT_CONTACT_FSMO - The requested FSMO operation failed. The current FSMO holder could not be reached. -. - -MessageId=8368 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CROSS_NC_DN_RENAME -Language=English -ERROR_DS_CROSS_NC_DN_RENAME - Modification of a DN across a naming context is not permitted. -. - -MessageId=8369 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOD_SYSTEM_ONLY -Language=English -ERROR_DS_CANT_MOD_SYSTEM_ONLY - The attribute cannot be modified because it is owned by the system. -. - -MessageId=8370 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REPLICATOR_ONLY -Language=English -ERROR_DS_REPLICATOR_ONLY - Only the replicator can perform this function. -. - -MessageId=8371 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_CLASS_NOT_DEFINED -Language=English -ERROR_DS_OBJ_CLASS_NOT_DEFINED - The specified class is not defined. -. - -MessageId=8372 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OBJ_CLASS_NOT_SUBCLASS -Language=English -ERROR_DS_OBJ_CLASS_NOT_SUBCLASS - The specified class is not a subclass. -. - -MessageId=8373 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_REFERENCE_INVALID -Language=English -ERROR_DS_NAME_REFERENCE_INVALID - The name reference is invalid. -. - -MessageId=8374 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CROSS_REF_EXISTS -Language=English -ERROR_DS_CROSS_REF_EXISTS - A cross reference already exists. -. - -MessageId=8375 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DEL_MASTER_CROSSREF -Language=English -ERROR_DS_CANT_DEL_MASTER_CROSSREF - It is not permitted to delete a master cross reference. -. - -MessageId=8376 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD -Language=English -ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD - Subtree notifications are only supported on NC heads. -. - -MessageId=8377 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX -Language=English -ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX - Notification filter is too complex. -. - -MessageId=8378 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_RDN -Language=English -ERROR_DS_DUP_RDN - Schema update failed: duplicate RDN. -. - -MessageId=8379 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_OID -Language=English -ERROR_DS_DUP_OID - Schema update failed: duplicate OID -. - -MessageId=8380 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_MAPI_ID -Language=English -ERROR_DS_DUP_MAPI_ID - Schema update failed: duplicate MAPI identifier. -. - -MessageId=8381 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_SCHEMA_ID_GUID -Language=English -ERROR_DS_DUP_SCHEMA_ID_GUID - Schema update failed: duplicate schema-id GUID. -. - -MessageId=8382 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_LDAP_DISPLAY_NAME -Language=English -ERROR_DS_DUP_LDAP_DISPLAY_NAME - Schema update failed: duplicate LDAP display name. -. - -MessageId=8383 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SEMANTIC_ATT_TEST -Language=English -ERROR_DS_SEMANTIC_ATT_TEST - Schema update failed: range-lower less than range upper -. - -MessageId=8384 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SYNTAX_MISMATCH -Language=English -ERROR_DS_SYNTAX_MISMATCH - Schema update failed: syntax mismatch -. - -MessageId=8385 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTS_IN_MUST_HAVE -Language=English -ERROR_DS_EXISTS_IN_MUST_HAVE - Schema deletion failed: attribute is used in must-contain -. - -MessageId=8386 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTS_IN_MAY_HAVE -Language=English -ERROR_DS_EXISTS_IN_MAY_HAVE - Schema deletion failed: attribute is used in may-contain -. - -MessageId=8387 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NONEXISTENT_MAY_HAVE -Language=English -ERROR_DS_NONEXISTENT_MAY_HAVE - Schema update failed: attribute in may-contain does not exist -. - -MessageId=8388 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NONEXISTENT_MUST_HAVE -Language=English -ERROR_DS_NONEXISTENT_MUST_HAVE - Schema update failed: attribute in must-contain does not exist -. - -MessageId=8389 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_AUX_CLS_TEST_FAIL -Language=English -ERROR_DS_AUX_CLS_TEST_FAIL - Schema update failed: class in aux-class list does not exist or is not an auxiliary class -. - -MessageId=8390 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NONEXISTENT_POSS_SUP -Language=English -ERROR_DS_NONEXISTENT_POSS_SUP - Schema update failed: class in poss-superiors does not exist -. - -MessageId=8391 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SUB_CLS_TEST_FAIL -Language=English -ERROR_DS_SUB_CLS_TEST_FAIL - Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules -. - -MessageId=8392 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BAD_RDN_ATT_ID_SYNTAX -Language=English -ERROR_DS_BAD_RDN_ATT_ID_SYNTAX - Schema update failed: Rdn-Att-Id has wrong syntax -. - -MessageId=8393 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTS_IN_AUX_CLS -Language=English -ERROR_DS_EXISTS_IN_AUX_CLS - Schema deletion failed: class is used as auxiliary class -. - -MessageId=8394 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTS_IN_SUB_CLS -Language=English -ERROR_DS_EXISTS_IN_SUB_CLS - Schema deletion failed: class is used as sub class -. - -MessageId=8395 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTS_IN_POSS_SUP -Language=English -ERROR_DS_EXISTS_IN_POSS_SUP - Schema deletion failed: class is used as poss superior -. - -MessageId=8396 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_RECALCSCHEMA_FAILED -Language=English -ERROR_DS_RECALCSCHEMA_FAILED - Schema update failed in recalculating validation cache. -. - -MessageId=8397 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_TREE_DELETE_NOT_FINISHED -Language=English -ERROR_DS_TREE_DELETE_NOT_FINISHED - The tree deletion is not finished. -. - -MessageId=8398 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DELETE -Language=English -ERROR_DS_CANT_DELETE - The requested delete operation could not be performed. -. - -MessageId=8399 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_SCHEMA_REQ_ID -Language=English -ERROR_DS_ATT_SCHEMA_REQ_ID - Cannot read the governs class identifier for the schema record. -. - -MessageId=8400 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BAD_ATT_SCHEMA_SYNTAX -Language=English -ERROR_DS_BAD_ATT_SCHEMA_SYNTAX - The attribute schema has bad syntax. -. - -MessageId=8401 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_CACHE_ATT -Language=English -ERROR_DS_CANT_CACHE_ATT - The attribute could not be cached. -. - -MessageId=8402 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_CACHE_CLASS -Language=English -ERROR_DS_CANT_CACHE_CLASS - The class could not be cached. -. - -MessageId=8403 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_REMOVE_ATT_CACHE -Language=English -ERROR_DS_CANT_REMOVE_ATT_CACHE - The attribute could not be removed from the cache. -. - -MessageId=8404 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_REMOVE_CLASS_CACHE -Language=English -ERROR_DS_CANT_REMOVE_CLASS_CACHE - The class could not be removed from the cache. -. - -MessageId=8405 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_RETRIEVE_DN -Language=English -ERROR_DS_CANT_RETRIEVE_DN - The distinguished name attribute could not be read. -. - -MessageId=8406 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MISSING_SUPREF -Language=English -ERROR_DS_MISSING_SUPREF - No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest. -. - -MessageId=8407 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_RETRIEVE_INSTANCE -Language=English -ERROR_DS_CANT_RETRIEVE_INSTANCE - The instance type attribute could not be retrieved. -. - -MessageId=8408 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CODE_INCONSISTENCY -Language=English -ERROR_DS_CODE_INCONSISTENCY - An internal error has occurred. -. - -MessageId=8409 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DATABASE_ERROR -Language=English -ERROR_DS_DATABASE_ERROR - A database error has occurred. -. - -MessageId=8410 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GOVERNSID_MISSING -Language=English -ERROR_DS_GOVERNSID_MISSING - The attribute GOVERNSID is missing. -. - -MessageId=8411 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MISSING_EXPECTED_ATT -Language=English -ERROR_DS_MISSING_EXPECTED_ATT - An expected attribute is missing. -. - -MessageId=8412 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NCNAME_MISSING_CR_REF -Language=English -ERROR_DS_NCNAME_MISSING_CR_REF - The specified naming context is missing a cross reference. -. - -MessageId=8413 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SECURITY_CHECKING_ERROR -Language=English -ERROR_DS_SECURITY_CHECKING_ERROR - A security checking error has occurred. -. - -MessageId=8414 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SCHEMA_NOT_LOADED -Language=English -ERROR_DS_SCHEMA_NOT_LOADED - The schema is not loaded. -. - -MessageId=8415 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SCHEMA_ALLOC_FAILED -Language=English -ERROR_DS_SCHEMA_ALLOC_FAILED - Schema allocation failed. Please check if the machine is running low on memory. -. - -MessageId=8416 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ATT_SCHEMA_REQ_SYNTAX -Language=English -ERROR_DS_ATT_SCHEMA_REQ_SYNTAX - Failed to obtain the required syntax for the attribute schema. -. - -MessageId=8417 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GCVERIFY_ERROR -Language=English -ERROR_DS_GCVERIFY_ERROR - The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available. -. - -MessageId=8418 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SCHEMA_MISMATCH -Language=English -ERROR_DS_DRA_SCHEMA_MISMATCH - The replication operation failed because of a schema mismatch between the servers involved. -. - -MessageId=8419 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_FIND_DSA_OBJ -Language=English -ERROR_DS_CANT_FIND_DSA_OBJ - The DSA object could not be found. -. - -MessageId=8420 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_FIND_EXPECTED_NC -Language=English -ERROR_DS_CANT_FIND_EXPECTED_NC - The naming context could not be found. -. - -MessageId=8421 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_FIND_NC_IN_CACHE -Language=English -ERROR_DS_CANT_FIND_NC_IN_CACHE - The naming context could not be found in the cache. -. - -MessageId=8422 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_RETRIEVE_CHILD -Language=English -ERROR_DS_CANT_RETRIEVE_CHILD - The child object could not be retrieved. -. - -MessageId=8423 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SECURITY_ILLEGAL_MODIFY -Language=English -ERROR_DS_SECURITY_ILLEGAL_MODIFY - The modification was not permitted for security reasons. -. - -MessageId=8424 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_REPLACE_HIDDEN_REC -Language=English -ERROR_DS_CANT_REPLACE_HIDDEN_REC - The operation cannot replace the hidden record. -. - -MessageId=8425 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BAD_HIERARCHY_FILE -Language=English -ERROR_DS_BAD_HIERARCHY_FILE - The hierarchy file is invalid. -. - -MessageId=8426 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED -Language=English -ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED - The attempt to build the hierarchy table failed. -. - -MessageId=8427 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CONFIG_PARAM_MISSING -Language=English -ERROR_DS_CONFIG_PARAM_MISSING - The directory configuration parameter is missing from the registry. -. - -MessageId=8428 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COUNTING_AB_INDICES_FAILED -Language=English -ERROR_DS_COUNTING_AB_INDICES_FAILED - The attempt to count the address book indices failed. -. - -MessageId=8429 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED -Language=English -ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED - The allocation of the hierarchy table failed. -. - -MessageId=8430 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INTERNAL_FAILURE -Language=English -ERROR_DS_INTERNAL_FAILURE - The directory service encountered an internal failure. -. - -MessageId=8431 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNKNOWN_ERROR -Language=English -ERROR_DS_UNKNOWN_ERROR - The directory service encountered an unknown failure. -. - -MessageId=8432 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ROOT_REQUIRES_CLASS_TOP -Language=English -ERROR_DS_ROOT_REQUIRES_CLASS_TOP - A root object requires a class of 'top'. -. - -MessageId=8433 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REFUSING_FSMO_ROLES -Language=English -ERROR_DS_REFUSING_FSMO_ROLES - This directory server is shutting down, and cannot take ownership of new floating single-master operation roles. -. - -MessageId=8434 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MISSING_FSMO_SETTINGS -Language=English -ERROR_DS_MISSING_FSMO_SETTINGS - The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles. -. - -MessageId=8435 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNABLE_TO_SURRENDER_ROLES -Language=English -ERROR_DS_UNABLE_TO_SURRENDER_ROLES - The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers. -. - -MessageId=8436 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_GENERIC -Language=English -ERROR_DS_DRA_GENERIC - The replication operation failed. -. - -MessageId=8437 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_INVALID_PARAMETER -Language=English -ERROR_DS_DRA_INVALID_PARAMETER - An invalid parameter was specified for this replication operation. -. - -MessageId=8438 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_BUSY -Language=English -ERROR_DS_DRA_BUSY - The directory service is too busy to complete the replication operation at this time. -. - -MessageId=8439 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_BAD_DN -Language=English -ERROR_DS_DRA_BAD_DN - The distinguished name specified for this replication operation is invalid. -. - -MessageId=8440 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_BAD_NC -Language=English -ERROR_DS_DRA_BAD_NC - The naming context specified for this replication operation is invalid. -. - -MessageId=8441 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_DN_EXISTS -Language=English -ERROR_DS_DRA_DN_EXISTS - The distinguished name specified for this replication operation already exists. -. - -MessageId=8442 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_INTERNAL_ERROR -Language=English -ERROR_DS_DRA_INTERNAL_ERROR - The replication system encountered an internal error. -. - -MessageId=8443 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_INCONSISTENT_DIT -Language=English -ERROR_DS_DRA_INCONSISTENT_DIT - The replication operation encountered a database inconsistency. -. - -MessageId=8444 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_CONNECTION_FAILED -Language=English -ERROR_DS_DRA_CONNECTION_FAILED - The server specified for this replication operation could not be contacted. -. - -MessageId=8445 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_BAD_INSTANCE_TYPE -Language=English -ERROR_DS_DRA_BAD_INSTANCE_TYPE - The replication operation encountered an object with an invalid instance type. -. - -MessageId=8446 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_OUT_OF_MEM -Language=English -ERROR_DS_DRA_OUT_OF_MEM - The replication operation failed to allocate memory. -. - -MessageId=8447 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_MAIL_PROBLEM -Language=English -ERROR_DS_DRA_MAIL_PROBLEM - The replication operation encountered an error with the mail system. -. - -MessageId=8448 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_REF_ALREADY_EXISTS -Language=English -ERROR_DS_DRA_REF_ALREADY_EXISTS - The replication reference information for the target server already exists. -. - -MessageId=8449 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_REF_NOT_FOUND -Language=English -ERROR_DS_DRA_REF_NOT_FOUND - The replication reference information for the target server does not exist. -. - -MessageId=8450 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_OBJ_IS_REP_SOURCE -Language=English -ERROR_DS_DRA_OBJ_IS_REP_SOURCE - The naming context cannot be removed because it is replicated to another server. -. - -MessageId=8451 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_DB_ERROR -Language=English -ERROR_DS_DRA_DB_ERROR - The replication operation encountered a database error. -. - -MessageId=8452 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_NO_REPLICA -Language=English -ERROR_DS_DRA_NO_REPLICA - The naming context is in the process of being removed or is not replicated from the specified server. -. - -MessageId=8453 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_ACCESS_DENIED -Language=English -ERROR_DS_DRA_ACCESS_DENIED - Replication access was denied. -. - -MessageId=8454 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_NOT_SUPPORTED -Language=English -ERROR_DS_DRA_NOT_SUPPORTED - The requested operation is not supported by this version of the directory service. -. - -MessageId=8455 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_RPC_CANCELLED -Language=English -ERROR_DS_DRA_RPC_CANCELLED - The replication remote procedure call was cancelled. -. - -MessageId=8456 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SOURCE_DISABLED -Language=English -ERROR_DS_DRA_SOURCE_DISABLED - The source server is currently rejecting replication requests. -. - -MessageId=8457 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SINK_DISABLED -Language=English -ERROR_DS_DRA_SINK_DISABLED - The destination server is currently rejecting replication requests. -. - -MessageId=8458 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_NAME_COLLISION -Language=English -ERROR_DS_DRA_NAME_COLLISION - The replication operation failed due to a collision of object names. -. - -MessageId=8459 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SOURCE_REINSTALLED -Language=English -ERROR_DS_DRA_SOURCE_REINSTALLED - The replication source has been reinstalled. -. - -MessageId=8460 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_MISSING_PARENT -Language=English -ERROR_DS_DRA_MISSING_PARENT - The replication operation failed because a required parent object is missing. -. - -MessageId=8461 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_PREEMPTED -Language=English -ERROR_DS_DRA_PREEMPTED - The replication operation was preempted. -. - -MessageId=8462 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_ABANDON_SYNC -Language=English -ERROR_DS_DRA_ABANDON_SYNC - The replication synchronization attempt was abandoned because of a lack of updates. -. - -MessageId=8463 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SHUTDOWN -Language=English -ERROR_DS_DRA_SHUTDOWN - The replication operation was terminated because the system is shutting down. -. - -MessageId=8464 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET -Language=English -ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET - Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of the source partial attribute set. -. - -MessageId=8465 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA -Language=English -ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA - The replication synchronization attempt failed because a master replica attempted to sync from a partial replica. -. - -MessageId=8466 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_EXTN_CONNECTION_FAILED -Language=English -ERROR_DS_DRA_EXTN_CONNECTION_FAILED - The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation. -. - -MessageId=8467 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INSTALL_SCHEMA_MISMATCH -Language=English -ERROR_DS_INSTALL_SCHEMA_MISMATCH - The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer. -. - -MessageId=8468 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_LINK_ID -Language=English -ERROR_DS_DUP_LINK_ID - Schema update failed: An attribute with the same link identifier already exists. -. - -MessageId=8469 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_RESOLVING -Language=English -ERROR_DS_NAME_ERROR_RESOLVING - Name translation: Generic processing error. -. - -MessageId=8470 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_NOT_FOUND -Language=English -ERROR_DS_NAME_ERROR_NOT_FOUND - Name translation: Could not find the name or insufficient right to see name. -. - -MessageId=8471 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_NOT_UNIQUE -Language=English -ERROR_DS_NAME_ERROR_NOT_UNIQUE - Name translation: Input name mapped to more than one output name. -. - -MessageId=8472 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_NO_MAPPING -Language=English -ERROR_DS_NAME_ERROR_NO_MAPPING - Name translation: Input name found, but not the associated output format. -. - -MessageId=8473 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_DOMAIN_ONLY -Language=English -ERROR_DS_NAME_ERROR_DOMAIN_ONLY - Name translation: Unable to resolve completely, only the domain was found. -. - -MessageId=8474 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING -Language=English -ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING - Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire. -. - -MessageId=8475 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CONSTRUCTED_ATT_MOD -Language=English -ERROR_DS_CONSTRUCTED_ATT_MOD - Modification of a constructed attribute is not allowed. -. - -MessageId=8476 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_WRONG_OM_OBJ_CLASS -Language=English -ERROR_DS_WRONG_OM_OBJ_CLASS - The OM-Object-Class specified is incorrect for an attribute with the specified syntax. -. - -MessageId=8477 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_REPL_PENDING -Language=English -ERROR_DS_DRA_REPL_PENDING - The replication request has been posted; waiting for reply. -. - -MessageId=8478 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DS_REQUIRED -Language=English -ERROR_DS_DS_REQUIRED - The requested operation requires a directory service, and none was available. -. - -MessageId=8479 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_LDAP_DISPLAY_NAME -Language=English -ERROR_DS_INVALID_LDAP_DISPLAY_NAME - The LDAP display name of the class or attribute contains non-ASCII characters. -. - -MessageId=8480 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NON_BASE_SEARCH -Language=English -ERROR_DS_NON_BASE_SEARCH - The requested search operation is only supported for base searches. -. - -MessageId=8481 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_RETRIEVE_ATTS -Language=English -ERROR_DS_CANT_RETRIEVE_ATTS - The search failed to retrieve attributes from the database. -. - -MessageId=8482 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_BACKLINK_WITHOUT_LINK -Language=English -ERROR_DS_BACKLINK_WITHOUT_LINK - The schema update operation tried to add a backward link attribute that has no corresponding forward link. -. - -MessageId=8483 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EPOCH_MISMATCH -Language=English -ERROR_DS_EPOCH_MISMATCH - Source and destination of a cross domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object. -. - -MessageId=8484 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_NAME_MISMATCH -Language=English -ERROR_DS_SRC_NAME_MISMATCH - Source and destination of a cross domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object. -. - -MessageId=8485 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_AND_DST_NC_IDENTICAL -Language=English -ERROR_DS_SRC_AND_DST_NC_IDENTICAL - Source and destination of a cross domain move operation are identical. Caller should use local move operation instead of cross domain move operation. -. - -MessageId=8486 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DST_NC_MISMATCH -Language=English -ERROR_DS_DST_NC_MISMATCH - Source and destination for a cross domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container. -. - -MessageId=8487 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC -Language=English -ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC - Destination of a cross domain move is not authoritative for the destination naming context. -. - -MessageId=8488 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_GUID_MISMATCH -Language=English -ERROR_DS_SRC_GUID_MISMATCH - Source and destination of a cross domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object. -. - -MessageId=8489 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOVE_DELETED_OBJECT -Language=English -ERROR_DS_CANT_MOVE_DELETED_OBJECT - Object being moved across domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object. -. - -MessageId=8490 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_PDC_OPERATION_IN_PROGRESS -Language=English -ERROR_DS_PDC_OPERATION_IN_PROGRESS - Another operation, which requires exclusive access to the PDC PSMO, is already in progress. -. - -MessageId=8491 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD -Language=English -ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD - A cross domain move operation failed such that the two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state. -. - -MessageId=8492 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION -Language=English -ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION - This object may not be moved across domain boundaries either because cross domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move. -. - -MessageId=8493 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS -Language=English -ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS - Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry. -. - -MessageId=8494 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NC_MUST_HAVE_NC_PARENT -Language=English -ERROR_DS_NC_MUST_HAVE_NC_PARENT - A naming context head must be the immediate child of another naming context head, not of an interior node. -. - -MessageId=8495 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE -Language=English -ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE - The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters) -. - -MessageId=8496 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DST_DOMAIN_NOT_NATIVE -Language=English -ERROR_DS_DST_DOMAIN_NOT_NATIVE - Destination domain must be in native mode. -. - -MessageId=8497 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER -Language=English -ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER - The operation cannot be performed because the server does not have an infrastructure container in the domain of interest. -. - -MessageId=8498 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOVE_ACCOUNT_GROUP -Language=English -ERROR_DS_CANT_MOVE_ACCOUNT_GROUP - Cross-domain move of non-empty account groups is not allowed. -. - -MessageId=8499 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOVE_RESOURCE_GROUP -Language=English -ERROR_DS_CANT_MOVE_RESOURCE_GROUP - Cross-domain move of non-empty resource groups is not allowed. -. - -MessageId=8500 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_SEARCH_FLAG -Language=English -ERROR_DS_INVALID_SEARCH_FLAG - The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings. -. - -MessageId=8501 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_TREE_DELETE_ABOVE_NC -Language=English -ERROR_DS_NO_TREE_DELETE_ABOVE_NC - Tree deletions starting at an object which has an NC head as a descendant are not allowed. -. - -MessageId=8502 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE -Language=English -ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE - The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use. -. - -MessageId=8503 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE -Language=English -ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE - The directory service failed to identify the list of objects to delete while attempting a tree deletion. -. - -MessageId=8504 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SAM_INIT_FAILURE -Language=English -ERROR_DS_SAM_INIT_FAILURE - Security Accounts Manager initialization failed because of the following error: %1. -Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information. -. - -MessageId=8505 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SENSITIVE_GROUP_VIOLATION -Language=English -ERROR_DS_SENSITIVE_GROUP_VIOLATION - Only an administrator can modify the membership list of an administrative group. -. - -MessageId=8506 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOD_PRIMARYGROUPID -Language=English -ERROR_DS_CANT_MOD_PRIMARYGROUPID - Cannot change the primary group ID of a domain controller account. -. - -MessageId=8507 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD -Language=English -ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD - An attempt is made to modify the base schema. -. - -MessageId=8508 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NONSAFE_SCHEMA_CHANGE -Language=English -ERROR_DS_NONSAFE_SCHEMA_CHANGE - Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed. -. - -MessageId=8509 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SCHEMA_UPDATE_DISALLOWED -Language=English -ERROR_DS_SCHEMA_UPDATE_DISALLOWED - Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner. -. - -MessageId=8510 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_CREATE_UNDER_SCHEMA -Language=English -ERROR_DS_CANT_CREATE_UNDER_SCHEMA - An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container. -. - -MessageId=8511 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INSTALL_NO_SRC_SCH_VERSION -Language=English -ERROR_DS_INSTALL_NO_SRC_SCH_VERSION - The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it. -. - -MessageId=8512 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE -Language=English -ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE - The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory. -. - -MessageId=8513 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_GROUP_TYPE -Language=English -ERROR_DS_INVALID_GROUP_TYPE - The specified group type is invalid. -. - -MessageId=8514 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN -Language=English -ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN - Cannot nest global groups in a mixed domain if the group is security-enabled. -. - -MessageId=8515 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN -Language=English -ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN - Cannot nest local groups in a mixed domain if the group is security-enabled. -. - -MessageId=8516 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER -Language=English -ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER - A global group cannot have a local group as a member. -. - -MessageId=8517 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER -Language=English -ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER - A global group cannot have a universal group as a member. -. - -MessageId=8518 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER -Language=English -ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER - A universal group cannot have a local group as a member. -. - -MessageId=8519 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER -Language=English -ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER - A global group cannot have a cross-domain member. -. - -MessageId=8520 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER -Language=English -ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER - A local group cannot have another cross-domain local group as a member. -. - -MessageId=8521 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_HAVE_PRIMARY_MEMBERS -Language=English -ERROR_DS_HAVE_PRIMARY_MEMBERS - A group with primary members cannot change to a security-disabled group. -. - -MessageId=8522 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_STRING_SD_CONVERSION_FAILED -Language=English -ERROR_DS_STRING_SD_CONVERSION_FAILED - The schema cache load failed to convert the string default SD on a class-schema object. -. - -MessageId=8523 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAMING_MASTER_GC -Language=English -ERROR_DS_NAMING_MASTER_GC - Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers) -. - -MessageId=8524 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LOOKUP_FAILURE -Language=English -ERROR_DS_LOOKUP_FAILURE - The DSA operation is unable to proceed because of a DNS lookup failure. -. - -MessageId=8525 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_COULDNT_UPDATE_SPNS -Language=English -ERROR_DS_COULDNT_UPDATE_SPNS - While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync. -. - -MessageId=8526 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_RETRIEVE_SD -Language=English -ERROR_DS_CANT_RETRIEVE_SD - The Security Descriptor attribute could not be read. -. - -MessageId=8527 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_KEY_NOT_UNIQUE -Language=English -ERROR_DS_KEY_NOT_UNIQUE - The object requested was not found, but an object with that key was found. -. - -MessageId=8528 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_WRONG_LINKED_ATT_SYNTAX -Language=English -ERROR_DS_WRONG_LINKED_ATT_SYNTAX - The syntax of the linked attributed being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1. -. - -MessageId=8529 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD -Language=English -ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD - Security Account Manager needs to get the boot password. -. - -MessageId=8530 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY -Language=English -ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY - Security Account Manager needs to get the boot key from floppy disk. -. - -MessageId=8531 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_START -Language=English -ERROR_DS_CANT_START - Directory Service cannot start. -. - -MessageId=8532 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INIT_FAILURE -Language=English -ERROR_DS_INIT_FAILURE - Directory Services could not start. -. - -MessageId=8533 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION -Language=English -ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION - The connection between client and server requires packet privacy or better. -. - -MessageId=8534 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SOURCE_DOMAIN_IN_FOREST -Language=English -ERROR_DS_SOURCE_DOMAIN_IN_FOREST - The source domain may not be in the same forest as destination. -. - -MessageId=8535 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST -Language=English -ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST - The destination domain must be in the forest. -. - -MessageId=8536 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED -Language=English -ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED - The operation requires that destination domain auditing be enabled. -. - -MessageId=8537 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN -Language=English -ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN - The operation couldn't locate a DC for the source domain. -. - -MessageId=8538 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER -Language=English -ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER - The source object must be a group or user. -. - -MessageId=8539 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_SID_EXISTS_IN_FOREST -Language=English -ERROR_DS_SRC_SID_EXISTS_IN_FOREST - The source object's SID already exists in destination forest. -. - -MessageId=8540 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH -Language=English -ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH - The source and destination object must be of the same type. -. - -MessageId=8541 -Severity=Success -Facility=System -SymbolicName=ERROR_SAM_INIT_FAILURE -Language=English -ERROR_SAM_INIT_FAILURE - Security Accounts Manager initialization failed because of the following error: %1. -Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information. -. - -MessageId=8542 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SCHEMA_INFO_SHIP -Language=English -ERROR_DS_DRA_SCHEMA_INFO_SHIP - Schema information could not be included in the replication request. -. - -MessageId=8543 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_SCHEMA_CONFLICT -Language=English -ERROR_DS_DRA_SCHEMA_CONFLICT - The replication operation could not be completed due to a schema incompatibility. -. - -MessageId=8544 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_EARLIER_SCHEMA_CONLICT -Language=English -ERROR_DS_DRA_EARLIER_SCHEMA_CONLICT - The replication operation could not be completed due to a previous schema incompatibility. -. - -MessageId=8545 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_OBJ_NC_MISMATCH -Language=English -ERROR_DS_DRA_OBJ_NC_MISMATCH - The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation. -. - -MessageId=8546 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NC_STILL_HAS_DSAS -Language=English -ERROR_DS_NC_STILL_HAS_DSAS - The requested domain could not be deleted because there exist domain controllers that still host this domain. -. - -MessageId=8547 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GC_REQUIRED -Language=English -ERROR_DS_GC_REQUIRED - The requested operation can be performed only on a global catalog server. -. - -MessageId=8548 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY -Language=English -ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY - A local group can only be a member of other local groups in the same domain. -. - -MessageId=8549 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS -Language=English -ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS - Foreign security principals cannot be members of universal groups. -. - -MessageId=8550 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_ADD_TO_GC -Language=English -ERROR_DS_CANT_ADD_TO_GC - The attribute is not allowed to be replicated to the GC because of security reasons. -. - -MessageId=8551 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_CHECKPOINT_WITH_PDC -Language=English -ERROR_DS_NO_CHECKPOINT_WITH_PDC - The checkpoint with the PDC could not be taken because there are too many modifications being processed currently. -. - -MessageId=8552 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SOURCE_AUDITING_NOT_ENABLED -Language=English -ERROR_DS_SOURCE_AUDITING_NOT_ENABLED - The operation requires that source domain auditing be enabled. -. - -MessageId=8553 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC -Language=English -ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC - Security principal objects can only be created inside domain naming contexts. -. - -MessageId=8554 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_NAME_FOR_SPN -Language=English -ERROR_DS_INVALID_NAME_FOR_SPN - A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format. -. - -MessageId=8555 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS -Language=English -ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS - A Filter was passed that uses constructed attributes. -. - -MessageId=8556 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_UNICODEPWD_NOT_IN_QUOTES -Language=English -ERROR_DS_UNICODEPWD_NOT_IN_QUOTES - The unicodePwd attribute value must be enclosed in double quotes. -. - -MessageId=8557 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED -Language=English -ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED - Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased. -. - -MessageId=8558 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MUST_BE_RUN_ON_DST_DC -Language=English -ERROR_DS_MUST_BE_RUN_ON_DST_DC - For security reasons, the operation must be run on the destination DC. -. - -MessageId=8559 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER -Language=English -ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER - For security reasons, the source DC must be NT4SP4 or greater. -. - -MessageId=8560 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ -Language=English -ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ - Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed. -. - -MessageId=8561 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INIT_FAILURE_CONSOLE -Language=English -ERROR_DS_INIT_FAILURE_CONSOLE - Directory Services could not start because of the following error: %1. -Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. -. - -MessageId=8562 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SAM_INIT_FAILURE_CONSOLE -Language=English -ERROR_DS_SAM_INIT_FAILURE_CONSOLE - Security Accounts Manager initialization failed because of the following error: %1. -Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. -. - -MessageId=8563 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_FOREST_VERSION_TOO_HIGH -Language=English -ERROR_DS_FOREST_VERSION_TOO_HIGH - The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest. -. - -MessageId=8564 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DOMAIN_VERSION_TOO_HIGH -Language=English -ERROR_DS_DOMAIN_VERSION_TOO_HIGH - The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain. -. - -MessageId=8565 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_FOREST_VERSION_TOO_LOW -Language=English -ERROR_DS_FOREST_VERSION_TOO_LOW - This version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest. -. - -MessageId=8566 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DOMAIN_VERSION_TOO_LOW -Language=English -ERROR_DS_DOMAIN_VERSION_TOO_LOW - This version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain. -. - -MessageId=8567 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INCOMPATIBLE_VERSION -Language=English -ERROR_DS_INCOMPATIBLE_VERSION - The version of the operating system installed on this server is incompatible with the functional level of the domain or forest. -. - -MessageId=8568 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LOW_DSA_VERSION -Language=English -ERROR_DS_LOW_DSA_VERSION - The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level. -. - -MessageId=8569 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN -Language=English -ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN - The forest functional level cannot be raised to the requested level since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode before you can raise the forest functional level. -. - -MessageId=8570 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_SUPPORTED_SORT_ORDER -Language=English -ERROR_DS_NOT_SUPPORTED_SORT_ORDER - The sort order requested is not supported. -. - -MessageId=8571 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_NOT_UNIQUE -Language=English -ERROR_DS_NAME_NOT_UNIQUE - The requested name already exists as a unique identifier. -. - -MessageId=8572 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 -Language=English -ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 - The machine account was created pre-NT4. The account needs to be recreated. -. - -MessageId=8573 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_OUT_OF_VERSION_STORE -Language=English -ERROR_DS_OUT_OF_VERSION_STORE - The database is out of version store. -. - -MessageId=8574 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INCOMPATIBLE_CONTROLS_USED -Language=English -ERROR_DS_INCOMPATIBLE_CONTROLS_USED - Unable to continue operation because multiple conflicting controls were used. -. - -MessageId=8575 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_REF_DOMAIN -Language=English -ERROR_DS_NO_REF_DOMAIN - Unable to find a valid security descriptor reference domain for this partition. -. - -MessageId=8576 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_RESERVED_LINK_ID -Language=English -ERROR_DS_RESERVED_LINK_ID - Schema update failed: The link identifier is reserved. -. - -MessageId=8577 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LINK_ID_NOT_AVAILABLE -Language=English -ERROR_DS_LINK_ID_NOT_AVAILABLE - Schema update failed: There are no link identifiers available. -. - -MessageId=8578 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER -Language=English -ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER - An account group cannot have a universal group as a member. -. - -MessageId=8579 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE -Language=English -ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE - Rename or move operations on naming context heads or read-only objects are not allowed. -. - -MessageId=8580 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC -Language=English -ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC - Move operations on objects in the schema naming context are not allowed. -. - -MessageId=8581 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG -Language=English -ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG - A system flag has been set on the object and does not allow the object to be moved or renamed. -. - -MessageId=8582 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_MODIFYDN_WRONG_GRANDPARENT -Language=English -ERROR_DS_MODIFYDN_WRONG_GRANDPARENT - This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers. -. - -MessageId=8583 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NAME_ERROR_TRUST_REFERRAL -Language=English -ERROR_DS_NAME_ERROR_TRUST_REFERRAL - Unable to resolve completely, a referral to another forest is generated. -. - -MessageId=8584 -Severity=Success -Facility=System -SymbolicName=ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER -Language=English -ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER - The requested action is not supported on standard server. -. - -MessageId=8585 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD -Language=English -ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD - Could not access a partition of the Active Directory located on a remote server. Make sure at least one server is running for the partition in question. -. - -MessageId=8586 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 -Language=English -ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 - The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master. -. - -MessageId=8587 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_THREAD_LIMIT_EXCEEDED -Language=English -ERROR_DS_THREAD_LIMIT_EXCEEDED - The thread limit for this request was exceeded. -. - -MessageId=8588 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NOT_CLOSEST -Language=English -ERROR_DS_NOT_CLOSEST - The Global catalog server is not in the closet site. -. - -MessageId=8589 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF -Language=English -ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF - The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute. -. - -MessageId=8590 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_SINGLE_USER_MODE_FAILED -Language=English -ERROR_DS_SINGLE_USER_MODE_FAILED - The Directory Service failed to enter single user mode. -. - -MessageId=8591 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NTDSCRIPT_SYNTAX_ERROR -Language=English -ERROR_DS_NTDSCRIPT_SYNTAX_ERROR - The Directory Service cannot parse the script because of a syntax error. -. - -MessageId=8592 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NTDSCRIPT_PROCESS_ERROR -Language=English -ERROR_DS_NTDSCRIPT_PROCESS_ERROR - The Directory Service cannot process the script because of an error. -. - -MessageId=8593 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DIFFERENT_REPL_EPOCHS -Language=English -ERROR_DS_DIFFERENT_REPL_EPOCHS - The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress). -. - -MessageId=8594 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRS_EXTENSIONS_CHANGED -Language=English -ERROR_DS_DRS_EXTENSIONS_CHANGED - The directory service binding must be renegotiated due to a change in the server extensions information. -. - -MessageId=8595 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR -Language=English -ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR - Operation not allowed on a disabled cross ref. -. - -MessageId=8596 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_NO_MSDS_INTID -Language=English -ERROR_DS_NO_MSDS_INTID - Schema update failed: No values for msDS-IntId are available. -. - -MessageId=8597 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUP_MSDS_INTID -Language=English -ERROR_DS_DUP_MSDS_INTID - Schema update failed: Duplicate msDS-IntId. Retry the operation. -. - -MessageId=8598 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTS_IN_RDNATTID -Language=English -ERROR_DS_EXISTS_IN_RDNATTID - Schema deletion failed: attribute is used in rDNAttID. -. - -MessageId=8599 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_AUTHORIZATION_FAILED -Language=English -ERROR_DS_AUTHORIZATION_FAILED - The directory service failed to authorize the request. -. - -MessageId=8600 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INVALID_SCRIPT -Language=English -ERROR_DS_INVALID_SCRIPT - The Directory Service cannot process the script because it is invalid. -. - -MessageId=8601 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REMOTE_CROSSREF_OP_FAILED -Language=English -ERROR_DS_REMOTE_CROSSREF_OP_FAILED - The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data. -. - -MessageId=8602 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CROSS_REF_BUSY -Language=English -ERROR_DS_CROSS_REF_BUSY - A cross reference is in use locally with the same name. -. - -MessageId=8603 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN -Language=English -ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN - The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest. -. - -MessageId=8604 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC -Language=English -ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC - Writeable NCs prevent this DC from demoting. -. - -MessageId=8605 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DUPLICATE_ID_FOUND -Language=English -ERROR_DS_DUPLICATE_ID_FOUND - The requested object has a non-unique identifier and cannot be retrieved. -. - -MessageId=8606 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT -Language=English -ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT - Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected. -. - -MessageId=8607 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_GROUP_CONVERSION_ERROR -Language=English -ERROR_DS_GROUP_CONVERSION_ERROR - The group cannot be converted due to attribute restrictions on the requested group type. -. - -MessageId=8608 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOVE_APP_BASIC_GROUP -Language=English -ERROR_DS_CANT_MOVE_APP_BASIC_GROUP - Cross-domain move of non-empty basic application groups is not allowed. -. - -MessageId=8609 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_CANT_MOVE_APP_QUERY_GROUP -Language=English -ERROR_DS_CANT_MOVE_APP_QUERY_GROUP - Cross-domain move on non-empty query based application groups is not allowed. -. - -MessageId=8610 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_ROLE_NOT_VERIFIED -Language=English -ERROR_DS_ROLE_NOT_VERIFIED - The role owner could not be verified because replication of its partition has not occurred recently. -. - -MessageId=8611 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL -Language=English -ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL - The target container for a redirection of a well-known object container cannot already be a special container. -. - -MessageId=8612 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DOMAIN_RENAME_IN_PROGRESS -Language=English -ERROR_DS_DOMAIN_RENAME_IN_PROGRESS - The Directory Service cannot perform the requested operation because a domain rename operation is in progress. -. - -MessageId=8613 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_EXISTING_AD_CHILD_NC -Language=English -ERROR_DS_EXISTING_AD_CHILD_NC - The Active Directory detected an Active Directory child partition below the requested new partition name. The Active Directory's partition hierarchy must be created in a top-down method. -. - -MessageId=8614 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_REPL_LIFETIME_EXCEEDED -Language=English -ERROR_DS_REPL_LIFETIME_EXCEEDED - The Active Directory cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime. -. - -MessageId=8615 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER -Language=English -ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER - The requested operation is not allowed on an object under the system container. -. - -MessageId=8616 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_LDAP_SEND_QUEUE_FULL -Language=English -ERROR_DS_LDAP_SEND_QUEUE_FULL - The LDAP servers network send queue has filled up because the client is not processing the results of it's requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected. -. - -MessageId=8617 -Severity=Success -Facility=System -SymbolicName=ERROR_DS_DRA_OUT_SCHEDULE_WINDOW -Language=English -ERROR_DS_DRA_OUT_SCHEDULE_WINDOW - The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency. -. - -MessageId=9001 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_FORMAT_ERROR -Language=English -DNS_ERROR_RCODE_FORMAT_ERROR - DNS server unable to interpret format. -. - -MessageId=9002 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_SERVER_FAILURE -Language=English -DNS_ERROR_RCODE_SERVER_FAILURE - DNS server failure. -. - -MessageId=9003 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_NAME_ERROR -Language=English -DNS_ERROR_RCODE_NAME_ERROR - DNS name does not exist. -. - -MessageId=9004 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_NOT_IMPLEMENTED -Language=English -DNS_ERROR_RCODE_NOT_IMPLEMENTED - DNS request not supported by name server. -. - -MessageId=9005 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_REFUSED -Language=English -DNS_ERROR_RCODE_REFUSED - DNS operation refused. -. - -MessageId=9006 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_YXDOMAIN -Language=English -DNS_ERROR_RCODE_YXDOMAIN - DNS name that ought not exist, does exist. -. - -MessageId=9007 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_YXRRSET -Language=English -DNS_ERROR_RCODE_YXRRSET - DNS RR set that ought not exist, does exist. -. - -MessageId=9008 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_NXRRSET -Language=English -DNS_ERROR_RCODE_NXRRSET - DNS RR set that ought to exist, does not exist. -. - -MessageId=9009 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_NOTAUTH -Language=English -DNS_ERROR_RCODE_NOTAUTH - DNS server not authoritative for zone. -. - -MessageId=9010 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_NOTZONE -Language=English -DNS_ERROR_RCODE_NOTZONE - DNS name in update or prereq is not in zone. -. - -MessageId=9016 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_BADSIG -Language=English -DNS_ERROR_RCODE_BADSIG - DNS signature failed to verify. -. - -MessageId=9017 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_BADKEY -Language=English -DNS_ERROR_RCODE_BADKEY - DNS bad key. -. - -MessageId=9018 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE_BADTIME -Language=English -DNS_ERROR_RCODE_BADTIME - DNS signature validity expired. -. - -MessageId=9501 -Severity=Success -Facility=System -SymbolicName=DNS_INFO_NO_RECORDS -Language=English -DNS_INFO_NO_RECORDS - No records found for given DNS query. -. - -MessageId=9502 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_BAD_PACKET -Language=English -DNS_ERROR_BAD_PACKET - Bad DNS packet. -. - -MessageId=9503 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NO_PACKET -Language=English -DNS_ERROR_NO_PACKET - No DNS packet. -. - -MessageId=9504 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RCODE -Language=English -DNS_ERROR_RCODE - DNS error, check rcode. -. - -MessageId=9505 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_UNSECURE_PACKET -Language=English -DNS_ERROR_UNSECURE_PACKET - Unsecured DNS packet. -. - -MessageId=9551 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_TYPE -Language=English -DNS_ERROR_INVALID_TYPE - Invalid DNS type. -. - -MessageId=9552 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_IP_ADDRESS -Language=English -DNS_ERROR_INVALID_IP_ADDRESS - Invalid IP address. -. - -MessageId=9553 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_PROPERTY -Language=English -DNS_ERROR_INVALID_PROPERTY - Invalid property. -. - -MessageId=9554 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_TRY_AGAIN_LATER -Language=English -DNS_ERROR_TRY_AGAIN_LATER - Try DNS operation again later. -. - -MessageId=9555 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NOT_UNIQUE -Language=English -DNS_ERROR_NOT_UNIQUE - Record for given name and type is not unique. -. - -MessageId=9556 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NON_RFC_NAME -Language=English -DNS_ERROR_NON_RFC_NAME - DNS name does not comply with RFC specifications. -. - -MessageId=9557 -Severity=Success -Facility=System -SymbolicName=DNS_STATUS_FQDN -Language=English -DNS_STATUS_FQDN - DNS name is a fully-qualified DNS name. -. - -MessageId=9558 -Severity=Success -Facility=System -SymbolicName=DNS_STATUS_DOTTED_NAME -Language=English -DNS_STATUS_DOTTED_NAME - DNS name is dotted (multi-label). -. - -MessageId=9559 -Severity=Success -Facility=System -SymbolicName=DNS_STATUS_SINGLE_PART_NAME -Language=English -DNS_STATUS_SINGLE_PART_NAME - DNS name is a single-part name. -. - -MessageId=9560 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_NAME_CHAR -Language=English -DNS_ERROR_INVALID_NAME_CHAR - DSN name contains an invalid character. -. - -MessageId=9561 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NUMERIC_NAME -Language=English -DNS_ERROR_NUMERIC_NAME - DNS name is entirely numeric. -. - -MessageId=9562 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER -Language=English -DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER - The operation requested is not permitted on a DNS root server. -. - -MessageId=9563 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION -Language=English -DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION - The record could not be created because this part of the DNS namespace has been delegated to another server. -. - -MessageId=9564 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_CANNOT_FIND_ROOT_HINTS -Language=English -DNS_ERROR_CANNOT_FIND_ROOT_HINTS - The DNS server could not find a set of root hints. -. - -MessageId=9565 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INCONSISTENT_ROOT_HINTS -Language=English -DNS_ERROR_INCONSISTENT_ROOT_HINTS - The DNS server found root hints but they were not consistent across all adapters. -. - -MessageId=9601 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_DOES_NOT_EXIST -Language=English -DNS_ERROR_ZONE_DOES_NOT_EXIST - DNS zone does not exist. -. - -MessageId=9602 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NO_ZONE_INFO -Language=English -DNS_ERROR_NO_ZONE_INFO - DNS zone information not available. -. - -MessageId=9603 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_ZONE_OPERATION -Language=English -DNS_ERROR_INVALID_ZONE_OPERATION - Invalid operation for DNS zone. -. - -MessageId=9604 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_CONFIGURATION_ERROR -Language=English -DNS_ERROR_ZONE_CONFIGURATION_ERROR - Invalid DNS zone configuration. -. - -MessageId=9605 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_HAS_NO_SOA_RECORD -Language=English -DNS_ERROR_ZONE_HAS_NO_SOA_RECORD - DNS zone has no start of authority (SOA) record. -. - -MessageId=9606 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_HAS_NO_NS_RECORDS -Language=English -DNS_ERROR_ZONE_HAS_NO_NS_RECORDS - DNS zone has no name server (NS) record. -. - -MessageId=9607 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_LOCKED -Language=English -DNS_ERROR_ZONE_LOCKED - DNS zone is locked. -. - -MessageId=9608 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_CREATION_FAILED -Language=English -DNS_ERROR_ZONE_CREATION_FAILED - DNS zone creation failed. -. - -MessageId=9609 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_ALREADY_EXISTS -Language=English -DNS_ERROR_ZONE_ALREADY_EXISTS - DNS zone already exists. -. - -MessageId=9610 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_AUTOZONE_ALREADY_EXISTS -Language=English -DNS_ERROR_AUTOZONE_ALREADY_EXISTS - DNS automatic zone already exists. -. - -MessageId=9611 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_ZONE_TYPE -Language=English -DNS_ERROR_INVALID_ZONE_TYPE - Invalid DNS zone type. -. - -MessageId=9612 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP -Language=English -DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP - Secondary DNS zone requires master IP address. -. - -MessageId=9613 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_NOT_SECONDARY -Language=English -DNS_ERROR_ZONE_NOT_SECONDARY - DNS zone not secondary. -. - -MessageId=9614 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NEED_SECONDARY_ADDRESSES -Language=English -DNS_ERROR_NEED_SECONDARY_ADDRESSES - Need secondary IP address. -. - -MessageId=9615 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_WINS_INIT_FAILED -Language=English -DNS_ERROR_WINS_INIT_FAILED - WINS initialization failed. -. - -MessageId=9616 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NEED_WINS_SERVERS -Language=English -DNS_ERROR_NEED_WINS_SERVERS - Need WINS servers. -. - -MessageId=9617 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NBSTAT_INIT_FAILED -Language=English -DNS_ERROR_NBSTAT_INIT_FAILED - NBTSTAT initialization call failed. -. - -MessageId=9618 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_SOA_DELETE_INVALID -Language=English -DNS_ERROR_SOA_DELETE_INVALID - Invalid delete of start of authority (SOA) -. - -MessageId=9619 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_FORWARDER_ALREADY_EXISTS -Language=English -DNS_ERROR_FORWARDER_ALREADY_EXISTS - A conditional forwarding zone already exists for that name. -. - -MessageId=9620 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_REQUIRES_MASTER_IP -Language=English -DNS_ERROR_ZONE_REQUIRES_MASTER_IP - This zone must be configured with one or more master DNS server IP addresses. -. - -MessageId=9621 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_ZONE_IS_SHUTDOWN -Language=English -DNS_ERROR_ZONE_IS_SHUTDOWN - The operation cannot be performed because this zone is shutdown. -. - -MessageId=9651 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_PRIMARY_REQUIRES_DATAFILE -Language=English -DNS_ERROR_PRIMARY_REQUIRES_DATAFILE - Primary DNS zone requires datafile. -. - -MessageId=9652 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_INVALID_DATAFILE_NAME -Language=English -DNS_ERROR_INVALID_DATAFILE_NAME - Invalid datafile name for DNS zone. -. - -MessageId=9653 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DATAFILE_OPEN_FAILURE -Language=English -DNS_ERROR_DATAFILE_OPEN_FAILURE - Failed to open datafile for DNS zone. -. - -MessageId=9654 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_FILE_WRITEBACK_FAILED -Language=English -DNS_ERROR_FILE_WRITEBACK_FAILED - Failed to write datafile for DNS zone. -. - -MessageId=9655 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DATAFILE_PARSING -Language=English -DNS_ERROR_DATAFILE_PARSING - Failure while reading datafile for DNS zone. -. - -MessageId=9701 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RECORD_DOES_NOT_EXIST -Language=English -DNS_ERROR_RECORD_DOES_NOT_EXIST - DNS record does not exist. -. - -MessageId=9702 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RECORD_FORMAT -Language=English -DNS_ERROR_RECORD_FORMAT - DNS record format error. -. - -MessageId=9703 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NODE_CREATION_FAILED -Language=English -DNS_ERROR_NODE_CREATION_FAILED - Node creation failure in DNS. -. - -MessageId=9704 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_UNKNOWN_RECORD_TYPE -Language=English -DNS_ERROR_UNKNOWN_RECORD_TYPE - Unknown DNS record type. -. - -MessageId=9705 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RECORD_TIMED_OUT -Language=English -DNS_ERROR_RECORD_TIMED_OUT - DNS record timed out. -. - -MessageId=9706 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NAME_NOT_IN_ZONE -Language=English -DNS_ERROR_NAME_NOT_IN_ZONE - Name not in DNS zone. -. - -MessageId=9707 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_CNAME_LOOP -Language=English -DNS_ERROR_CNAME_LOOP - CNAME loop detected. -. - -MessageId=9708 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NODE_IS_CNAME -Language=English -DNS_ERROR_NODE_IS_CNAME - Node is a CNAME DNS record. -. - -MessageId=9709 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_CNAME_COLLISION -Language=English -DNS_ERROR_CNAME_COLLISION - A CNAME record already exists for given name. -. - -MessageId=9710 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT -Language=English -DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT - Record only at DNS zone root. -. - -MessageId=9711 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_RECORD_ALREADY_EXISTS -Language=English -DNS_ERROR_RECORD_ALREADY_EXISTS - DNS record already exists. -. - -MessageId=9712 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_SECONDARY_DATA -Language=English -DNS_ERROR_SECONDARY_DATA - Secondary DNS zone data error. -. - -MessageId=9713 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NO_CREATE_CACHE_DATA -Language=English -DNS_ERROR_NO_CREATE_CACHE_DATA - Could not create DNS cache data. -. - -MessageId=9714 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NAME_DOES_NOT_EXIST -Language=English -DNS_ERROR_NAME_DOES_NOT_EXIST - DNS name does not exist. -. - -MessageId=9715 -Severity=Success -Facility=System -SymbolicName=DNS_WARNING_PTR_CREATE_FAILED -Language=English -DNS_WARNING_PTR_CREATE_FAILED - Could not create pointer (PTR) record. -. - -MessageId=9716 -Severity=Success -Facility=System -SymbolicName=DNS_WARNING_DOMAIN_UNDELETED -Language=English -DNS_WARNING_DOMAIN_UNDELETED - DNS domain was undeleted. -. - -MessageId=9717 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DS_UNAVAILABLE -Language=English -DNS_ERROR_DS_UNAVAILABLE - The directory service is unavailable. -. - -MessageId=9718 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DS_ZONE_ALREADY_EXISTS -Language=English -DNS_ERROR_DS_ZONE_ALREADY_EXISTS - DNS zone already exists in the directory service. -. - -MessageId=9719 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE -Language=English -DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE - DNS server not creating or reading the boot file for the directory service integrated DNS zone. -. - -MessageId=9751 -Severity=Success -Facility=System -SymbolicName=DNS_INFO_AXFR_COMPLETE -Language=English -DNS_INFO_AXFR_COMPLETE - DNS AXFR (zone transfer) complete. -. - -MessageId=9752 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_AXFR -Language=English -DNS_ERROR_AXFR - DNS zone transfer failed. -. - -MessageId=9753 -Severity=Success -Facility=System -SymbolicName=DNS_INFO_ADDED_LOCAL_WINS -Language=English -DNS_INFO_ADDED_LOCAL_WINS - Added local WINS server. -. - -MessageId=9801 -Severity=Success -Facility=System -SymbolicName=DNS_STATUS_CONTINUE_NEEDED -Language=English -DNS_STATUS_CONTINUE_NEEDED - Secure update call needs to continue update request. -. - -MessageId=9851 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NO_TCPIP -Language=English -DNS_ERROR_NO_TCPIP - TCP/IP network protocol not installed. -. - -MessageId=9852 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_NO_DNS_SERVERS -Language=English -DNS_ERROR_NO_DNS_SERVERS - No DNS servers configured for local system. -. - -MessageId=9901 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DP_DOES_NOT_EXIST -Language=English -DNS_ERROR_DP_DOES_NOT_EXIST - The specified directory partition does not exist. -. - -MessageId=9902 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DP_ALREADY_EXISTS -Language=English -DNS_ERROR_DP_ALREADY_EXISTS - The specified directory partition already exists. -. - -MessageId=9903 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DP_NOT_ENLISTED -Language=English -DNS_ERROR_DP_NOT_ENLISTED - The DNS server is not enlisted in the specified directory partition. -. - -MessageId=9904 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DP_ALREADY_ENLISTED -Language=English -DNS_ERROR_DP_ALREADY_ENLISTED - The DNS server is already enlisted in the specified directory partition. -. - -MessageId=9905 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DP_NOT_AVAILABLE -Language=English -DNS_ERROR_DP_NOT_AVAILABLE - The directory partition is not available at this time. Please wait a few minutes and try again. -. - -MessageId=9906 -Severity=Success -Facility=System -SymbolicName=DNS_ERROR_DP_FSMO_ERROR -Language=English -DNS_ERROR_DP_FSMO_ERROR - The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003. -. - -MessageId=10004 -Severity=Success -Facility=System -SymbolicName=WSAEINTR -Language=English -WSAEINTR - A blocking operation was interrupted by a call to WSACancelBlockingCall. -. - -MessageId=10009 -Severity=Success -Facility=System -SymbolicName=WSAEBADF -Language=English -WSAEBADF - The file handle supplied is not valid. -. - -MessageId=10013 -Severity=Success -Facility=System -SymbolicName=WSAEACCES -Language=English -WSAEACCES - An attempt was made to access a socket in a way forbidden by its access permissions. -. - -MessageId=10014 -Severity=Success -Facility=System -SymbolicName=WSAEFAULT -Language=English -WSAEFAULT - The system detected an invalid pointer address in attempting to use a pointer argument in a call. -. - -MessageId=10022 -Severity=Success -Facility=System -SymbolicName=WSAEINVAL -Language=English -WSAEINVAL - An invalid argument was supplied. -. - -MessageId=10024 -Severity=Success -Facility=System -SymbolicName=WSAEMFILE -Language=English -WSAEMFILE - Too many open sockets. -. - -MessageId=10035 -Severity=Success -Facility=System -SymbolicName=WSAEWOULDBLOCK -Language=English -WSAEWOULDBLOCK - A non-blocking socket operation could not be completed immediately. -. - -MessageId=10036 -Severity=Success -Facility=System -SymbolicName=WSAEINPROGRESS -Language=English -WSAEINPROGRESS - A blocking operation is currently executing. -. - -MessageId=10037 -Severity=Success -Facility=System -SymbolicName=WSAEALREADY -Language=English -WSAEALREADY - An operation was attempted on a non-blocking socket that already had an operation in progress. -. - -MessageId=10038 -Severity=Success -Facility=System -SymbolicName=WSAENOTSOCK -Language=English -WSAENOTSOCK - An operation was attempted on something that is not a socket. -. - -MessageId=10039 -Severity=Success -Facility=System -SymbolicName=WSAEDESTADDRREQ -Language=English -WSAEDESTADDRREQ - A required address was omitted from an operation on a socket. -. - -MessageId=10040 -Severity=Success -Facility=System -SymbolicName=WSAEMSGSIZE -Language=English -WSAEMSGSIZE - A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself. -. - -MessageId=10041 -Severity=Success -Facility=System -SymbolicName=WSAEPROTOTYPE -Language=English -WSAEPROTOTYPE - A protocol was specified in the socket function call that does not support the semantics of the socket type requested. -. - -MessageId=10042 -Severity=Success -Facility=System -SymbolicName=WSAENOPROTOOPT -Language=English -WSAENOPROTOOPT - An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call. -. - -MessageId=10043 -Severity=Success -Facility=System -SymbolicName=WSAEPROTONOSUPPORT -Language=English -WSAEPROTONOSUPPORT - The requested protocol has not been configured into the system, or no implementation for it exists. -. - -MessageId=10044 -Severity=Success -Facility=System -SymbolicName=WSAESOCKTNOSUPPORT -Language=English -WSAESOCKTNOSUPPORT - The support for the specified socket type does not exist in this address family. -. - -MessageId=10045 -Severity=Success -Facility=System -SymbolicName=WSAEOPNOTSUPP -Language=English -WSAEOPNOTSUPP - The attempted operation is not supported for the type of object referenced. -. - -MessageId=10046 -Severity=Success -Facility=System -SymbolicName=WSAEPFNOSUPPORT -Language=English -WSAEPFNOSUPPORT - The protocol family has not been configured into the system or no implementation for it exists. -. - -MessageId=10047 -Severity=Success -Facility=System -SymbolicName=WSAEAFNOSUPPORT -Language=English -WSAEAFNOSUPPORT - An address incompatible with the requested protocol was used. -. - -MessageId=10048 -Severity=Success -Facility=System -SymbolicName=WSAEADDRINUSE -Language=English -WSAEADDRINUSE - Only one usage of each socket address (protocol/network address/port) is normally permitted. -. - -MessageId=10049 -Severity=Success -Facility=System -SymbolicName=WSAEADDRNOTAVAIL -Language=English -WSAEADDRNOTAVAIL - The requested address is not valid in its context. -. - -MessageId=10050 -Severity=Success -Facility=System -SymbolicName=WSAENETDOWN -Language=English -WSAENETDOWN - A socket operation encountered a dead network. -. - -MessageId=10051 -Severity=Success -Facility=System -SymbolicName=WSAENETUNREACH -Language=English -WSAENETUNREACH - A socket operation was attempted to an unreachable network. -. - -MessageId=10052 -Severity=Success -Facility=System -SymbolicName=WSAENETRESET -Language=English -WSAENETRESET - The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. -. - -MessageId=10053 -Severity=Success -Facility=System -SymbolicName=WSAECONNABORTED -Language=English -WSAECONNABORTED - An established connection was aborted by the software in your host machine. -. - -MessageId=10054 -Severity=Success -Facility=System -SymbolicName=WSAECONNRESET -Language=English -WSAECONNRESET - An existing connection was forcibly closed by the remote host. -. - -MessageId=10055 -Severity=Success -Facility=System -SymbolicName=WSAENOBUFS -Language=English -WSAENOBUFS - An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. -. - -MessageId=10056 -Severity=Success -Facility=System -SymbolicName=WSAEISCONN -Language=English -WSAEISCONN - A connect request was made on an already connected socket. -. - -MessageId=10057 -Severity=Success -Facility=System -SymbolicName=WSAENOTCONN -Language=English -WSAENOTCONN - A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied. -. - -MessageId=10058 -Severity=Success -Facility=System -SymbolicName=WSAESHUTDOWN -Language=English -WSAESHUTDOWN - A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call. -. - -MessageId=10059 -Severity=Success -Facility=System -SymbolicName=WSAETOOMANYREFS -Language=English -WSAETOOMANYREFS - Too many references to some kernel object. -. - -MessageId=10060 -Severity=Success -Facility=System -SymbolicName=WSAETIMEDOUT -Language=English -WSAETIMEDOUT - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. -. - -MessageId=10061 -Severity=Success -Facility=System -SymbolicName=WSAECONNREFUSED -Language=English -WSAECONNREFUSED - No connection could be made because the target machine actively refused it. -. - -MessageId=10062 -Severity=Success -Facility=System -SymbolicName=WSAELOOP -Language=English -WSAELOOP - Cannot translate name. -. - -MessageId=10063 -Severity=Success -Facility=System -SymbolicName=WSAENAMETOOLONG -Language=English -WSAENAMETOOLONG - Name component or name was too long. -. - -MessageId=10064 -Severity=Success -Facility=System -SymbolicName=WSAEHOSTDOWN -Language=English -WSAEHOSTDOWN - A socket operation failed because the destination host was down. -. - -MessageId=10065 -Severity=Success -Facility=System -SymbolicName=WSAEHOSTUNREACH -Language=English -WSAEHOSTUNREACH - A socket operation was attempted to an unreachable host. -. - -MessageId=10066 -Severity=Success -Facility=System -SymbolicName=WSAENOTEMPTY -Language=English -WSAENOTEMPTY - Cannot remove a directory that is not empty. -. - -MessageId=10067 -Severity=Success -Facility=System -SymbolicName=WSAEPROCLIM -Language=English -WSAEPROCLIM - A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. -. - -MessageId=10068 -Severity=Success -Facility=System -SymbolicName=WSAEUSERS -Language=English -WSAEUSERS - Ran out of quota. -. - -MessageId=10069 -Severity=Success -Facility=System -SymbolicName=WSAEDQUOT -Language=English -WSAEDQUOT - Ran out of disk quota. -. - -MessageId=10070 -Severity=Success -Facility=System -SymbolicName=WSAESTALE -Language=English -WSAESTALE - File handle reference is no longer available. -. - -MessageId=10071 -Severity=Success -Facility=System -SymbolicName=WSAEREMOTE -Language=English -WSAEREMOTE - Item is not available locally. -. - -MessageId=10091 -Severity=Success -Facility=System -SymbolicName=WSASYSNOTREADY -Language=English -WSASYSNOTREADY - WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable. -. - -MessageId=10092 -Severity=Success -Facility=System -SymbolicName=WSAVERNOTSUPPORTED -Language=English -WSAVERNOTSUPPORTED - The Windows Sockets version requested is not supported. -. - -MessageId=10093 -Severity=Success -Facility=System -SymbolicName=WSANOTINITIALISED -Language=English -WSANOTINITIALISED - Either the application has not called WSAStartup, or WSAStartup failed. -. - -MessageId=10101 -Severity=Success -Facility=System -SymbolicName=WSAEDISCON -Language=English -WSAEDISCON - Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence. -. - -MessageId=10102 -Severity=Success -Facility=System -SymbolicName=WSAENOMORE -Language=English -WSAENOMORE - No more results can be returned by WSALookupServiceNext. -. - -MessageId=10103 -Severity=Success -Facility=System -SymbolicName=WSAECANCELLED -Language=English -WSAECANCELLED - A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. -. - -MessageId=10104 -Severity=Success -Facility=System -SymbolicName=WSAEINVALIDPROCTABLE -Language=English -WSAEINVALIDPROCTABLE - The procedure call table is invalid. -. - -MessageId=10105 -Severity=Success -Facility=System -SymbolicName=WSAEINVALIDPROVIDER -Language=English -WSAEINVALIDPROVIDER - The requested service provider is invalid. -. - -MessageId=10106 -Severity=Success -Facility=System -SymbolicName=WSAEPROVIDERFAILEDINIT -Language=English -WSAEPROVIDERFAILEDINIT - The requested service provider could not be loaded or initialized. -. - -MessageId=10107 -Severity=Success -Facility=System -SymbolicName=WSASYSCALLFAILURE -Language=English -WSASYSCALLFAILURE - A system call that should never fail has failed. -. - -MessageId=10108 -Severity=Success -Facility=System -SymbolicName=WSASERVICE_NOT_FOUND -Language=English -WSASERVICE_NOT_FOUND - No such service is known. The service cannot be found in the specified name space. -. - -MessageId=10109 -Severity=Success -Facility=System -SymbolicName=WSATYPE_NOT_FOUND -Language=English -WSATYPE_NOT_FOUND - The specified class was not found. -. - -MessageId=10110 -Severity=Success -Facility=System -SymbolicName=WSA_E_NO_MORE -Language=English -WSA_E_NO_MORE - No more results can be returned by WSALookupServiceNext. -. - -MessageId=10111 -Severity=Success -Facility=System -SymbolicName=WSA_E_CANCELLED -Language=English -WSA_E_CANCELLED - A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. -. - -MessageId=10112 -Severity=Success -Facility=System -SymbolicName=WSAEREFUSED -Language=English -WSAEREFUSED - A database query failed because it was actively refused. -. - -MessageId=11001 -Severity=Success -Facility=System -SymbolicName=WSAHOST_NOT_FOUND -Language=English -WSAHOST_NOT_FOUND - No such host is known. -. - -MessageId=11002 -Severity=Success -Facility=System -SymbolicName=WSATRY_AGAIN -Language=English -WSATRY_AGAIN - This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. -. - -MessageId=11003 -Severity=Success -Facility=System -SymbolicName=WSANO_RECOVERY -Language=English -WSANO_RECOVERY - A non-recoverable error occurred during a database lookup. -. - -MessageId=11004 -Severity=Success -Facility=System -SymbolicName=WSANO_DATA -Language=English -WSANO_DATA - The requested name is valid, but no data of the requested type was found. -. - -MessageId=11005 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_RECEIVERS -Language=English -WSA_QOS_RECEIVERS - At least one reserve has arrived. -. - -MessageId=11006 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_SENDERS -Language=English -WSA_QOS_SENDERS - At least one path has arrived. -. - -MessageId=11007 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_NO_SENDERS -Language=English -WSA_QOS_NO_SENDERS - There are no senders. -. - -MessageId=11008 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_NO_RECEIVERS -Language=English -WSA_QOS_NO_RECEIVERS - There are no receivers. -. - -MessageId=11009 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_REQUEST_CONFIRMED -Language=English -WSA_QOS_REQUEST_CONFIRMED - Reserve has been confirmed. -. - -MessageId=11010 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_ADMISSION_FAILURE -Language=English -WSA_QOS_ADMISSION_FAILURE - Error due to lack of resources. -. - -MessageId=11011 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_POLICY_FAILURE -Language=English -WSA_QOS_POLICY_FAILURE - Rejected for administrative reasons - bad credentials. -. - -MessageId=11012 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_BAD_STYLE -Language=English -WSA_QOS_BAD_STYLE - Unknown or conflicting style. -. - -MessageId=11013 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_BAD_OBJECT -Language=English -WSA_QOS_BAD_OBJECT - Problem with some part of the filterspec or providerspecific buffer in general. -. - -MessageId=11014 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_TRAFFIC_CTRL_ERROR -Language=English -WSA_QOS_TRAFFIC_CTRL_ERROR - Problem with some part of the flowspec. -. - -MessageId=11015 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_GENERIC_ERROR -Language=English -WSA_QOS_GENERIC_ERROR - General QOS error. -. - -MessageId=11016 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_ESERVICETYPE -Language=English -WSA_QOS_ESERVICETYPE - An invalid or unrecognized service type was found in the flowspec. -. - -MessageId=11017 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EFLOWSPEC -Language=English -WSA_QOS_EFLOWSPEC - An invalid or inconsistent flowspec was found in the QOS structure. -. - -MessageId=11018 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EPROVSPECBUF -Language=English -WSA_QOS_EPROVSPECBUF - Invalid QOS provider-specific buffer. -. - -MessageId=11019 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EFILTERSTYLE -Language=English -WSA_QOS_EFILTERSTYLE - An invalid QOS filter style was used. -. - -MessageId=11020 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EFILTERTYPE -Language=English -WSA_QOS_EFILTERTYPE - An invalid QOS filter type was used. -. - -MessageId=11021 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EFILTERCOUNT -Language=English -WSA_QOS_EFILTERCOUNT - An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR. -. - -MessageId=11022 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EOBJLENGTH -Language=English -WSA_QOS_EOBJLENGTH - An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer. -. - -MessageId=11023 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EFLOWCOUNT -Language=English -WSA_QOS_EFLOWCOUNT - An incorrect number of flow descriptors was specified in the QOS structure. -. - -MessageId=11024 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EUNKNOWNPSOBJ -Language=English -WSA_QOS_EUNKNOWNPSOBJ - An unrecognized object was found in the QOS provider-specific buffer. -. - -MessageId=11025 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EPOLICYOBJ -Language=English -WSA_QOS_EPOLICYOBJ - An invalid policy object was found in the QOS provider-specific buffer. -. - -MessageId=11026 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EFLOWDESC -Language=English -WSA_QOS_EFLOWDESC - An invalid QOS flow descriptor was found in the flow descriptor list. -. - -MessageId=11027 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EPSFLOWSPEC -Language=English -WSA_QOS_EPSFLOWSPEC - An invalid or inconsistent flowspec was found in the QOS provider-specific buffer. -. - -MessageId=11028 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_EPSFILTERSPEC -Language=English -WSA_QOS_EPSFILTERSPEC - An invalid FILTERSPEC was found in the QOS provider-specific buffer. -. - -MessageId=11029 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_ESDMODEOBJ -Language=English -WSA_QOS_ESDMODEOBJ - An invalid shape discard mode object was found in the QOS provider-specific buffer. -. - -MessageId=11030 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_ESHAPERATEOBJ -Language=English -WSA_QOS_ESHAPERATEOBJ - An invalid shaping rate object was found in the QOS provider-specific buffer. -. - -MessageId=11031 -Severity=Success -Facility=System -SymbolicName=WSA_QOS_RESERVED_PETYPE -Language=English -WSA_QOS_RESERVED_PETYPE - A reserved policy element was found in the QOS provider-specific buffer. -. - -MessageId=12000 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_IO_COMPLETE -Language=English -ERROR_FLT_IO_COMPLETE - The IO was completed by a filter. -. - -MessageId=12001 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_BUFFER_TOO_SMALL -Language=English -ERROR_FLT_BUFFER_TOO_SMALL - The buffer is too small to contain the entry. No information has been written to the buffer. -. - -MessageId=12002 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_NO_HANDLER_DEFINED -Language=English -ERROR_FLT_NO_HANDLER_DEFINED - A handler was not defined by the filter for this operation. -. - -MessageId=12003 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_CONTEXT_ALREADY_DEFINED -Language=English -ERROR_FLT_CONTEXT_ALREADY_DEFINED - A context is already defined for this object. -. - -MessageId=12004 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST -Language=English -ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST - Asynchronous requests are not valid for this operation. -. - -MessageId=12005 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_DISALLOW_FAST_IO -Language=English -ERROR_FLT_DISALLOW_FAST_IO - Disallow the Fast IO path for this operation. -. - -MessageId=12006 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INVALID_NAME_REQUEST -Language=English -ERROR_FLT_INVALID_NAME_REQUEST - An invalid name request was made. The name requested cannot be retrieved at this time. -. - -MessageId=12007 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_NOT_SAFE_TO_POST_OPERATION -Language=English -ERROR_FLT_NOT_SAFE_TO_POST_OPERATION - Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock. -. - -MessageId=12008 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_NOT_INITIALIZED -Language=English -ERROR_FLT_NOT_INITIALIZED - The Filter Manager was not initialized when a filter tried to register. Make sure that the Filter Manager is getting loaded as a driver. -. - -MessageId=12009 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_FILTER_NOT_READY -Language=English -ERROR_FLT_FILTER_NOT_READY - The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called). -. - -MessageId=12010 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_POST_OPERATION_CLEANUP -Language=English -ERROR_FLT_POST_OPERATION_CLEANUP - The filter must cleanup any operation specific context at this time because it is being removed from the system before the operation is completed by the lower drivers. -. - -MessageId=12011 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INTERNAL_ERROR -Language=English -ERROR_FLT_INTERNAL_ERROR - The Filter Manager had an internal error from which it cannot recover, therefore the operation has been failed. This is usually the result of a filter returning an invalid value from a pre-operation callback. -. - -MessageId=12012 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_DELETING_OBJECT -Language=English -ERROR_FLT_DELETING_OBJECT - The object specified for this action is in the process of being deleted, therefore the action requested cannot be completed at this time. -. - -MessageId=12013 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_MUST_BE_NONPAGED_POOL -Language=English -ERROR_FLT_MUST_BE_NONPAGED_POOL - Non-paged pool must be used for this type of context. -. - -MessageId=12014 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_DUPLICATE_ENTRY -Language=English -ERROR_FLT_DUPLICATE_ENTRY - A duplicate handler definition has been provided for an operation. -. - -MessageId=12015 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_CBDQ_DISABLED -Language=English -ERROR_FLT_CBDQ_DISABLED - The callback data queue has been disabled. -. - -MessageId=12016 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_DO_NOT_ATTACH -Language=English -ERROR_FLT_DO_NOT_ATTACH - Do not attach the filter to the volume at this time. -. - -MessageId=12017 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_DO_NOT_DETACH -Language=English -ERROR_FLT_DO_NOT_DETACH - Do not detach the filter from the volume at this time. -. - -MessageId=12018 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INSTANCE_ALTITUDE_COLLISION -Language=English -ERROR_FLT_INSTANCE_ALTITUDE_COLLISION - An instance already exists at this altitude on the volume specified. -. - -MessageId=12019 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INSTANCE_NAME_COLLISION -Language=English -ERROR_FLT_INSTANCE_NAME_COLLISION - An instance already exists with this name on the volume specified. -. - -MessageId=12020 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_FILTER_NOT_FOUND -Language=English -ERROR_FLT_FILTER_NOT_FOUND - The system could not find the filter specified. -. - -MessageId=12021 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_VOLUME_NOT_FOUND -Language=English -ERROR_FLT_VOLUME_NOT_FOUND - The system could not find the volume specified. -. - -MessageId=12022 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INSTANCE_NOT_FOUND -Language=English -ERROR_FLT_INSTANCE_NOT_FOUND - The system could not find the instance specified. -. - -MessageId=12023 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND -Language=English -ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND - No registered context allocation definition was found for the given request. -. - -MessageId=12024 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_INVALID_CONTEXT_REGISTRATION -Language=English -ERROR_FLT_INVALID_CONTEXT_REGISTRATION - An invalid parameter was specified during context registration. -. - -MessageId=12025 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_NAME_CACHE_MISS -Language=English -ERROR_FLT_NAME_CACHE_MISS - The name requested was not found in Filter Manager's name cache and could not be retrieved from the file system. -. - -MessageId=12026 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_NO_DEVICE_OBJECT -Language=English -ERROR_FLT_NO_DEVICE_OBJECT - The requested device object does not exist for the given volume. -. - -MessageId=12027 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_VOLUME_ALREADY_MOUNTED -Language=English -ERROR_FLT_VOLUME_ALREADY_MOUNTED - The specified volume is already mounted. -. - -MessageId=12028 -Severity=Success -Facility=System -SymbolicName=ERROR_FLT_NO_WAITER_FOR_REPLY -Language=English -ERROR_FLT_NO_WAITER_FOR_REPLY - No waiter is present for the filter's reply to this message. -. - -MessageId=13000 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_QM_POLICY_EXISTS -Language=English -ERROR_IPSEC_QM_POLICY_EXISTS - The specified quick mode policy already exists. -. - -MessageId=13001 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_QM_POLICY_NOT_FOUND -Language=English -ERROR_IPSEC_QM_POLICY_NOT_FOUND - The specified quick mode policy was not found. -. - -MessageId=13002 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_QM_POLICY_IN_USE -Language=English -ERROR_IPSEC_QM_POLICY_IN_USE - The specified quick mode policy is being used. -. - -MessageId=13003 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_POLICY_EXISTS -Language=English -ERROR_IPSEC_MM_POLICY_EXISTS - The specified main mode policy already exists. -. - -MessageId=13004 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_POLICY_NOT_FOUND -Language=English -ERROR_IPSEC_MM_POLICY_NOT_FOUND - The specified main mode policy was not found. -. - -MessageId=13005 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_POLICY_IN_USE -Language=English -ERROR_IPSEC_MM_POLICY_IN_USE - The specified main mode policy is being used. -. - -MessageId=13006 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_FILTER_EXISTS -Language=English -ERROR_IPSEC_MM_FILTER_EXISTS - The specified main mode filter already exists. -. - -MessageId=13007 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_FILTER_NOT_FOUND -Language=English -ERROR_IPSEC_MM_FILTER_NOT_FOUND - The specified main mode filter was not found. -. - -MessageId=13008 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_TRANSPORT_FILTER_EXISTS -Language=English -ERROR_IPSEC_TRANSPORT_FILTER_EXISTS - The specified transport mode filter already exists. -. - -MessageId=13009 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND -Language=English -ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND - The specified transport mode filter does not exist. -. - -MessageId=13010 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_AUTH_EXISTS -Language=English -ERROR_IPSEC_MM_AUTH_EXISTS - The specified main mode authentication list exists. -. - -MessageId=13011 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_AUTH_NOT_FOUND -Language=English -ERROR_IPSEC_MM_AUTH_NOT_FOUND - The specified main mode authentication list was not found. -. - -MessageId=13012 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_AUTH_IN_USE -Language=English -ERROR_IPSEC_MM_AUTH_IN_USE - The specified quick mode policy is being used. -. - -MessageId=13013 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND -Language=English -ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND - The specified main mode policy was not found. -. - -MessageId=13014 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND -Language=English -ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND - The specified quick mode policy was not found. -. - -MessageId=13015 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND -Language=English -ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND - The manifest file contains one or more syntax errors. -. - -MessageId=13016 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_TUNNEL_FILTER_EXISTS -Language=English -ERROR_IPSEC_TUNNEL_FILTER_EXISTS - The application attempted to activate a disabled activation context. -. - -MessageId=13017 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND -Language=English -ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND - The requested lookup key was not found in any active activation context. -. - -MessageId=13018 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_FILTER_PENDING_DELETION -Language=English -ERROR_IPSEC_MM_FILTER_PENDING_DELETION - The Main Mode filter is pending deletion. -. - -MessageId=13019 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION -Language=English -ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION - The transport filter is pending deletion. -. - -MessageId=13020 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION -Language=English -ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION - The tunnel filter is pending deletion. -. - -MessageId=13021 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_POLICY_PENDING_DELETION -Language=English -ERROR_IPSEC_MM_POLICY_PENDING_DELETION - The Main Mode policy is pending deletion. -. - -MessageId=13022 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_MM_AUTH_PENDING_DELETION -Language=English -ERROR_IPSEC_MM_AUTH_PENDING_DELETION - The Main Mode authentication bundle is pending deletion. -. - -MessageId=13023 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_QM_POLICY_PENDING_DELETION -Language=English -ERROR_IPSEC_QM_POLICY_PENDING_DELETION - The Quick Mode policy is pending deletion. -. - -MessageId=13024 -Severity=Success -Facility=System -SymbolicName=WARNING_IPSEC_MM_POLICY_PRUNED -Language=English -WARNING_IPSEC_MM_POLICY_PRUNED - The Main Mode policy was successfully added, but some of the requested offers are not supported. -. - -MessageId=13025 -Severity=Success -Facility=System -SymbolicName=WARNING_IPSEC_QM_POLICY_PRUNED -Language=English -WARNING_IPSEC_QM_POLICY_PRUNED - The Quick Mode policy was successfully added, but some of the requested offers are not supported. -. - -MessageId=13801 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_AUTH_FAIL -Language=English -ERROR_IPSEC_IKE_AUTH_FAIL - IKE authentication credentials are unacceptable. -. - -MessageId=13802 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_ATTRIB_FAIL -Language=English -ERROR_IPSEC_IKE_ATTRIB_FAIL - IKE security attributes are unacceptable. -. - -MessageId=13803 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NEGOTIATION_PENDING -Language=English -ERROR_IPSEC_IKE_NEGOTIATION_PENDING - IKE Negotiation in progress. -. - -MessageId=13804 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR -Language=English -ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR - General processing error. -. - -MessageId=13805 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_TIMED_OUT -Language=English -ERROR_IPSEC_IKE_TIMED_OUT - Negotiation timed out. -. - -MessageId=13806 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NO_CERT -Language=English -ERROR_IPSEC_IKE_NO_CERT - IKE failed to find valid machine certificate. -. - -MessageId=13807 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_SA_DELETED -Language=English -ERROR_IPSEC_IKE_SA_DELETED - IKE SA deleted by peer before establishment completed. -. - -MessageId=13808 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_SA_REAPED -Language=English -ERROR_IPSEC_IKE_SA_REAPED - IKE SA deleted before establishment completed. -. - -MessageId=13809 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_MM_ACQUIRE_DROP -Language=English -ERROR_IPSEC_IKE_MM_ACQUIRE_DROP - Negotiation request sat in Queue too long. -. - -MessageId=13810 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_QM_ACQUIRE_DROP -Language=English -ERROR_IPSEC_IKE_QM_ACQUIRE_DROP - Negotiation request sat in Queue too long. -. - -MessageId=13811 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_QUEUE_DROP_MM -Language=English -ERROR_IPSEC_IKE_QUEUE_DROP_MM - Negotiation request sat in Queue too long. -. - -MessageId=13812 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM -Language=English -ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM - Negotiation request sat in Queue too long. -. - -MessageId=13813 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_DROP_NO_RESPONSE -Language=English -ERROR_IPSEC_IKE_DROP_NO_RESPONSE - No response from peer. -. - -MessageId=13814 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_MM_DELAY_DROP -Language=English -ERROR_IPSEC_IKE_MM_DELAY_DROP - Negotiation took too long. -. - -MessageId=13815 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_QM_DELAY_DROP -Language=English -ERROR_IPSEC_IKE_QM_DELAY_DROP - Negotiation took too long. -. - -MessageId=13816 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_ERROR -Language=English -ERROR_IPSEC_IKE_ERROR - Unknown error occurred. -. - -MessageId=13817 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_CRL_FAILED -Language=English -ERROR_IPSEC_IKE_CRL_FAILED - Certificate Revocation Check failed. -. - -MessageId=13818 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_KEY_USAGE -Language=English -ERROR_IPSEC_IKE_INVALID_KEY_USAGE - Invalid certificate key usage. -. - -MessageId=13819 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_CERT_TYPE -Language=English -ERROR_IPSEC_IKE_INVALID_CERT_TYPE - Invalid certificate type. -. - -MessageId=13820 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NO_PRIVATE_KEY -Language=English -ERROR_IPSEC_IKE_NO_PRIVATE_KEY - No private key associated with machine certificate. -. - -MessageId=13822 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_DH_FAIL -Language=English -ERROR_IPSEC_IKE_DH_FAIL - Failure in Diffie-Hellman computation. -. - -MessageId=13824 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_HEADER -Language=English -ERROR_IPSEC_IKE_INVALID_HEADER - Invalid header. -. - -MessageId=13825 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NO_POLICY -Language=English -ERROR_IPSEC_IKE_NO_POLICY - No policy configured. -. - -MessageId=13826 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_SIGNATURE -Language=English -ERROR_IPSEC_IKE_INVALID_SIGNATURE - Failed to verify signature. -. - -MessageId=13827 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_KERBEROS_ERROR -Language=English -ERROR_IPSEC_IKE_KERBEROS_ERROR - Failed to authenticate using Kerberos. -. - -MessageId=13828 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NO_PUBLIC_KEY -Language=English -ERROR_IPSEC_IKE_NO_PUBLIC_KEY - Peer's certificate did not have a public key. -. - -MessageId=13829 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR - Error processing error payload. -. - -MessageId=13830 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_SA -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_SA - Error processing SA payload. -. - -MessageId=13831 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_PROP -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_PROP - Error processing Proposal payload. -. - -MessageId=13832 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_TRANS -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_TRANS - Error processing Transform payload. -. - -MessageId=13833 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_KE -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_KE - Error processing KE payload. -. - -MessageId=13834 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_ID -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_ID - Error processing ID payload. -. - -MessageId=13835 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_CERT -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_CERT - Error processing Cert payload. -. - -MessageId=13836 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ - Error processing Certificate Request payload. -. - -MessageId=13837 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_HASH -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_HASH - Error processing Hash payload. -. - -MessageId=13838 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_SIG -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_SIG - Error processing Signature payload. -. - -MessageId=13839 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_NONCE -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_NONCE - Error processing Nonce payload. -. - -MessageId=13840 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY - Error processing Notify payload. -. - -MessageId=13841 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_DELETE -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_DELETE - Error processing Delete Payload. -. - -MessageId=13842 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR -Language=English -ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR - Error processing VendorId payload. -. - -MessageId=13843 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_PAYLOAD -Language=English -ERROR_IPSEC_IKE_INVALID_PAYLOAD - Invalid payload received. -. - -MessageId=13844 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_LOAD_SOFT_SA -Language=English -ERROR_IPSEC_IKE_LOAD_SOFT_SA - Soft SA loaded. -. - -MessageId=13845 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN -Language=English -ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN - Soft SA torn down. -. - -MessageId=13846 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_COOKIE -Language=English -ERROR_IPSEC_IKE_INVALID_COOKIE - Invalid cookie received.. -. - -MessageId=13847 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NO_PEER_CERT -Language=English -ERROR_IPSEC_IKE_NO_PEER_CERT - Peer failed to send valid machine certificate. -. - -MessageId=13848 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_PEER_CRL_FAILED -Language=English -ERROR_IPSEC_IKE_PEER_CRL_FAILED - Certification Revocation check of peer's certificate failed. -. - -MessageId=13849 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_POLICY_CHANGE -Language=English -ERROR_IPSEC_IKE_POLICY_CHANGE - New policy invalidated SAs formed with old policy. -. - -MessageId=13850 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NO_MM_POLICY -Language=English -ERROR_IPSEC_IKE_NO_MM_POLICY - There is no available Main Mode IKE policy. -. - -MessageId=13851 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NOTCBPRIV -Language=English -ERROR_IPSEC_IKE_NOTCBPRIV - Failed to enabled TCB privilege. -. - -MessageId=13852 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_SECLOADFAIL -Language=English -ERROR_IPSEC_IKE_SECLOADFAIL - Failed to load SECURITY.DLL. -. - -MessageId=13853 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_FAILSSPINIT -Language=English -ERROR_IPSEC_IKE_FAILSSPINIT - Failed to obtain security function table dispatch address from SSPI. -. - -MessageId=13854 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_FAILQUERYSSP -Language=English -ERROR_IPSEC_IKE_FAILQUERYSSP - Failed to query Kerberos package to obtain max token size. -. - -MessageId=13855 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_SRVACQFAIL -Language=English -ERROR_IPSEC_IKE_SRVACQFAIL - Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup. -. - -MessageId=13856 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_SRVQUERYCRED -Language=English -ERROR_IPSEC_IKE_SRVQUERYCRED - Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes). -. - -MessageId=13857 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_GETSPIFAIL -Language=English -ERROR_IPSEC_IKE_GETSPIFAIL - Failed to obtain new SPI for the inbound SA from IPSec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters. -. - -MessageId=13858 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_FILTER -Language=English -ERROR_IPSEC_IKE_INVALID_FILTER - Given filter is invalid. -. - -MessageId=13859 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_OUT_OF_MEMORY -Language=English -ERROR_IPSEC_IKE_OUT_OF_MEMORY - Memory allocation failed. -. - -MessageId=13860 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED -Language=English -ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED - Failed to add Security Association to IPSec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine. -. - -MessageId=13861 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_POLICY -Language=English -ERROR_IPSEC_IKE_INVALID_POLICY - Invalid policy. -. - -MessageId=13862 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_UNKNOWN_DOI -Language=English -ERROR_IPSEC_IKE_UNKNOWN_DOI - Invalid DOI. -. - -MessageId=13863 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_SITUATION -Language=English -ERROR_IPSEC_IKE_INVALID_SITUATION - Invalid situation. -. - -MessageId=13864 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_DH_FAILURE -Language=English -ERROR_IPSEC_IKE_DH_FAILURE - Diffie-Hellman failure. -. - -MessageId=13865 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_GROUP -Language=English -ERROR_IPSEC_IKE_INVALID_GROUP - Invalid Diffie-Hellman group. -. - -MessageId=13866 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_ENCRYPT -Language=English -ERROR_IPSEC_IKE_ENCRYPT - Error encrypting payload. -. - -MessageId=13867 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_DECRYPT -Language=English -ERROR_IPSEC_IKE_DECRYPT - Error decrypting payload. -. - -MessageId=13868 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_POLICY_MATCH -Language=English -ERROR_IPSEC_IKE_POLICY_MATCH - Policy match error. -. - -MessageId=13869 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_UNSUPPORTED_ID -Language=English -ERROR_IPSEC_IKE_UNSUPPORTED_ID - Unsupported ID. -. - -MessageId=13870 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_HASH -Language=English -ERROR_IPSEC_IKE_INVALID_HASH - Hash verification failed. -. - -MessageId=13871 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_HASH_ALG -Language=English -ERROR_IPSEC_IKE_INVALID_HASH_ALG - Invalid hash algorithm. -. - -MessageId=13872 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_HASH_SIZE -Language=English -ERROR_IPSEC_IKE_INVALID_HASH_SIZE - Invalid hash size. -. - -MessageId=13873 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG -Language=English -ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG - Invalid encryption algorithm. -. - -MessageId=13874 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_AUTH_ALG -Language=English -ERROR_IPSEC_IKE_INVALID_AUTH_ALG - Invalid authentication algorithm. -. - -MessageId=13875 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_SIG -Language=English -ERROR_IPSEC_IKE_INVALID_SIG - Invalid certificate signature. -. - -MessageId=13876 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_LOAD_FAILED -Language=English -ERROR_IPSEC_IKE_LOAD_FAILED - Load failed. -. - -MessageId=13877 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_RPC_DELETE -Language=English -ERROR_IPSEC_IKE_RPC_DELETE - Deleted via RPC call. -. - -MessageId=13878 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_BENIGN_REINIT -Language=English -ERROR_IPSEC_IKE_BENIGN_REINIT - Temporary state created to perform reinit. This is not a real failure. -. - -MessageId=13879 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY -Language=English -ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY - The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine. -. - -MessageId=13881 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN -Language=English -ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN - Key length in certificate is too small for configured security requirements. -. - -MessageId=13882 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_MM_LIMIT -Language=English -ERROR_IPSEC_IKE_MM_LIMIT - Max number of established MM SAs to peer exceeded. -. - -MessageId=13883 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NEGOTIATION_DISABLED -Language=English -ERROR_IPSEC_IKE_NEGOTIATION_DISABLED - IKE received a policy that disables negotiation. -. - -MessageId=13884 -Severity=Success -Facility=System -SymbolicName=ERROR_IPSEC_IKE_NEG_STATUS_END -Language=English -ERROR_IPSEC_IKE_NEG_STATUS_END - ERROR_IPSEC_IKE_NEG_STATUS_END -. - -MessageId=14000 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_SECTION_NOT_FOUND -Language=English -ERROR_SXS_SECTION_NOT_FOUND - The requested section was not present in the activation context. -. - -MessageId=14001 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_CANT_GEN_ACTCTX -Language=English -ERROR_SXS_CANT_GEN_ACTCTX - This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. -. - -MessageId=14002 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_ACTCTXDATA_FORMAT -Language=English -ERROR_SXS_INVALID_ACTCTXDATA_FORMAT - The application binding data format is invalid. -. - -MessageId=14003 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_ASSEMBLY_NOT_FOUND -Language=English -ERROR_SXS_ASSEMBLY_NOT_FOUND - The referenced assembly is not installed on your system. -. - -MessageId=14004 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_MANIFEST_FORMAT_ERROR -Language=English -ERROR_SXS_MANIFEST_FORMAT_ERROR - The manifest file does not begin with the required tag and format information. -. - -MessageId=14005 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_MANIFEST_PARSE_ERROR -Language=English -ERROR_SXS_MANIFEST_PARSE_ERROR - The manifest file contains one or more syntax errors. -. - -MessageId=14006 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_ACTIVATION_CONTEXT_DISABLED -Language=English -ERROR_SXS_ACTIVATION_CONTEXT_DISABLED - The application attempted to activate a disabled activation context. -. - -MessageId=14007 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_KEY_NOT_FOUND -Language=English -ERROR_SXS_KEY_NOT_FOUND - The requested lookup key was not found in any active activation context. -. - -MessageId=14008 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_VERSION_CONFLICT -Language=English -ERROR_SXS_VERSION_CONFLICT - A component version required by the application conflicts with another component version already active. -. - -MessageId=14009 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_WRONG_SECTION_TYPE -Language=English -ERROR_SXS_WRONG_SECTION_TYPE - The type requested activation context section does not match the query API used. -. - -MessageId=14010 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_THREAD_QUERIES_DISABLED -Language=English -ERROR_SXS_THREAD_QUERIES_DISABLED - Lack of system resources has required isolated activation to be disabled for the current thread of execution. -. - -MessageId=14011 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET -Language=English -ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET - An attempt to set the process default activation context failed because the process default activation context was already set. -. - -MessageId=14012 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_UNKNOWN_ENCODING_GROUP -Language=English -ERROR_SXS_UNKNOWN_ENCODING_GROUP - The encoding group identifier specified is not recognized. -. - -MessageId=14013 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_UNKNOWN_ENCODING -Language=English -ERROR_SXS_UNKNOWN_ENCODING - The encoding requested is not recognized. -. - -MessageId=14014 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_XML_NAMESPACE_URI -Language=English -ERROR_SXS_INVALID_XML_NAMESPACE_URI - The manifest contains a reference to an invalid URI. -. - -MessageId=14015 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED -Language=English -ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED - The application manifest contains a reference to a dependent assembly which is not installed. -. - -MessageId=14016 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED -Language=English -ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED - The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed. -. - -MessageId=14017 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE -Language=English -ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE - The manifest contains an attribute for the assembly identity which is not valid. -. - -MessageId=14018 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE -Language=English -ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE - The manifest is missing the required default namespace specification on the assembly element. -. - -MessageId=14019 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE -Language=English -ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE - The manifest has a default namespace specified on the assembly element but its value is not \"urn:schemas-microsoft-com:asm.v1\". -. - -MessageId=14020 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT -Language=English -ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT - The private manifest probe has crossed the reparse-point-associated path. -. - -MessageId=14021 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_DLL_NAME -Language=English -ERROR_SXS_DUPLICATE_DLL_NAME - Two or more components referenced directly or indirectly by the application manifest have files by the same name. -. - -MessageId=14022 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME -Language=English -ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME - Two or more components referenced directly or indirectly by the application manifest have window classes with the same name. -. - -MessageId=14023 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_CLSID -Language=English -ERROR_SXS_DUPLICATE_CLSID - Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs. -. - -MessageId=14024 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_IID -Language=English -ERROR_SXS_DUPLICATE_IID - Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs. -. - -MessageId=14025 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_TLBID -Language=English -ERROR_SXS_DUPLICATE_TLBID - Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs. -. - -MessageId=14026 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_PROGID -Language=English -ERROR_SXS_DUPLICATE_PROGID - Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs. -. - -MessageId=14027 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_DUPLICATE_ASSEMBLY_NAME -Language=English -ERROR_SXS_DUPLICATE_ASSEMBLY_NAME - Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted. -. - -MessageId=14028 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_FILE_HASH_MISMATCH -Language=English -ERROR_SXS_FILE_HASH_MISMATCH - A component's file does not match the verification information present in the component manifest. -. - -MessageId=14029 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_POLICY_PARSE_ERROR -Language=English -ERROR_SXS_POLICY_PARSE_ERROR - The policy manifest contains one or more syntax errors. -. - -MessageId=14030 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MISSINGQUOTE -Language=English -ERROR_SXS_XML_E_MISSINGQUOTE - Manifest Parse Error : A string literal was expected, but no opening quote character was found. -. - -MessageId=14031 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_COMMENTSYNTAX -Language=English -ERROR_SXS_XML_E_COMMENTSYNTAX - Manifest Parse Error : Incorrect syntax was used in a comment. -. - -MessageId=14032 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADSTARTNAMECHAR -Language=English -ERROR_SXS_XML_E_BADSTARTNAMECHAR - Manifest Parse Error : A name was started with an invalid character. -. - -MessageId=14033 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADNAMECHAR -Language=English -ERROR_SXS_XML_E_BADNAMECHAR - Manifest Parse Error : A name contained an invalid character. -. - -MessageId=14034 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADCHARINSTRING -Language=English -ERROR_SXS_XML_E_BADCHARINSTRING - Manifest Parse Error : A string literal contained an invalid character. -. - -MessageId=14035 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_XMLDECLSYNTAX -Language=English -ERROR_SXS_XML_E_XMLDECLSYNTAX - Manifest Parse Error : Invalid syntax for an XML declaration. -. - -MessageId=14036 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADCHARDATA -Language=English -ERROR_SXS_XML_E_BADCHARDATA - Manifest Parse Error : An invalid character was found in text content. -. - -MessageId=14037 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MISSINGWHITESPACE -Language=English -ERROR_SXS_XML_E_MISSINGWHITESPACE - Manifest Parse Error : Required white space was missing. -. - -MessageId=14038 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_EXPECTINGTAGEND -Language=English -ERROR_SXS_XML_E_EXPECTINGTAGEND - Manifest Parse Error : The character '>' was expected. -. - -MessageId=14039 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MISSINGSEMICOLON -Language=English -ERROR_SXS_XML_E_MISSINGSEMICOLON - Manifest Parse Error : A semi colon character was expected. -. - -MessageId=14040 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNBALANCEDPAREN -Language=English -ERROR_SXS_XML_E_UNBALANCEDPAREN - Manifest Parse Error : Unbalanced parentheses. -. - -MessageId=14041 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INTERNALERROR -Language=English -ERROR_SXS_XML_E_INTERNALERROR - Manifest Parse Error : Internal error. -. - -MessageId=14042 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE -Language=English -ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE - Manifest Parse Error : White space is not allowed at this location. -. - -MessageId=14043 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INCOMPLETE_ENCODING -Language=English -ERROR_SXS_XML_E_INCOMPLETE_ENCODING - Manifest Parse Error : End of file reached in invalid state for current encoding. -. - -MessageId=14044 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MISSING_PAREN -Language=English -ERROR_SXS_XML_E_MISSING_PAREN - Manifest Parse Error : Missing parenthesis. -. - -MessageId=14045 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE -Language=English -ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE - Manifest Parse Error : A single or double closing quote character (\' or \") is missing. -. - -MessageId=14046 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MULTIPLE_COLONS -Language=English -ERROR_SXS_XML_E_MULTIPLE_COLONS - Manifest Parse Error : Multiple colons are not allowed in a name. -. - -MessageId=14047 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALID_DECIMAL -Language=English -ERROR_SXS_XML_E_INVALID_DECIMAL - Manifest Parse Error : Invalid character for decimal digit. -. - -MessageId=14048 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALID_HEXIDECIMAL -Language=English -ERROR_SXS_XML_E_INVALID_HEXIDECIMAL - Manifest Parse Error : Invalid character for hexadecimal digit. -. - -MessageId=14049 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALID_UNICODE -Language=English -ERROR_SXS_XML_E_INVALID_UNICODE - Manifest Parse Error : Invalid Unicode character value for this platform. -. - -MessageId=14050 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK -Language=English -ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK - Manifest Parse Error : Expecting white space or '?'. -. - -MessageId=14051 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNEXPECTEDENDTAG -Language=English -ERROR_SXS_XML_E_UNEXPECTEDENDTAG - Manifest Parse Error : End tag was not expected at this location. -. - -MessageId=14052 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDTAG -Language=English -ERROR_SXS_XML_E_UNCLOSEDTAG - Manifest Parse Error : The following tags were not closed: %1. -. - -MessageId=14053 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_DUPLICATEATTRIBUTE -Language=English -ERROR_SXS_XML_E_DUPLICATEATTRIBUTE - Manifest Parse Error : Duplicate attribute. -. - -MessageId=14054 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MULTIPLEROOTS -Language=English -ERROR_SXS_XML_E_MULTIPLEROOTS - Manifest Parse Error : Only one top level element is allowed in an XML document. -. - -MessageId=14055 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALIDATROOTLEVEL -Language=English -ERROR_SXS_XML_E_INVALIDATROOTLEVEL - Manifest Parse Error : Invalid at the top level of the document. -. - -MessageId=14056 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADXMLDECL -Language=English -ERROR_SXS_XML_E_BADXMLDECL - Manifest Parse Error : Invalid XML declaration. -. - -MessageId=14057 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MISSINGROOT -Language=English -ERROR_SXS_XML_E_MISSINGROOT - Manifest Parse Error : XML document must have a top level element. -. - -MessageId=14058 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNEXPECTEDEOF -Language=English -ERROR_SXS_XML_E_UNEXPECTEDEOF - Manifest Parse Error : Unexpected end of file. -. - -MessageId=14059 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADPEREFINSUBSET -Language=English -ERROR_SXS_XML_E_BADPEREFINSUBSET - Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset. -. - -MessageId=14060 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDSTARTTAG -Language=English -ERROR_SXS_XML_E_UNCLOSEDSTARTTAG - Manifest Parse Error : Element was not closed. -. - -MessageId=14061 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDENDTAG -Language=English -ERROR_SXS_XML_E_UNCLOSEDENDTAG - Manifest Parse Error : End element was missing the character '>'. -. - -MessageId=14062 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDSTRING -Language=English -ERROR_SXS_XML_E_UNCLOSEDSTRING - Manifest Parse Error : A string literal was not closed. -. - -MessageId=14063 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDCOMMENT -Language=English -ERROR_SXS_XML_E_UNCLOSEDCOMMENT - Manifest Parse Error : A comment was not closed. -. - -MessageId=14064 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDDECL -Language=English -ERROR_SXS_XML_E_UNCLOSEDDECL - Manifest Parse Error : A declaration was not closed. -. - -MessageId=14065 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNCLOSEDCDATA -Language=English -ERROR_SXS_XML_E_UNCLOSEDCDATA - Manifest Parse Error : A CDATA section was not closed. -. - -MessageId=14066 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_RESERVEDNAMESPACE -Language=English -ERROR_SXS_XML_E_RESERVEDNAMESPACE - Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string \"xml\". -. - -MessageId=14067 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALIDENCODING -Language=English -ERROR_SXS_XML_E_INVALIDENCODING - Manifest Parse Error : System does not support the specified encoding. -. - -MessageId=14068 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALIDSWITCH -Language=English -ERROR_SXS_XML_E_INVALIDSWITCH - Manifest Parse Error : Switch from current encoding to specified encoding not supported. -. - -MessageId=14069 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_BADXMLCASE -Language=English -ERROR_SXS_XML_E_BADXMLCASE - Manifest Parse Error : The name 'xml' is reserved and must be lower case. -. - -MessageId=14070 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALID_STANDALONE -Language=English -ERROR_SXS_XML_E_INVALID_STANDALONE - Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'. -. - -MessageId=14071 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_UNEXPECTED_STANDALONE -Language=English -ERROR_SXS_XML_E_UNEXPECTED_STANDALONE - Manifest Parse Error : The standalone attribute cannot be used in external entities. -. - -MessageId=14072 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_INVALID_VERSION -Language=English -ERROR_SXS_XML_E_INVALID_VERSION - Manifest Parse Error : Invalid version number. -. - -MessageId=14073 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_XML_E_MISSINGEQUALS -Language=English -ERROR_SXS_XML_E_MISSINGEQUALS - Manifest Parse Error : Missing equals sign between attribute and attribute value. -. - -MessageId=14074 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PROTECTION_RECOVERY_FAILED -Language=English -ERROR_SXS_PROTECTION_RECOVERY_FAILED - Assembly Protection Error: Unable to recover the specified assembly. -. - -MessageId=14075 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT -Language=English -ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT - Assembly Protection Error: The public key for an assembly was too short to be allowed. -. - -MessageId=14076 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PROTECTION_CATALOG_NOT_VALID -Language=English -ERROR_SXS_PROTECTION_CATALOG_NOT_VALID - Assembly Protection Error: The catalog for an assembly is not valid, or does not match the assembly's manifest. -. - -MessageId=14077 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_UNTRANSLATABLE_HRESULT -Language=English -ERROR_SXS_UNTRANSLATABLE_HRESULT - An HRESULT could not be translated to a corresponding Win32 error code. -. - -MessageId=14078 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING -Language=English -ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING - Assembly Protection Error: The catalog for an assembly is missing. -. - -MessageId=14079 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE -Language=English -ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE - The supplied assembly identity is missing one or more attributes which must be present in this context. -. - -MessageId=14080 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME -Language=English -ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME - The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names. -. - -MessageId=14081 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_ASSEMBLY_MISSING -Language=English -ERROR_SXS_ASSEMBLY_MISSING - The referenced assembly could not be found. -. - -MessageId=14082 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_CORRUPT_ACTIVATION_STACK -Language=English -ERROR_SXS_CORRUPT_ACTIVATION_STACK - The activation context activation stack for the running thread of execution is corrupt. -. - -MessageId=14083 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_CORRUPTION -Language=English -ERROR_SXS_CORRUPTION - The application isolation metadata for this process or thread has become corrupt. -. - -MessageId=14084 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_EARLY_DEACTIVATION -Language=English -ERROR_SXS_EARLY_DEACTIVATION - The activation context being deactivated is not the most recently activated one. -. - -MessageId=14085 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_DEACTIVATION -Language=English -ERROR_SXS_INVALID_DEACTIVATION - The activation context being deactivated is not active for the current thread of execution. -. - -MessageId=14086 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_MULTIPLE_DEACTIVATION -Language=English -ERROR_SXS_MULTIPLE_DEACTIVATION - The activation context being deactivated has already been deactivated. -. - -MessageId=14087 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_PROCESS_TERMINATION_REQUESTED -Language=English -ERROR_SXS_PROCESS_TERMINATION_REQUESTED - A component used by the isolation facility has requested to terminate the process. -. - -MessageId=14088 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_RELEASE_ACTIVATION_CONTEXT -Language=English -ERROR_SXS_RELEASE_ACTIVATION_CONTEXT - A kernel mode component is releasing a reference on an activation context. -. - -MessageId=14089 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY -Language=English -ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY - The activation context of system default assembly could not be generated. -. - -MessageId=14090 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE -Language=English -ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE - The value of an attribute in an identity is not within the legal range. -. - -MessageId=14091 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME -Language=English -ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME - The name of an attribute in an identity is not within the legal range. -. - -MessageId=14092 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE -Language=English -ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE - An identity contains two definitions for the same attribute. -. - -MessageId=14093 -Severity=Success -Facility=System -SymbolicName=ERROR_SXS_IDENTITY_PARSE_ERROR -Language=English -ERROR_SXS_IDENTITY_PARSE_ERROR - The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value. -. - -MessageId=15000 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_INVALID_CHANNEL_PATH -Language=English -ERROR_EVT_INVALID_CHANNEL_PATH - The specified channel path is invalid. See extended error info for more details. -. - -MessageId=15001 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_INVALID_QUERY -Language=English -ERROR_EVT_INVALID_QUERY - The specified query is invalid. See extended error info for more details. -. - -MessageId=15002 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_PUBLISHER_MANIFEST_NOT_FOUND -Language=English -ERROR_EVT_PUBLISHER_MANIFEST_NOT_FOUND - The publisher did indicate they have a manifest/resource but a manifest/resource could not be found. -. - -MessageId=15003 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_PUBLISHER_MANIFEST_NOT_SPECIFIED -Language=English -ERROR_EVT_PUBLISHER_MANIFEST_NOT_SPECIFIED - The publisher does not have a manifest and is performing an operation which requires they have a manifest. -. - -MessageId=15004 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_NO_REGISTERED_TEMPLATE -Language=English -ERROR_EVT_NO_REGISTERED_TEMPLATE - There is no registered template for specified event id. -. - -MessageId=15005 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_EVENT_CHANNEL_MISMATCH -Language=English -ERROR_EVT_EVENT_CHANNEL_MISMATCH - The specified event was declared in the manifest to go a different channel than the one this publisher handle is bound to. -. - -MessageId=15006 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_UNEXPECTED_VALUE_TYPE -Language=English -ERROR_EVT_UNEXPECTED_VALUE_TYPE - The type of a specified substitution value does not match the type expected from the template definition. -. - -MessageId=15007 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_UNEXPECTED_NUM_VALUES -Language=English -ERROR_EVT_UNEXPECTED_NUM_VALUES - The number of specified substitution values does not match the number expected from the template definition. -. - -MessageId=15008 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_CHANNEL_NOT_FOUND -Language=English -ERROR_EVT_CHANNEL_NOT_FOUND - The specified channel could not be found. Check channel configuration. -. - -MessageId=15009 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_MALFORMED_XML_TEXT -Language=English -ERROR_EVT_MALFORMED_XML_TEXT - The specified xml text was not well-formed. See Extended Error for more details. -. - -MessageId=15010 -Severity=Success -Facility=System -SymbolicName=ERROR_EVT_CHANNEL_PATH_TOO_GENERAL -Language=English -ERROR_EVT_CHANNEL_PATH_TOO_GENERAL - The specified channel path selects more than one instance of a channel. The operation requires that only one channel be selected. It may be necessary to scope channel path to version / publicKeyToken to select only one instance. -. - - -MessageId=0x000E -Severity=Warning -Facility=WIN32 -SymbolicName=E_OUTOFMEMORY -Language=English -E_OUTOFMEMORY - Out of memory -. - -MessageId=0x0057 -Severity=Warning -Facility=WIN32 -SymbolicName=E_INVALIDARG -Language=English -E_INVALIDARG - One or more arguments are invalid -. - -MessageId=0x0006 -Severity=Warning -Facility=WIN32 -SymbolicName=E_HANDLE -Language=English -E_POINTER - Invalid handle -. - -MessageId=0x0005 -Severity=Warning -Facility=WIN32 -SymbolicName=E_ACCESSDENIED -Language=English -E_ACCESSDENIED - WIN32 access denied error -. - - -MessageId=0x0000 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_OLEVERB -Language=English -OLE_E_OLEVERB - Invalid OLEVERB structure -. - -MessageId=0x0001 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_ADVF -Language=English -OLE_E_ADVF - Invalid advise flags -. - -MessageId=0x0002 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_ENUM_NOMORE -Language=English -OLE_E_ENUM_NOMORE - Can't enumerate any more, because the associated data is missing -. - -MessageId=0x0003 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_ADVISENOTSUPPORTED -Language=English -OLE_E_ADVISENOTSUPPORTED - This implementation doesn't take advises -. - -MessageId=0x0004 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_NOCONNECTION -Language=English -OLE_E_NOCONNECTION - There is no connection for this connection ID -. - -MessageId=0x0005 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_NOTRUNNING -Language=English -OLE_E_NOTRUNNING - Need to run the object to perform this operation -. - -MessageId=0x0006 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_NOCACHE -Language=English -OLE_E_NOCACHE - There is no cache to operate on -. - -MessageId=0x0007 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_BLANK -Language=English -OLE_E_BLANK - Uninitialized object -. - -MessageId=0x0008 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_CLASSDIFF -Language=English -OLE_E_CLASSDIFF - Linked object's source class has changed -. - -MessageId=0x0009 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_CANT_GETMONIKER -Language=English -OLE_E_CANT_GETMONIKER - Not able to get the moniker of the object -. - -MessageId=0x000A -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_CANT_BINDTOSOURCE -Language=English -OLE_E_CANT_BINDTOSOURCE - Not able to bind to the source -. - -MessageId=0x000B -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_STATIC -Language=English -OLE_E_STATIC - Object is static; operation not allowed -. - -MessageId=0x000C -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_PROMPTSAVECANCELLED -Language=English -OLE_E_PROMPTSAVECANCELLED - User canceled out of save dialog -. - -MessageId=0x000D -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_INVALIDRECT -Language=English -OLE_E_INVALIDRECT - Invalid rectangle -. - -MessageId=0x000E -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_WRONGCOMPOBJ -Language=English -OLE_E_WRONGCOMPOBJ - compobj.dll is too old for the ole2.dll initialized -. - -MessageId=0x000F -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_INVALIDHWND -Language=English -OLE_E_INVALIDHWND - Invalid window handle -. - -MessageId=0x0010 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_NOT_INPLACEACTIVE -Language=English -OLE_E_NOT_INPLACEACTIVE - Object is not in any of the inplace active states -. - -MessageId=0x0011 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_CANTCONVERT -Language=English -OLE_E_CANTCONVERT - Not able to convert object -. - -MessageId=0x0012 -Severity=Warning -Facility=ITF -SymbolicName=OLE_E_NOSTORAGE -Language=English -OLE_E_NOSTORAGE - Not able to perform the operation because object is not given storage yet -. - -MessageId=0x0064 -Severity=Warning -Facility=ITF -SymbolicName=DV_E_FORMATETC -Language=English -DV_E_FORMATETC - Invalid FORMATETC structure -. - -MessageId=0x0065 -Severity=Warning -Facility=ITF -SymbolicName=DV_E_DVTARGETDEVICE -Language=English -DV_E_DVTARGETDEVICE - Invalid DVTARGETDEVICE structure -. - -MessageId=0x0066 -Severity=Warning -Facility=ITF -SymbolicName=DV_E_STGMEDIUM -Language=English -DV_E_STGMEDIUM - Invalid STDGMEDIUM structure -. - -MessageId=0x0067 -Severity=Warning -Facility=ITF -SymbolicName=DV_E_STATDATA -Language=English -DV_E_STATDATA - Invalid STATDATA structure -. - -MessageId=0x0068 -Severity=Warning -Facility=ITF -SymbolicName=DV_E_LINDEX -Language=English -DV_E_LINDEX - Invalid lindex -. - -MessageId=0x0069 -Severity=Warning -Facility=ITF -SymbolicName=DV_E_TYMED -Language=English -DV_E_TYMED - Invalid tymed -. - -MessageId=0x006A -Severity=Warning -Facility=ITF -SymbolicName=DV_E_CLIPFORMAT -Language=English -DV_E_CLIPFORMAT - Invalid clipboard format -. - -MessageId=0x006B -Severity=Warning -Facility=ITF -SymbolicName=DV_E_DVASPECT -Language=English -DV_E_DVASPECT - Invalid aspect(s) -. - -MessageId=0x006C -Severity=Warning -Facility=ITF -SymbolicName=DV_E_DVTARGETDEVICE_SIZE -Language=English -DV_E_DVTARGETDEVICE_SIZE - tdSize parameter of the DVTARGETDEVICE structure is invalid -. - -MessageId=0x006D -Severity=Warning -Facility=ITF -SymbolicName=DV_E_NOIVIEWOBJECT -Language=English -DV_E_NOIVIEWOBJECT - Object doesn't support IViewObject interface -. - -MessageId=0x0100 -Severity=Warning -Facility=ITF -SymbolicName=DRAGDROP_E_NOTREGISTERED -Language=English -DRAGDROP_E_NOTREGISTERED - Trying to revoke a drop target that has not been registered -. - -MessageId=0x0101 -Severity=Warning -Facility=ITF -SymbolicName=DRAGDROP_E_ALREADYREGISTERED -Language=English -DRAGDROP_E_ALREADYREGISTERED - This window has already been registered as a drop target -. - -MessageId=0x0102 -Severity=Warning -Facility=ITF -SymbolicName=DRAGDROP_E_INVALIDHWND -Language=English -DRAGDROP_E_INVALIDHWND - Invalid window handle -. - -MessageId=0x0110 -Severity=Warning -Facility=ITF -SymbolicName=CLASS_E_NOAGGREGATION -Language=English -CLASS_E_NOAGGREGATION - Class does not support aggregation (or class object is remote) -. - -MessageId=0x0111 -Severity=Warning -Facility=ITF -SymbolicName=CLASS_E_CLASSNOTAVAILABLE -Language=English -CLASS_E_CLASSNOTAVAILABLE - ClassFactory cannot supply requested class -. - -MessageId=0x0112 -Severity=Warning -Facility=ITF -SymbolicName=CLASS_E_NOTLICENSED -Language=English -CLASS_E_NOTLICENSED - Class is not licensed for use -. +MessageIdTypedef=ULONG + +SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS + Informational=0x1:STATUS_SEVERITY_INFORMATIONAL + Warning=0x2:STATUS_SEVERITY_WARNING + Error=0x3:STATUS_SEVERITY_ERROR + ) + +FacilityNames=(System=0x0:FACILITY_SYSTEM + ITF=0x4:FACILITY_ITF + WIN32=0x7:FACILITY_GENERAL + ) + +LanguageNames=(English=0x409:MSG00409 + Russian=0x419:MSG00419) + +MessageId=0 +Severity=Success +Facility=System +SymbolicName=ERROR_SUCCESS +Language=English +ERROR_SUCCESS - The operation completed successfully. +. +Language=Russian +ERROR_SUCCESS - Операция успешно завершена. +. + +MessageId=1 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FUNCTION +Language=English +ERROR_INVALID_FUNCTION - Incorrect function. +. +Language=Russian +ERROR_INVALID_FUNCTION - Неверная функция. +. + +MessageId=2 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_NOT_FOUND +Language=English +ERROR_FILE_NOT_FOUND - The system cannot find the file specified. +. +Language=Russian +ERROR_FILE_NOT_FOUND - Не удается найти указанный файл. +. + +MessageId=3 +Severity=Success +Facility=System +SymbolicName=ERROR_PATH_NOT_FOUND +Language=English +ERROR_PATH_NOT_FOUND - The system cannot find the path specified. +. +Language=Russian +ERROR_PATH_NOT_FOUND - Системе не удается найти указанный путь. +. + +MessageId=4 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_OPEN_FILES +Language=English +ERROR_TOO_MANY_OPEN_FILES - The system cannot open the file. +. +Language=Russian +ERROR_TOO_MANY_OPEN_FILES - Системе не удается открыть файл. +. + +MessageId=5 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCESS_DENIED +Language=English +ERROR_ACCESS_DENIED - Access is denied. +. +Language=Russian +ERROR_ACCESS_DENIED - Отказано в доступе. +. + +MessageId=6 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_HANDLE +Language=English +ERROR_INVALID_HANDLE - The handle is invalid. +. +Language=Russian +ERROR_INVALID_HANDLE - Неверный дескриптор. +. + +MessageId=7 +Severity=Success +Facility=System +SymbolicName=ERROR_ARENA_TRASHED +Language=English +ERROR_ARENA_TRASHED - The storage control blocks were destroyed. +. +Language=Russian +ERROR_ARENA_TRASHED - Повреждены управляющие блоки памяти. +. + +MessageId=8 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_ENOUGH_MEMORY +Language=English +ERROR_NOT_ENOUGH_MEMORY - Not enough storage is available to process this command. +. +Language=Russian +ERROR_NOT_ENOUGH_MEMORY - Недостаточно памяти для обработки команды. +. + +MessageId=9 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_BLOCK +Language=English +ERROR_INVALID_BLOCK - The storage control block address is invalid. +. +Language=Russian +ERROR_INVALID_BLOCK - Неверный адрес управляющего блока памяти. +. + +MessageId=10 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_ENVIRONMENT +Language=English +ERROR_BAD_ENVIRONMENT - The environment is incorrect. +. +Language=Russian +ERROR_BAD_ENVIRONMENT - Недопустимая среда. +. + +MessageId=11 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_FORMAT +Language=English +ERROR_BAD_FORMAT - An attempt was made to load a program with an incorrect format. +. +Language=Russian +ERROR_BAD_FORMAT - Попытка запустить программу с недопустимым форматом. +. + +MessageId=12 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ACCESS +Language=English +ERROR_INVALID_ACCESS - The access code is invalid. +. +Language=Russian +ERROR_INVALID_ACCESS - Неверный код доступа. +. + +MessageId=13 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DATA +Language=English +ERROR_INVALID_DATA - The data is invalid. +. +Language=Russian +ERROR_INVALID_DATA - Недопустимые данные. +. + +MessageId=14 +Severity=Success +Facility=System +SymbolicName=ERROR_OUTOFMEMORY +Language=English +ERROR_OUTOFMEMORY - Not enough storage is available to complete this operation. +. +Language=Russian +ERROR_OUTOFMEMORY - Недостаточно памяти для завершения операции. +. + +MessageId=15 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DRIVE +Language=English +ERROR_INVALID_DRIVE - The system cannot find the drive specified. +. +Language=Russian +ERROR_INVALID_DRIVE - Система не может найти указанное устройство. +. + +MessageId=16 +Severity=Success +Facility=System +SymbolicName=ERROR_CURRENT_DIRECTORY +Language=English +ERROR_CURRENT_DIRECTORY - The directory cannot be removed. +. +Language=Russian +ERROR_CURRENT_DIRECTORY - Этот каталог не может быть удален. +. + +MessageId=17 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SAME_DEVICE +Language=English +ERROR_NOT_SAME_DEVICE - The system cannot move the file to a different disk drive. +. +Language=Russian +ERROR_NOT_SAME_DEVICE - Система не может переместить файл на другое дисковое устройство. +. + +MessageId=18 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MORE_FILES +Language=English +ERROR_NO_MORE_FILES - There are no more files. +. +Language=Russian +ERROR_NO_MORE_FILES - Файлов больше нет. +. + +MessageId=19 +Severity=Success +Facility=System +SymbolicName=ERROR_WRITE_PROTECT +Language=English +ERROR_WRITE_PROTECT - The media is write protected. +. +Language=Russian +ERROR_WRITE_PROTECT - Носитель защищен от записи. +. + +MessageId=20 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_UNIT +Language=English +ERROR_BAD_UNIT - The system cannot find the device specified. +. +Language=Russian +ERROR_BAD_UNIT - Система не может найти указанное устройство. +. + +MessageId=21 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_READY +Language=English +ERROR_NOT_READY - The device is not ready. +. +Language=Russian +ERROR_NOT_READY - Устройство не готово. +. + +MessageId=22 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_COMMAND +Language=English +ERROR_BAD_COMMAND - The device does not recognize the command. +. +Language=Russian +ERROR_BAD_COMMAND - Устройство не распознает команду. +. + +MessageId=23 +Severity=Success +Facility=System +SymbolicName=ERROR_CRC +Language=English +ERROR_CRC - Data error (cyclic redundancy check). +. +Language=Russian +ERROR_CRC - Ошибка в данных (циклический код с избыточностью). +. + +MessageId=24 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_LENGTH +Language=English +ERROR_BAD_LENGTH - The program issued a command but the command length is incorrect. +. +Language=Russian +ERROR_BAD_LENGTH - Программа выдала команду с недопустимой длиной. +. + +MessageId=25 +Severity=Success +Facility=System +SymbolicName=ERROR_SEEK +Language=English +ERROR_SEEK - The drive cannot locate a specific area or track on the disk. +. +Language=Russian +ERROR_SEEK - Дисковое устройство не может обнаружить указанную область или дорожку. +. + +MessageId=26 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_DOS_DISK +Language=English +ERROR_NOT_DOS_DISK - The specified disk or diskette cannot be accessed. +. +Language=Russian +ERROR_NOT_DOS_DISK - Нет доступа к диску или дискете. +. + +MessageId=27 +Severity=Success +Facility=System +SymbolicName=ERROR_SECTOR_NOT_FOUND +Language=English +ERROR_SECTOR_NOT_FOUND - The drive cannot find the sector requested. +. +Language=Russian +ERROR_SECTOR_NOT_FOUND - Дисковое устройство не может обнаружить указанную область или дорожку. +. + +MessageId=28 +Severity=Success +Facility=System +SymbolicName=ERROR_OUT_OF_PAPER +Language=English +ERROR_OUT_OF_PAPER - The printer is out of paper. +. +Language=Russian +ERROR_OUT_OF_PAPER - В принтере закончилась бумага. +. + +MessageId=29 +Severity=Success +Facility=System +SymbolicName=ERROR_WRITE_FAULT +Language=English +ERROR_WRITE_FAULT - The system cannot write to the specified device. +. +Language=Russian +ERROR_WRITE_FAULT - Система не может выполнить запись на указанное устройство. +. + +MessageId=30 +Severity=Success +Facility=System +SymbolicName=ERROR_READ_FAULT +Language=English +ERROR_READ_FAULT - The system cannot read from the specified device. +. +Language=Russian +ERROR_READ_FAULT - Системе не может выполнить чтение с указанного устройства. +. + +MessageId=31 +Severity=Success +Facility=System +SymbolicName=ERROR_GEN_FAILURE +Language=English +ERROR_GEN_FAILURE - A device attached to the system is not functioning. +. +Language=Russian +ERROR_GEN_FAILURE - Устройство, подключенное к системе, не работает. +. + +MessageId=32 +Severity=Success +Facility=System +SymbolicName=ERROR_SHARING_VIOLATION +Language=English +ERROR_SHARING_VIOLATION - The process cannot access the file because it is being used by another process. +. +Language=Russian +ERROR_SHARING_VIOLATION - Процесс не имеет доступа к файлу, поскольку файл используется другим процессом. +. + +MessageId=33 +Severity=Success +Facility=System +SymbolicName=ERROR_LOCK_VIOLATION +Language=English +ERROR_LOCK_VIOLATION - The process cannot access the file because another process has locked a portion of the file. +. +Language=Russian +ERROR_LOCK_VIOLATION - Процесс не имеет доступа к файлу, поскольку другой процесс заблокировал часть файла. +. + +MessageId=34 +Severity=Success +Facility=System +SymbolicName=ERROR_WRONG_DISK +Language=English +ERROR_WRONG_DISK - The wrong diskette is in the drive. Insert %2 (Volume Serial Number: %3) into drive %1. +. +Language=Russian +ERROR_WRONG_DISK - Вставте другую дискету. Вставьте %2 (серийный номер тома: %3) в дисковод %1. +. + +MessageId=36 +Severity=Success +Facility=System +SymbolicName=ERROR_SHARING_BUFFER_EXCEEDED +Language=English +ERROR_SHARING_BUFFER_EXCEEDED - Too many files opened for sharing. +. +Language=Russian +ERROR_SHARING_BUFFER_EXCEEDED - Слишком много файлов открыто для совместного использования. +. + +MessageId=38 +Severity=Success +Facility=System +SymbolicName=ERROR_HANDLE_EOF +Language=English +ERROR_HANDLE_EOF - Reached the end of the file. +. +Language=Russian +ERROR_HANDLE_EOF - Достигнут конец файла. +. + +MessageId=39 +Severity=Success +Facility=System +SymbolicName=ERROR_HANDLE_DISK_FULL +Language=English +ERROR_HANDLE_DISK_FULL - The disk is full. +. +Language=Russian +ERROR_HANDLE_DISK_FULL - Отсутствует место на диске. +. + +MessageId=50 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SUPPORTED +Language=English +ERROR_NOT_SUPPORTED - The request is not supported. +. +Language=Russian +ERROR_NOT_SUPPORTED - Запрос не поддерживается. +. + +MessageId=51 +Severity=Success +Facility=System +SymbolicName=ERROR_REM_NOT_LIST +Language=English +ERROR_REM_NOT_LIST - ReactOS cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If ReactOS still cannot find the network path, contact your network administrator. +. +Language=Russian +ERROR_REM_NOT_LIST - Невозможно найти сетевой путь. Убедитесь, что сетевой путь указан верно, а конечный компьютер включен и не занят. Если система вновь не сможет найти путь, обратитесь к сетевому администратору. +. + + +MessageId=52 +Severity=Success +Facility=System +SymbolicName=ERROR_DUP_NAME +Language=English +ERROR_DUP_NAME - You were not connected because a duplicate name exists on the network. Go to System in the Control Panel to change the computer name and try again. +. +Language=Russian +ERROR_DUP_NAME - Вы не подключены, поскольку такое же имя уже существует в этой сети. Для присоединения к домену откройте компонент панели управления "Система", измените имя компьютера и повторите попытку. Для присоединения к рабочей группе выберите другое имя рабочей группы. +. + +MessageId=53 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_NETPATH +Language=English +ERROR_BAD_NETPATH - The network path was not found. +. +Language=Russian +ERROR_BAD_NETPATH - Не найден сетевой путь. +. + +MessageId=54 +Severity=Success +Facility=System +SymbolicName=ERROR_NETWORK_BUSY +Language=English +ERROR_NETWORK_BUSY - The network is busy. +. +Language=Russian +ERROR_NETWORK_BUSY - Сеть занята. +. + +MessageId=55 +Severity=Success +Facility=System +SymbolicName=ERROR_DEV_NOT_EXIST +Language=English +ERROR_DEV_NOT_EXIST - The specified network resource or device is no longer available. +. +Language=Russian +ERROR_DEV_NOT_EXIST - Сетевой ресурс или устройство более недоступно. +. + +MessageId=56 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_CMDS +Language=English +ERROR_TOO_MANY_CMDS - The network BIOS command limit has been reached. +. +Language=Russian +ERROR_TOO_MANY_CMDS - Достигнут предел числа команд NetBIOS. +. + +MessageId=57 +Severity=Success +Facility=System +SymbolicName=ERROR_ADAP_HDW_ERR +Language=English +ERROR_ADAP_HDW_ERR - A network adapter hardware error occurred. +. +Language=Russian +ERROR_ADAP_HDW_ERR - Аппаратная ошибка сетевой платы. +. + +MessageId=58 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_NET_RESP +Language=English +ERROR_BAD_NET_RESP - The specified server cannot perform the requested operation. +. +Language=Russian +ERROR_BAD_NET_RESP - Указанный сервер не может выполнить требуемую операцию. +. + +MessageId=59 +Severity=Success +Facility=System +SymbolicName=ERROR_UNEXP_NET_ERR +Language=English +ERROR_UNEXP_NET_ERR - An unexpected network error occurred. +. +Language=Russian +ERROR_UNEXP_NET_ERR - Непредвиденная сетевая ошибка. +. + +MessageId=60 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_REM_ADAP +Language=English +ERROR_BAD_REM_ADAP - The remote adapter is not compatible. +. +Language=Russian +ERROR_BAD_REM_ADAP - Несовместимый удаленный контроллер. +. + +MessageId=61 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTQ_FULL +Language=English +ERROR_PRINTQ_FULL - The printer queue is full. +. +Language=Russian +ERROR_PRINTQ_FULL - Очередь печати переполнена. +. + +MessageId=62 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SPOOL_SPACE +Language=English +ERROR_NO_SPOOL_SPACE - Space to store the file waiting to be printed is not available on the server. +. +Language=Russian +ERROR_NO_SPOOL_SPACE - На сервере нет места для хранения ожидающего печати файла. +. + +MessageId=63 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINT_CANCELLED +Language=English +ERROR_PRINT_CANCELLED - Your file waiting to be printed was deleted. +. +Language=Russian +ERROR_PRINT_CANCELLED - Ваш файл, находившийся в очереди вывода на печать, был удален. +. + +MessageId=64 +Severity=Success +Facility=System +SymbolicName=ERROR_NETNAME_DELETED +Language=English +ERROR_NETNAME_DELETED - The specified network name is no longer available. +. +Language=Russian +ERROR_NETNAME_DELETED - Указанное сетевое имя более недоступно. +. + +MessageId=65 +Severity=Success +Facility=System +SymbolicName=ERROR_NETWORK_ACCESS_DENIED +Language=English +ERROR_NETWORK_ACCESS_DENIED - Network access is denied. +. +Language=Russian +ERROR_NETWORK_ACCESS_DENIED - Нет доступа к сети. +. + +MessageId=66 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_DEV_TYPE +Language=English +ERROR_BAD_DEV_TYPE - The network resource type is not correct. +. +Language=Russian +ERROR_BAD_DEV_TYPE - Неверно указан тип сетевого ресурса. +. + +MessageId=67 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_NET_NAME +Language=English +ERROR_BAD_NET_NAME - The network name cannot be found. +. +Language=Russian +ERROR_BAD_NET_NAME - Не найдено сетевое имя. +. + +MessageId=68 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_NAMES +Language=English +ERROR_TOO_MANY_NAMES - The name limit for the local computer network adapter card was exceeded. +. +Language=Russian +ERROR_TOO_MANY_NAMES - Превышен предел числа имен для сетевого адаптера локального компьютера. +. + +MessageId=69 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_SESS +Language=English +ERROR_TOO_MANY_SESS - The network BIOS session limit was exceeded. +. +Language=Russian +ERROR_TOO_MANY_SESS - Превышен предел по числу сеансов NetBIOS. +. + +MessageId=70 +Severity=Success +Facility=System +SymbolicName=ERROR_SHARING_PAUSED +Language=English +ERROR_SHARING_PAUSED - The remote server has been paused or is in the process of being started. +. +Language=Russian +ERROR_SHARING_PAUSED - Сервер сети был остановлен или находится в процессе запуска. +. + +MessageId=71 +Severity=Success +Facility=System +SymbolicName=ERROR_REQ_NOT_ACCEP +Language=English +ERROR_REQ_NOT_ACCEP - No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept. +. +Language=Russian +ERROR_REQ_NOT_ACCEP - Дополнительные подключения к этому удаленному компьютеру сейчас невозможны, так как их число достигло предела. +. + +MessageId=72 +Severity=Success +Facility=System +SymbolicName=ERROR_REDIR_PAUSED +Language=English +ERROR_REDIR_PAUSED - The specified printer or disk device has been paused. +. +Language=Russian +ERROR_REDIR_PAUSED - Работа указанного принтера или дискового накопителя была остановлена. +. + +MessageId=80 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_EXISTS +Language=English +ERROR_FILE_EXISTS - The file exists. +. +Language=Russian +ERROR_FILE_EXISTS - Файл существует. +. + +MessageId=82 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_MAKE +Language=English +ERROR_CANNOT_MAKE - The directory or file cannot be created. +. +Language=Russian +ERROR_CANNOT_MAKE - Не удается создать файл или папку. +. + +MessageId=83 +Severity=Success +Facility=System +SymbolicName=ERROR_FAIL_I24 +Language=English +ERROR_FAIL_I24 - Fail on INT 24. +. +Language=Russian +ERROR_FAIL_I24 - Сбой прерывания INT 24. +. + +MessageId=84 +Severity=Success +Facility=System +SymbolicName=ERROR_OUT_OF_STRUCTURES +Language=English +ERROR_OUT_OF_STRUCTURES - Storage to process this request is not available. +. +Language=Russian +ERROR_OUT_OF_STRUCTURES - Недостаточно памяти для обработки запроса. +. + +MessageId=85 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_ASSIGNED +Language=English +ERROR_ALREADY_ASSIGNED - The local device name is already in use. +. +Language=Russian +ERROR_ALREADY_ASSIGNED - Имя локального устройства уже используется. +. + +MessageId=86 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PASSWORD +Language=English +ERROR_INVALID_PASSWORD - The specified network password is not correct. +. +Language=Russian +ERROR_INVALID_PASSWORD - Сетевой пароль указан неверно. +. + +MessageId=87 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PARAMETER +Language=English +ERROR_INVALID_PARAMETER - The parameter is incorrect. +. +Language=Russian +ERROR_INVALID_PARAMETER - Параметр задан неверно. +. + +MessageId=88 +Severity=Success +Facility=System +SymbolicName=ERROR_NET_WRITE_FAULT +Language=English +ERROR_NET_WRITE_FAULT - A write fault occurred on the network. +. +Language=Russian +ERROR_NET_WRITE_FAULT - Ошибка записи в сети. +. + +MessageId=89 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_PROC_SLOTS +Language=English +ERROR_NO_PROC_SLOTS - The system cannot start another process at this time. +. +Language=Russian +ERROR_NO_PROC_SLOTS - В настоящее время системе не удается запустить другой процесс. +. + +MessageId=100 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_SEMAPHORES +Language=English +ERROR_TOO_MANY_SEMAPHORES - Cannot create another system semaphore. +. +Language=Russian +ERROR_TOO_MANY_SEMAPHORES - Не удается создать еще один системный семафор. +. + +MessageId=101 +Severity=Success +Facility=System +SymbolicName=ERROR_EXCL_SEM_ALREADY_OWNED +Language=English +ERROR_EXCL_SEM_ALREADY_OWNED - The exclusive semaphore is owned by another process. +. +Language=Russian +ERROR_EXCL_SEM_ALREADY_OWNED - Семафор эксклюзивного доступа занят другим процессом. +. + +MessageId=102 +Severity=Success +Facility=System +SymbolicName=ERROR_SEM_IS_SET +Language=English +ERROR_SEM_IS_SET - The semaphore is set and cannot be closed. +. +Language=Russian +ERROR_SEM_IS_SET - Семафор установлен и не может быть закрыт. +. + +MessageId=103 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_SEM_REQUESTS +Language=English +ERROR_TOO_MANY_SEM_REQUESTS - The semaphore cannot be set again. +. +Language=Russian +ERROR_TOO_MANY_SEM_REQUESTS - Семафор не может быть установлен повторно. +. + +MessageId=104 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_AT_INTERRUPT_TIME +Language=English +ERROR_INVALID_AT_INTERRUPT_TIME - Cannot request exclusive semaphores at interrupt time. +. +Language=Russian +ERROR_INVALID_AT_INTERRUPT_TIME - Запросы к семафорам эксклюзивного доступа на время выполнения прерываний не допускаются. +. + +MessageId=105 +Severity=Success +Facility=System +SymbolicName=ERROR_SEM_OWNER_DIED +Language=English +ERROR_SEM_OWNER_DIED - The previous ownership of this semaphore has ended. +. +Language=Russian +ERROR_SEM_OWNER_DIED - Этот семафор более не принадлежит использовавшему его процессу. +. + +MessageId=106 +Severity=Success +Facility=System +SymbolicName=ERROR_SEM_USER_LIMIT +Language=English +ERROR_SEM_USER_LIMIT - Insert the diskette for drive %1. +. +Language=Russian +ERROR_SEM_USER_LIMIT - Вставте дискету в дисковод %1. +. + +MessageId=107 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_CHANGE +Language=English +ERROR_DISK_CHANGE - The program stopped because an alternate diskette was not inserted. +. +Language=Russian +ERROR_DISK_CHANGE - Программа была остановлена, так как нужный диск вставлен не был. +. + +MessageId=108 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVE_LOCKED +Language=English +ERROR_DRIVE_LOCKED - The disk is in use or locked by another process. +. +Language=Russian +ERROR_DRIVE_LOCKED - Диск занят или заблокирован другим процессом. +. + +MessageId=109 +Severity=Success +Facility=System +SymbolicName=ERROR_BROKEN_PIPE +Language=English +ERROR_BROKEN_PIPE - The pipe has been ended. +. +Language=Russian +ERROR_BROKEN_PIPE - Канал был закрыт. +. + +MessageId=110 +Severity=Success +Facility=System +SymbolicName=ERROR_OPEN_FAILED +Language=English +ERROR_OPEN_FAILED - The system cannot open the device or file specified. +. +Language=Russian +ERROR_OPEN_FAILED - Системе не удается открыть указанное устройство или файл. +. + +MessageId=111 +Severity=Success +Facility=System +SymbolicName=ERROR_BUFFER_OVERFLOW +Language=English +ERROR_BUFFER_OVERFLOW - The file name is too long. +. +Language=Russian +ERROR_BUFFER_OVERFLOW - Указано слишком длинное имя файла. +. + +MessageId=112 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_FULL +Language=English +ERROR_DISK_FULL - There is not enough space on the disk. +. +Language=Russian +ERROR_DISK_FULL - Недостаточно места на диске. +. + +MessageId=113 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MORE_SEARCH_HANDLES +Language=English +ERROR_NO_MORE_SEARCH_HANDLES - No more internal file identifiers available. +. +Language=Russian +ERROR_NO_MORE_SEARCH_HANDLES - Исчерпаны внутренние идентификаторы файлов. +. + +MessageId=114 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_TARGET_HANDLE +Language=English +ERROR_INVALID_TARGET_HANDLE - The target internal file identifier is incorrect. +. +Language=Russian +ERROR_INVALID_TARGET_HANDLE - Результирующий внутренний идентификатор файла неправилен. +. + +MessageId=117 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_CATEGORY +Language=English +ERROR_INVALID_CATEGORY - The IOCTL call made by the application program is not correct. +. +Language=Russian +ERROR_INVALID_CATEGORY - Вызов IOCTL приложением произведен неверно. +. + +MessageId=118 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_VERIFY_SWITCH +Language=English +ERROR_INVALID_VERIFY_SWITCH - The verify-on-write switch parameter value is not correct. +. +Language=Russian +ERROR_INVALID_VERIFY_SWITCH - Параметр проверки записи данных имеет неверное значение. +. + +MessageId=119 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_DRIVER_LEVEL +Language=English +ERROR_BAD_DRIVER_LEVEL - The system does not support the command requested. +. +Language=Russian +ERROR_BAD_DRIVER_LEVEL - Система не может обработать полученную команду. +. + +MessageId=120 +Severity=Success +Facility=System +SymbolicName=ERROR_CALL_NOT_IMPLEMENTED +Language=English +ERROR_CALL_NOT_IMPLEMENTED - This function is not supported on this system. +. +Language=Russian +ERROR_CALL_NOT_IMPLEMENTED - Эта функция не поддерживается для этой системы. +. + +MessageId=121 +Severity=Success +Facility=System +SymbolicName=ERROR_SEM_TIMEOUT +Language=English +ERROR_SEM_TIMEOUT - The semaphore timeout period has expired. +. +Language=Russian +ERROR_SEM_TIMEOUT - Превышен таймаут семафора. +. + +MessageId=122 +Severity=Success +Facility=System +SymbolicName=ERROR_INSUFFICIENT_BUFFER +Language=English +ERROR_INSUFFICIENT_BUFFER - The data area passed to a system call is too small. +. +Language=Russian +ERROR_INSUFFICIENT_BUFFER - Область данных, переданная по системному вызову, слишком мала. +. + +MessageId=123 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_NAME +Language=English +ERROR_INVALID_NAME - The filename, directory name, or volume label syntax is incorrect. +. +Language=Russian +ERROR_INVALID_NAME - Синтаксическая ошибка в имени файла, имени папки или метке тома. +. + +MessageId=124 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LEVEL +Language=English +ERROR_INVALID_LEVEL - The system call level is not correct. +. +Language=Russian +ERROR_INVALID_LEVEL - Неверный уровень системного вызова. +. + +MessageId=125 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_VOLUME_LABEL +Language=English +ERROR_NO_VOLUME_LABEL - The disk has no volume label. +. +Language=Russian +ERROR_NO_VOLUME_LABEL - У диска отсутствует метка тома. +. + +MessageId=126 +Severity=Success +Facility=System +SymbolicName=ERROR_MOD_NOT_FOUND +Language=English +ERROR_MOD_NOT_FOUND - The specified module could not be found. +. +Language=Russian +ERROR_MOD_NOT_FOUND - Не найден указанный модуль. +. + +MessageId=127 +Severity=Success +Facility=System +SymbolicName=ERROR_PROC_NOT_FOUND +Language=English +ERROR_PROC_NOT_FOUND - The specified procedure could not be found. +. +Language=Russian +ERROR_PROC_NOT_FOUND - Не найдена указанная процедура. +. + +MessageId=128 +Severity=Success +Facility=System +SymbolicName=ERROR_WAIT_NO_CHILDREN +Language=English +ERROR_WAIT_NO_CHILDREN - There are no child processes to wait for. +. +Language=Russian +ERROR_WAIT_NO_CHILDREN - Дочерние процессы, окончания которых требуется ожидать, отсутствуют. +. + +MessageId=129 +Severity=Success +Facility=System +SymbolicName=ERROR_CHILD_NOT_COMPLETE +Language=English +ERROR_CHILD_NOT_COMPLETE - The %1 application cannot be run in Win32 mode. +. +Language=Russian +ERROR_CHILD_NOT_COMPLETE - Приложение "%1" не может быть запущено в режиме Win32. +. + +MessageId=130 +Severity=Success +Facility=System +SymbolicName=ERROR_DIRECT_ACCESS_HANDLE +Language=English +ERROR_DIRECT_ACCESS_HANDLE - Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O. +. +Language=Russian +ERROR_DIRECT_ACCESS_HANDLE - Попытка использовать дескриптор файла для открытия раздела диска и выполнения операции, отличающейся от ввода/вывода нижнего уровня. +. + +MessageId=131 +Severity=Success +Facility=System +SymbolicName=ERROR_NEGATIVE_SEEK +Language=English +ERROR_NEGATIVE_SEEK - An attempt was made to move the file pointer before the beginning of the file. +. +Language=Russian +ERROR_NEGATIVE_SEEK - Попытка поместить указатель на файл перед началом файла. +. + +MessageId=132 +Severity=Success +Facility=System +SymbolicName=ERROR_SEEK_ON_DEVICE +Language=English +ERROR_SEEK_ON_DEVICE - The file pointer cannot be set on the specified device or file. +. +Language=Russian +ERROR_SEEK_ON_DEVICE - Указатель на файл не может быть установлен на заданное устройство или файл. +. + +MessageId=133 +Severity=Success +Facility=System +SymbolicName=ERROR_IS_JOIN_TARGET +Language=English +ERROR_IS_JOIN_TARGET - A JOIN or SUBST command cannot be used for a drive that contains previously joined drives. +. +Language=Russian +ERROR_IS_JOIN_TARGET - Команды JOIN и SUBST не могут быть использованы для дисков, содержащих уже объединенные диски. +. + +MessageId=134 +Severity=Success +Facility=System +SymbolicName=ERROR_IS_JOINED +Language=English +ERROR_IS_JOINED - An attempt was made to use a JOIN or SUBST command on a drive that has already been joined. +. +Language=Russian +ERROR_IS_JOINED - Попытка использовать команду JOIN или SUBST для диска, уже включенного в набор объединенных дисков. +. + +MessageId=135 +Severity=Success +Facility=System +SymbolicName=ERROR_IS_SUBSTED +Language=English +ERROR_IS_SUBSTED - An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted. +. +Language=Russian +ERROR_IS_SUBSTED - Попытка использовать команду JOIN или SUBST для диска, который уже был отображен. +. + +MessageId=136 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_JOINED +Language=English +ERROR_NOT_JOINED - The system tried to delete the JOIN of a drive that is not joined. +. +Language=Russian +ERROR_NOT_JOINED - Попытка снять признак объединения с диска, для которого команда JOIN не выполнялась. +. + +MessageId=137 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SUBSTED +Language=English +ERROR_NOT_SUBSTED - The system tried to delete the substitution of a drive that is not substituted. +. +Language=Russian +ERROR_NOT_SUBSTED - Попытка снять признак отображения с диска, для которого команда SUBST не выполнялась. +. + +MessageId=138 +Severity=Success +Facility=System +SymbolicName=ERROR_JOIN_TO_JOIN +Language=English +ERROR_JOIN_TO_JOIN - The system tried to join a drive to a directory on a joined drive. +. +Language=Russian +ERROR_JOIN_TO_JOIN - Попытка объединить диск с папкой на объединенном диске. +. + +MessageId=139 +Severity=Success +Facility=System +SymbolicName=ERROR_SUBST_TO_SUBST +Language=English +ERROR_SUBST_TO_SUBST - The system tried to substitute a drive to a directory on a substituted drive. +. +Language=Russian +ERROR_SUBST_TO_SUBST - Попытка отобразить диск на папку, находящуюся на отображенном диске. +. + +MessageId=140 +Severity=Success +Facility=System +SymbolicName=ERROR_JOIN_TO_SUBST +Language=English +ERROR_JOIN_TO_SUBST - The system tried to join a drive to a directory on a substituted drive. +. +Language=Russian +ERROR_JOIN_TO_SUBST - Попытка объединить диск с папкой на отображенном диске. +. + +MessageId=141 +Severity=Success +Facility=System +SymbolicName=ERROR_SUBST_TO_JOIN +Language=English +ERROR_SUBST_TO_JOIN - The system tried to SUBST a drive to a directory on a joined drive. +. +Language=Russian +ERROR_SUBST_TO_JOIN - Попытка отобразить диск на папку, находящуюся на объединенном диске. +. + +MessageId=142 +Severity=Success +Facility=System +SymbolicName=ERROR_BUSY_DRIVE +Language=English +ERROR_BUSY_DRIVE - The system cannot perform a JOIN or SUBST at this time. +. +Language=Russian +ERROR_BUSY_DRIVE - В настоящее время выполнить команду JOIN или SUBST невозможно. +. + +MessageId=143 +Severity=Success +Facility=System +SymbolicName=ERROR_SAME_DRIVE +Language=English +ERROR_SAME_DRIVE - The system cannot join or substitute a drive to or for a directory on the same drive. +. +Language=Russian +ERROR_SAME_DRIVE - Невозможно объединить (или отобразить) диск с папкой (или на папку) этого же диска. +. + +MessageId=144 +Severity=Success +Facility=System +SymbolicName=ERROR_DIR_NOT_ROOT +Language=English +ERROR_DIR_NOT_ROOT - The directory is not a subdirectory of the root directory. +. +Language=Russian +ERROR_DIR_NOT_ROOT - Эта папка не является подпапкой корневой папки. +. + +MessageId=145 +Severity=Success +Facility=System +SymbolicName=ERROR_DIR_NOT_EMPTY +Language=English +ERROR_DIR_NOT_EMPTY - The directory is not empty. +. +Language=Russian +ERROR_DIR_NOT_EMPTY - Папка не пуста. +. + +MessageId=146 +Severity=Success +Facility=System +SymbolicName=ERROR_IS_SUBST_PATH +Language=English +ERROR_IS_SUBST_PATH - The path specified is being used in a substitute. +. +Language=Russian +ERROR_IS_SUBST_PATH - Указанный путь используется для отображенного диска. +. + +MessageId=147 +Severity=Success +Facility=System +SymbolicName=ERROR_IS_JOIN_PATH +Language=English +ERROR_IS_JOIN_PATH - Not enough resources are available to process this command. +. +Language=Russian +ERROR_IS_JOIN_PATH - Недостаточно ресурсов для обработки команды. +. + +MessageId=148 +Severity=Success +Facility=System +SymbolicName=ERROR_PATH_BUSY +Language=English +ERROR_PATH_BUSY - The path specified cannot be used at this time. +. +Language=Russian +ERROR_PATH_BUSY - Указанный путь невозможно использовать сейчас. +. + +MessageId=149 +Severity=Success +Facility=System +SymbolicName=ERROR_IS_SUBST_TARGET +Language=English +ERROR_IS_SUBST_TARGET - An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute. +. +Language=Russian +ERROR_IS_SUBST_TARGET - Попытка объединить или отобразить диск, папка на котором уже используется для отображения. +. + +MessageId=150 +Severity=Success +Facility=System +SymbolicName=ERROR_SYSTEM_TRACE +Language=English +ERROR_SYSTEM_TRACE - System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed. +. +Language=Russian +ERROR_SYSTEM_TRACE - Сведения о трассировке в файле CONFIG.SYS не найдены, либо трассировка запрещена. +. + +MessageId=151 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_EVENT_COUNT +Language=English +ERROR_INVALID_EVENT_COUNT - The number of specified semaphore events for DosMuxSemWait is not correct. +. +Language=Russian +ERROR_INVALID_EVENT_COUNT - Число семафоров для DosMuxSemWait задано неверно. +. + +MessageId=152 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_MUXWAITERS +Language=English +ERROR_TOO_MANY_MUXWAITERS - DosMuxSemWait did not execute; too many semaphores are already set. +. +Language=Russian +ERROR_TOO_MANY_MUXWAITERS - Не выполнен вызов DosMuxSemWait. Установлено слишком много семафоров. +. + +MessageId=153 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LIST_FORMAT +Language=English +ERROR_INVALID_LIST_FORMAT - The DosMuxSemWait list is not correct. +. +Language=Russian +ERROR_INVALID_LIST_FORMAT - Некорректный вызов DosMuxSemWait. +. + +MessageId=154 +Severity=Success +Facility=System +SymbolicName=ERROR_LABEL_TOO_LONG +Language=English +ERROR_LABEL_TOO_LONG - The volume label you entered exceeds the label character limit of the target file system. +. +Language=Russian +ERROR_LABEL_TOO_LONG - Длина метки тома превосходит предел, установленный для файловой системы. +. + +MessageId=155 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_TCBS +Language=English +ERROR_TOO_MANY_TCBS - Cannot create another thread. +. +Language=Russian +ERROR_TOO_MANY_TCBS - Не удается создать еще один поток команд. +. + +MessageId=156 +Severity=Success +Facility=System +SymbolicName=ERROR_SIGNAL_REFUSED +Language=English +ERROR_SIGNAL_REFUSED - The recipient process has refused the signal. +. +Language=Russian +ERROR_SIGNAL_REFUSED - Принимающий процесс отклонил сигнал. +. + +MessageId=157 +Severity=Success +Facility=System +SymbolicName=ERROR_DISCARDED +Language=English +ERROR_DISCARDED - The segment is already discarded and cannot be locked. +. +Language=Russian +ERROR_DISCARDED - Сегмент уже освобожден и не может быть заблокирован. +. + +MessageId=158 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_LOCKED +Language=English +ERROR_NOT_LOCKED - The segment is already unlocked. +. +Language=Russian +ERROR_NOT_LOCKED - Блокировка с сегмента уже снята. +. + +MessageId=159 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_THREADID_ADDR +Language=English +ERROR_BAD_THREADID_ADDR - The address for the thread ID is not correct. +. +Language=Russian +ERROR_BAD_THREADID_ADDR - Адрес идентификатора потока команд задан неверно. +. + +MessageId=160 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_ARGUMENTS +Language=English +ERROR_BAD_ARGUMENTS - The argument string passed to DosExecPgm is not correct. +. +Language=Russian +ERROR_BAD_ARGUMENTS - Неверны один или несколько аргументов. +. + +MessageId=161 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_PATHNAME +Language=English +ERROR_BAD_PATHNAME - The specified path is invalid. +. +Language=Russian +ERROR_BAD_PATHNAME - Указан недопустимый путь. +. + +MessageId=162 +Severity=Success +Facility=System +SymbolicName=ERROR_SIGNAL_PENDING +Language=English +ERROR_SIGNAL_PENDING - A signal is already pending. +. +Language=Russian +ERROR_SIGNAL_PENDING - Сигнал уже находится в состоянии обработки. +. + +MessageId=164 +Severity=Success +Facility=System +SymbolicName=ERROR_MAX_THRDS_REACHED +Language=English +ERROR_MAX_THRDS_REACHED - No more threads can be created in the system. +. +Language=Russian +ERROR_MAX_THRDS_REACHED - Создание дополнительных потоков команд невозможно. +. + +MessageId=167 +Severity=Success +Facility=System +SymbolicName=ERROR_LOCK_FAILED +Language=English +ERROR_LOCK_FAILED - Unable to lock a region of a file. +. +Language=Russian +ERROR_LOCK_FAILED - Не удается снять блокировку с области файла. +. + +MessageId=170 +Severity=Success +Facility=System +SymbolicName=ERROR_BUSY +Language=English +ERROR_BUSY - The requested resource is in use. +. +Language=Russian +ERROR_BUSY - Требуемый ресурс занят. +. + +MessageId=173 +Severity=Success +Facility=System +SymbolicName=ERROR_CANCEL_VIOLATION +Language=English +ERROR_CANCEL_VIOLATION - A lock request was not outstanding for the supplied cancel region. +. +Language=Russian +ERROR_CANCEL_VIOLATION - Запрос на блокировку соответствует определенной области. +. + +MessageId=174 +Severity=Success +Facility=System +SymbolicName=ERROR_ATOMIC_LOCKS_NOT_SUPPORTED +Language=English +ERROR_ATOMIC_LOCKS_NOT_SUPPORTED - The file system does not support atomic changes to the lock type. +. +Language=Russian +ERROR_ATOMIC_LOCKS_NOT_SUPPORTED - Файловая система не поддерживает указанные изменения типа блокировки. +. + +MessageId=180 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SEGMENT_NUMBER +Language=English +ERROR_INVALID_SEGMENT_NUMBER - The system detected a segment number that was not correct. +. +Language=Russian +ERROR_INVALID_SEGMENT_NUMBER - Система обнаружила неверный номер сегмента. +. + +MessageId=182 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ORDINAL +Language=English +ERROR_INVALID_ORDINAL - The operating system cannot run %1. +. +Language=Russian +ERROR_INVALID_ORDINAL - Операционная система не может выполнить "%1". +. + +MessageId=183 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_EXISTS +Language=English +ERROR_ALREADY_EXISTS - Cannot create a file when that file already exists. +. +Language=Russian +ERROR_ALREADY_EXISTS - Невозможно создать файл, так как он уже существует. +. + +MessageId=186 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FLAG_NUMBER +Language=English +ERROR_INVALID_FLAG_NUMBER - The flag passed is not correct. +. +Language=Russian +ERROR_INVALID_FLAG_NUMBER - Передан неверный флаг. +. + +MessageId=187 +Severity=Success +Facility=System +SymbolicName=ERROR_SEM_NOT_FOUND +Language=English +ERROR_SEM_NOT_FOUND - The specified system semaphore name was not found. +. +Language=Russian +ERROR_SEM_NOT_FOUND - Не найдено указанное имя системного семафора. +. + +MessageId=188 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_STARTING_CODESEG +Language=English +ERROR_INVALID_STARTING_CODESEG - The operating system cannot run %1. +. +Language=Russian +ERROR_INVALID_STARTING_CODESEG - Операционная система не может выполнить "%1". +. + +MessageId=189 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_STACKSEG +Language=English +ERROR_INVALID_STACKSEG - The operating system cannot run %1. +. +Language=Russian +ERROR_INVALID_STACKSEG - Операционная система не может выполнить "%1". +. + +MessageId=190 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MODULETYPE +Language=English +ERROR_INVALID_MODULETYPE - The operating system cannot run %1. +. +Language=Russian +ERROR_INVALID_MODULETYPE - Операционная система не может выполнить "%1". +. + +MessageId=191 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_EXE_SIGNATURE +Language=English +ERROR_INVALID_EXE_SIGNATURE - Cannot run %1 in Win32 mode. +. +Language=Russian +ERROR_INVALID_EXE_SIGNATURE - Невозможно запустить "%1" в режиме Win32. +. + +MessageId=192 +Severity=Success +Facility=System +SymbolicName=ERROR_EXE_MARKED_INVALID +Language=English +ERROR_EXE_MARKED_INVALID - The operating system cannot run %1. +. +Language=Russian +ERROR_EXE_MARKED_INVALID - Операционная система не может выполнить "%1". +. + +MessageId=193 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_EXE_FORMAT +Language=English +ERROR_BAD_EXE_FORMAT - %1 is not a valid Win32 application. +. +Language=Russian +ERROR_BAD_EXE_FORMAT - "%1" не является приложением Win32. +. + +MessageId=194 +Severity=Success +Facility=System +SymbolicName=ERROR_ITERATED_DATA_EXCEEDS_64k +Language=English +ERROR_ITERATED_DATA_EXCEEDS_64k - The operating system cannot run %1. +. +Language=Russian +ERROR_ITERATED_DATA_EXCEEDS_64k - Операционная система не может выполнить "%1". +. + +MessageId=195 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MINALLOCSIZE +Language=English +ERROR_INVALID_MINALLOCSIZE - The operating system cannot run %1. +. +Language=Russian +ERROR_INVALID_MINALLOCSIZE - Операционная система не может выполнить "%1". +. + +MessageId=196 +Severity=Success +Facility=System +SymbolicName=ERROR_DYNLINK_FROM_INVALID_RING +Language=English +ERROR_DYNLINK_FROM_INVALID_RING - The operating system cannot run this application program. +. +Language=Russian +ERROR_DYNLINK_FROM_INVALID_RING - Операционная система не может запустить это приложение. +. + +MessageId=197 +Severity=Success +Facility=System +SymbolicName=ERROR_IOPL_NOT_ENABLED +Language=English +ERROR_IOPL_NOT_ENABLED - The operating system is not presently configured to run this application. +. +Language=Russian +ERROR_IOPL_NOT_ENABLED - Конфигурация операционной системы не рассчитана на запуск этого приложения. +. + +MessageId=198 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SEGDPL +Language=English +ERROR_INVALID_SEGDPL - The operating system cannot run %1. +. +Language=Russian +ERROR_INVALID_SEGDPL - Операционная система не может выполнить "%1". +. + +MessageId=199 +Severity=Success +Facility=System +SymbolicName=ERROR_AUTODATASEG_EXCEEDS_64k +Language=English +ERROR_AUTODATASEG_EXCEEDS_64k - The operating system cannot run this application program. +. +Language=Russian +ERROR_AUTODATASEG_EXCEEDS_64k - Операционная система не может запустить это приложение. +. + +MessageId=200 +Severity=Success +Facility=System +SymbolicName=ERROR_RING2SEG_MUST_BE_MOVABLE +Language=English +ERROR_RING2SEG_MUST_BE_MOVABLE - The code segment cannot be greater than or equal to 64K. +. +Language=Russian +ERROR_RING2SEG_MUST_BE_MOVABLE - Сегмент кода должен быть меньше 64 КБ. +. + +MessageId=201 +Severity=Success +Facility=System +SymbolicName=ERROR_RELOC_CHAIN_XEEDS_SEGLIM +Language=English +ERROR_RELOC_CHAIN_XEEDS_SEGLIM - The operating system cannot run %1. +. +Language=Russian +ERROR_RELOC_CHAIN_XEEDS_SEGLIM - Операционная система не может выполнить "%1". +. + +MessageId=202 +Severity=Success +Facility=System +SymbolicName=ERROR_INFLOOP_IN_RELOC_CHAIN +Language=English +ERROR_INFLOOP_IN_RELOC_CHAIN - The operating system cannot run %1. +. +Language=Russian +ERROR_INFLOOP_IN_RELOC_CHAIN - Операционная система не может выполнить "%1". +. + +MessageId=203 +Severity=Success +Facility=System +SymbolicName=ERROR_ENVVAR_NOT_FOUND +Language=English +ERROR_ENVVAR_NOT_FOUND - The system could not find the environment option that was entered. +. +Language=Russian +ERROR_ENVVAR_NOT_FOUND - Системе не удается найти указанный параметр среды. +. + +MessageId=205 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SIGNAL_SENT +Language=English +ERROR_NO_SIGNAL_SENT - No process in the command subtree has a signal handler. +. +Language=Russian +ERROR_NO_SIGNAL_SENT - Ни один из процессов в дереве команды не имеет обработчика сигналов. +. + +MessageId=206 +Severity=Success +Facility=System +SymbolicName=ERROR_FILENAME_EXCED_RANGE +Language=English +ERROR_FILENAME_EXCED_RANGE - The filename or extension is too long. +. +Language=Russian +ERROR_FILENAME_EXCED_RANGE - Имя файла или его расширение имеет слишком большую длину. +. + +MessageId=207 +Severity=Success +Facility=System +SymbolicName=ERROR_RING2_STACK_IN_USE +Language=English +ERROR_RING2_STACK_IN_USE - The ring 2 stack is in use. +. +Language=Russian +ERROR_RING2_STACK_IN_USE - Кольцо 2 стека занято. +. + +MessageId=208 +Severity=Success +Facility=System +SymbolicName=ERROR_META_EXPANSION_TOO_LONG +Language=English +ERROR_META_EXPANSION_TOO_LONG - The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified. +. +Language=Russian +ERROR_META_EXPANSION_TOO_LONG - Подстановочные знаки * и/или ? заданы неверно или образуют неверный шаблон имени. +. + +MessageId=209 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SIGNAL_NUMBER +Language=English +ERROR_INVALID_SIGNAL_NUMBER - The signal being posted is not correct. +. +Language=Russian +ERROR_INVALID_SIGNAL_NUMBER - Отправляемый сигнал неверен. +. + +MessageId=210 +Severity=Success +Facility=System +SymbolicName=ERROR_THREAD_1_INACTIVE +Language=English +ERROR_THREAD_1_INACTIVE - The signal handler cannot be set. +. +Language=Russian +ERROR_THREAD_1_INACTIVE - Не удается установить обработчик сигналов. +. + +MessageId=212 +Severity=Success +Facility=System +SymbolicName=ERROR_LOCKED +Language=English +ERROR_LOCKED - The segment is locked and cannot be reallocated. +. +Language=Russian +ERROR_LOCKED - Сегмент заблокирован и не может быть перемещен. +. + +MessageId=214 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_MODULES +Language=English +ERROR_TOO_MANY_MODULES - Too many dynamic-link modules are attached to this program or dynamic-link module. +. +Language=Russian +ERROR_TOO_MANY_MODULES - К этой программе или модулю присоединено слишком много динамически подключаемых модулей. +. + +MessageId=215 +Severity=Success +Facility=System +SymbolicName=ERROR_NESTING_NOT_ALLOWED +Language=English +ERROR_NESTING_NOT_ALLOWED - Cannot nest calls to LoadModule. +. +Language=Russian +ERROR_NESTING_NOT_ALLOWED - Вызовы LoadModule не могут быть вложены. +. + +MessageId=216 +Severity=Success +Facility=System +SymbolicName=ERROR_EXE_MACHINE_TYPE_MISMATCH +Language=English +ERROR_EXE_MACHINE_TYPE_MISMATCH - The image file %1 is valid, but is for a machine type other than the current machine. +. + +MessageId=217 +Severity=Success +Facility=System +SymbolicName=ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY +Language=English +ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY - The image file %1 is signed, unable to modify. +. + +MessageId=218 +Severity=Success +Facility=System +SymbolicName=ERRO_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY +Language=English +ERRO_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY - The image file %1 is strong signed, unable to modify. +. + +MessageId=230 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_PIPE +Language=English +ERROR_BAD_PIPE - The pipe state is invalid. +. + +MessageId=231 +Severity=Success +Facility=System +SymbolicName=ERROR_PIPE_BUSY +Language=English +ERROR_PIPE_BUSY - All pipe instances are busy. +. + +MessageId=232 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_DATA +Language=English +ERROR_NO_DATA - The pipe is being closed. +. + +MessageId=233 +Severity=Success +Facility=System +SymbolicName=ERROR_PIPE_NOT_CONNECTED +Language=English +ERROR_PIPE_NOT_CONNECTED - No process is on the other end of the pipe. +. + +MessageId=234 +Severity=Success +Facility=System +SymbolicName=ERROR_MORE_DATA +Language=English +ERROR_MORE_DATA - More data is available. +. + +MessageId=240 +Severity=Success +Facility=System +SymbolicName=ERROR_VC_DISCONNECTED +Language=English +ERROR_VC_DISCONNECTED - The session was canceled. +. + +MessageId=254 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_EA_NAME +Language=English +ERROR_INVALID_EA_NAME - The specified extended attribute name was invalid. +. + +MessageId=255 +Severity=Success +Facility=System +SymbolicName=ERROR_EA_LIST_INCONSISTENT +Language=English +ERROR_EA_LIST_INCONSISTENT - The extended attributes are inconsistent. +. + +MessageId=258 +Severity=Success +Facility=System +SymbolicName=WAIT_TIMEOUT +Language=English +WAIT_TIMEOUT - The wait operation timed out. +. + +MessageId=259 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MORE_ITEMS +Language=English +ERROR_NO_MORE_ITEMS - No more data is available. +. + +MessageId=266 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_COPY +Language=English +ERROR_CANNOT_COPY - The copy functions cannot be used. +. + +MessageId=267 +Severity=Success +Facility=System +SymbolicName=ERROR_DIRECTORY +Language=English +ERROR_DIRECTORY - The directory name is invalid. +. + +MessageId=275 +Severity=Success +Facility=System +SymbolicName=ERROR_EAS_DIDNT_FIT +Language=English +ERROR_EAS_DIDNT_FIT - The extended attributes did not fit in the buffer. +. + +MessageId=276 +Severity=Success +Facility=System +SymbolicName=ERROR_EA_FILE_CORRUPT +Language=English +ERROR_EA_FILE_CORRUPT - The extended attribute file on the mounted file system is corrupt. +. + +MessageId=277 +Severity=Success +Facility=System +SymbolicName=ERROR_EA_TABLE_FULL +Language=English +ERROR_EA_TABLE_FULL - The extended attribute table file is full. +. + +MessageId=278 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_EA_HANDLE +Language=English +ERROR_INVALID_EA_HANDLE - The specified extended attribute handle is invalid. +. + +MessageId=282 +Severity=Success +Facility=System +SymbolicName=ERROR_EAS_NOT_SUPPORTED +Language=English +ERROR_EAS_NOT_SUPPORTED - The mounted file system does not support extended attributes. +. + +MessageId=288 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_OWNER +Language=English +ERROR_NOT_OWNER - Attempt to release mutex not owned by caller. +. + +MessageId=298 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_POSTS +Language=English +ERROR_TOO_MANY_POSTS - Too many posts were made to a semaphore. +. + +MessageId=299 +Severity=Success +Facility=System +SymbolicName=ERROR_PARTIAL_COPY +Language=English +ERROR_PARTIAL_COPY - Only part of a ReadProcessMemory or WriteProcessMemory request was completed. +. + +MessageId=300 +Severity=Success +Facility=System +SymbolicName=ERROR_OPLOCK_NOT_GRANTED +Language=English +ERROR_OPLOCK_NOT_GRANTED - The oplock request is denied. +. + +MessageId=301 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_OPLOCK_PROTOCOL +Language=English +ERROR_INVALID_OPLOCK_PROTOCOL - An invalid oplock acknowledgment was received by the system. +. + +MessageId=302 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_TOO_FRAGMENTED +Language=English +ERROR_DISK_TOO_FRAGMENTED - The volume is too fragmented to complete this operation. +. + +MessageId=303 +Severity=Success +Facility=System +SymbolicName=ERROR_DELETE_PENDING +Language=English +ERROR_DELETE_PENDING - The file cannot be opened because it is in the process of being deleted. +. + +MessageId=317 +Severity=Success +Facility=System +SymbolicName=ERROR_MR_MID_NOT_FOUND +Language=English +ERROR_MR_MID_NOT_FOUND - The system cannot find message text for message number 0x%1 in the message file for %2. +. + +MessageId=318 +Severity=Success +Facility=System +SymbolicName=ERROR_SCOPE_NOT_FOUND +Language=English +ERROR_SCOPE_NOT_FOUND - The scope specified was not found. +. + +MessageId=487 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ADDRESS +Language=English +ERROR_INVALID_ADDRESS - Attempt to access invalid address. +. + +MessageId=534 +Severity=Success +Facility=System +SymbolicName=ERROR_ARITHMETIC_OVERFLOW +Language=English +ERROR_ARITHMETIC_OVERFLOW - Arithmetic result exceeded 32 bits. +. + +MessageId=535 +Severity=Success +Facility=System +SymbolicName=ERROR_PIPE_CONNECTED +Language=English +ERROR_PIPE_CONNECTED - There is a process on other end of the pipe. +. + +MessageId=536 +Severity=Success +Facility=System +SymbolicName=ERROR_PIPE_LISTENING +Language=English +ERROR_PIPE_LISTENING - Waiting for a process to open the other end of the pipe. +. + +MessageId=537 +Severity=Success +Facility=System +SymbolicName=ERROR_ACPI_ERROR +Language=English +ERROR_ACPI_ERROR - An error occurred in the ACPI subsystem. +. + +MessageId=538 +Severity=Success +Facility=System +SymbolicName=ERROR_ABIOS_ERROR +Language=English +ERROR_ABIOS_ERROR - An error occurred in the ABIOS subsystem +. + +MessageId=539 +Severity=Success +Facility=System +SymbolicName=ERROR_WX86_WARNING +Language=English +ERROR_WX86_WARNING - A warning occurred in the WX86 subsystem. +. + +MessageId=540 +Severity=Success +Facility=System +SymbolicName=ERROR_WX86_ERROR +Language=English +ERROR_WX86_ERROR - An error occurred in the WX86 subsystem. +. + +MessageId=541 +Severity=Success +Facility=System +SymbolicName=ERROR_TIMER_NOT_CANCELED +Language=English +ERROR_TIMER_NOT_CANCELED - An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine. +. + +MessageId=542 +Severity=Success +Facility=System +SymbolicName=ERROR_UNWIND +Language=English +ERROR_UNWIND - Unwind exception code. +. + +MessageId=543 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_STACK +Language=English +ERROR_BAD_STACK - An invalid or unaligned stack was encountered during an unwind operation. +. + +MessageId=544 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_UNWIND_TARGET +Language=English +ERROR_INVALID_UNWIND_TARGET - An invalid unwind target was encountered during an unwind operation. +. + +MessageId=545 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PORT_ATTRIBUTES +Language=English +ERROR_INVALID_PORT_ATTRIBUTES - Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort +. + +MessageId=546 +Severity=Success +Facility=System +SymbolicName=ERROR_PORT_MESSAGE_TOO_LONG +Language=English +ERROR_PORT_MESSAGE_TOO_LONG - Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port. +. + +MessageId=547 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_QUOTA_LOWER +Language=English +ERROR_INVALID_QUOTA_LOWER - An attempt was made to lower a quota limit below the current usage. +. + +MessageId=548 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_ALREADY_ATTACHED +Language=English +ERROR_DEVICE_ALREADY_ATTACHED - An attempt was made to attach to a device that was already attached to another device. +. + +MessageId=549 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTRUCTION_MISALIGNMENT +Language=English +ERROR_INSTRUCTION_MISALIGNMENT - An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references. +. + +MessageId=550 +Severity=Success +Facility=System +SymbolicName=ERROR_PROFILING_NOT_STARTED +Language=English +ERROR_PROFILING_NOT_STARTED - Profiling not started. +. + +MessageId=551 +Severity=Success +Facility=System +SymbolicName=ERROR_PROFILING_NOT_STOPPED +Language=English +ERROR_PROFILING_NOT_STOPPED - Profiling not stopped. +. + +MessageId=552 +Severity=Success +Facility=System +SymbolicName=ERROR_COULD_NOT_INTERPRET +Language=English +ERROR_COULD_NOT_INTERPRET - The passed ACL did not contain the minimum required information. +. + +MessageId=553 +Severity=Success +Facility=System +SymbolicName=ERROR_PROFILING_AT_LIMIT +Language=English +ERROR_PROFILING_AT_LIMIT - The number of active profiling objects is at the maximum and no more may be started. +. + +MessageId=554 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_WAIT +Language=English +ERROR_CANT_WAIT - Used to indicate that an operation cannot continue without blocking for I/O. +. + +MessageId=555 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_TERMINATE_SELF +Language=English +ERROR_CANT_TERMINATE_SELF - Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process. +. + +MessageId=556 +Severity=Success +Facility=System +SymbolicName=ERROR_UNEXPECTED_MM_CREATE_ERR +Language=English +ERROR_UNEXPECTED_MM_CREATE_ERR - If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. +. + +MessageId=557 +Severity=Success +Facility=System +SymbolicName=ERROR_UNEXPECTED_MM_MAP_ERROR +Language=English +ERROR_UNEXPECTED_MM_MAP_ERROR - If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. +. + +MessageId=558 +Severity=Success +Facility=System +SymbolicName=ERROR_UNEXPECTED_MM_EXTEND_ERR +Language=English +ERROR_UNEXPECTED_MM_EXTEND_ERR - If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception. +. + +MessageId=559 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_FUNCTION_TABLE +Language=English +ERROR_BAD_FUNCTION_TABLE - A malformed function table was encountered during an unwind operation. +. + +MessageId=560 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_GUID_TRANSLATION +Language=English +ERROR_NO_GUID_TRANSLATION - Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. This causes the protection attempt to fail, which may cause a file creation attempt to fail. +. + +MessageId=561 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LDT_SIZE +Language=English +ERROR_INVALID_LDT_SIZE - Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors. +. + +MessageId=563 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LDT_OFFSET +Language=English +ERROR_INVALID_LDT_OFFSET - Indicates that the starting value for the LDT information was not an integral multiple of the selector size. +. + +MessageId=564 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LDT_DESCRIPTOR +Language=English +ERROR_INVALID_LDT_DESCRIPTOR - Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors. +. + +MessageId=565 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_THREADS +Language=English +ERROR_TOO_MANY_THREADS - Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads. +. + +MessageId=566 +Severity=Success +Facility=System +SymbolicName=ERROR_THREAD_NOT_IN_PROCESS +Language=English +ERROR_THREAD_NOT_IN_PROCESS - An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified. +. + +MessageId=567 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGEFILE_QUOTA_EXCEEDED +Language=English +ERROR_PAGEFILE_QUOTA_EXCEEDED - Page file quota was exceeded. +. + +MessageId=568 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGON_SERVER_CONFLICT +Language=English +ERROR_LOGON_SERVER_CONFLICT - The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. +. + +MessageId=569 +Severity=Success +Facility=System +SymbolicName=ERROR_SYNCHRONIZATION_REQUIRED +Language=English +ERROR_SYNCHRONIZATION_REQUIRED - The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required. +. + +MessageId=570 +Severity=Success +Facility=System +SymbolicName=ERROR_NET_OPEN_FAILED +Language=English +ERROR_NET_OPEN_FAILED - The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines. +. + +MessageId=571 +Severity=Success +Facility=System +SymbolicName=ERROR_IO_PRIVILEGE_FAILED +Language=English +ERROR_IO_PRIVILEGE_FAILED - The I/O permissions for the process could not be changed. +. + +MessageId=572 +Severity=Success +Facility=System +SymbolicName=ERROR_CONTROL_C_EXIT +Language=English +ERROR_CONTROL_C_EXIT - The application terminated as a result of a CTRL+C. +. + +MessageId=573 +Severity=Success +Facility=System +SymbolicName=ERROR_MISSING_SYSTEMFILE +Language=English +ERROR_MISSING_SYSTEMFILE - The required system file %hs is bad or missing. +. + +MessageId=574 +Severity=Success +Facility=System +SymbolicName=ERROR_UNHANDLED_EXCEPTION +Language=English +ERROR_UNHANDLED_EXCEPTION - The exception %s (0x%08lx) occurred in the application at location 0x%08lx. +. + +MessageId=575 +Severity=Success +Facility=System +SymbolicName=ERROR_APP_INIT_FAILURE +Language=English +ERROR_APP_INIT_FAILURE - The application failed to initialize properly (0x%lx). Click on OK to terminate the application. +. + +MessageId=576 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGEFILE_CREATE_FAILED +Language=English +ERROR_PAGEFILE_CREATE_FAILED - The creation of the paging file %hs failed (%lx). The requested size was %ld. +. + +MessageId=578 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_PAGEFILE +Language=English +ERROR_NO_PAGEFILE - No paging file was specified in the system configuration. +. + +MessageId=579 +Severity=Success +Facility=System +SymbolicName=ERROR_ILLEGAL_FLOAT_CONTEXT +Language=English +ERROR_ILLEGAL_FLOAT_CONTEXT - A real-mode application issued a floating-point instruction and floating-point hardware is not present. +. + +MessageId=580 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_EVENT_PAIR +Language=English +ERROR_NO_EVENT_PAIR - An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread. +. + +MessageId=581 +Severity=Success +Facility=System +SymbolicName=ERROR_DOMAIN_CTRLR_CONFIG_ERROR +Language=English +ERROR_DOMAIN_CTRLR_CONFIG_ERROR - A Windows Server has an incorrect configuration. +. + +MessageId=582 +Severity=Success +Facility=System +SymbolicName=ERROR_ILLEGAL_CHARACTER +Language=English +ERROR_ILLEGAL_CHARACTER - An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE. +. + +MessageId=583 +Severity=Success +Facility=System +SymbolicName=ERROR_UNDEFINED_CHARACTER +Language=English +ERROR_UNDEFINED_CHARACTER - The Unicode character is not defined in the Unicode character set installed on the system. +. + +MessageId=584 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOPPY_VOLUME +Language=English +ERROR_FLOPPY_VOLUME - The paging file cannot be created on a floppy diskette. +. + +MessageId=585 +Severity=Success +Facility=System +SymbolicName=ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT +Language=English +ERROR_BIOS_FAILED_TO_CONNECT_INTERRUPT - The system bios failed to connect a system interrupt to the device or bus for which the device is connected. +. + +MessageId=586 +Severity=Success +Facility=System +SymbolicName=ERROR_BACKUP_CONTROLLER +Language=English +ERROR_BACKUP_CONTROLLER - This operation is only allowed for the Primary Domain Controller of the domain. +. + +MessageId=587 +Severity=Success +Facility=System +SymbolicName=ERROR_MUTANT_LIMIT_EXCEEDED +Language=English +ERROR_MUTANT_LIMIT_EXCEEDED - An attempt was made to acquire a mutant such that its maximum count would have been exceeded. +. + +MessageId=588 +Severity=Success +Facility=System +SymbolicName=ERROR_FS_DRIVER_REQUIRED +Language=English +ERROR_FS_DRIVER_REQUIRED - A volume has been accessed for which a file system driver is required that has not yet been loaded. +. + +MessageId=589 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_LOAD_REGISTRY_FILE +Language=English +ERROR_CANNOT_LOAD_REGISTRY_FILE - The registry cannot load the hive (file): %hs or its log or alternate. It is corrupt, absent, or not writable. +. + +MessageId=590 +Severity=Success +Facility=System +SymbolicName=ERROR_DEBUG_ATTACH_FAILED +Language=English +ERROR_DEBUG_ATTACH_FAILED - An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error. +. + +MessageId=591 +Severity=Success +Facility=System +SymbolicName=ERROR_SYSTEM_PROCESS_TERMINATED +Language=English +ERROR_SYSTEM_PROCESS_TERMINATED - The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x). The system has been shut down. +. + +MessageId=592 +Severity=Success +Facility=System +SymbolicName=ERROR_DATA_NOT_ACCEPTED +Language=English +ERROR_DATA_NOT_ACCEPTED - The TDI client could not handle the data received during an indication. +. + +MessageId=593 +Severity=Success +Facility=System +SymbolicName=ERROR_VDM_HARD_ERROR +Language=English +ERROR_VDM_HARD_ERROR - NTVDM encountered a hard error. +. + +MessageId=594 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVER_CANCEL_TIMEOUT +Language=English +ERROR_DRIVER_CANCEL_TIMEOUT - The driver %hs failed to complete a cancelled I/O request in the allotted time. +. + +MessageId=595 +Severity=Success +Facility=System +SymbolicName=ERROR_REPLY_MESSAGE_MISMATCH +Language=English +ERROR_REPLY_MESSAGE_MISMATCH - An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message. +. + +MessageId=596 +Severity=Success +Facility=System +SymbolicName=ERROR_LOST_WRITEBEHIND_DATA +Language=English +ERROR_LOST_WRITEBEHIND_DATA - Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere. +. + +MessageId=597 +Severity=Success +Facility=System +SymbolicName=ERROR_CLIENT_SERVER_PARAMETERS_INVALID +Language=English +ERROR_CLIENT_SERVER_PARAMETERS_INVALID - The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window. +. + +MessageId=598 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_TINY_STREAM +Language=English +ERROR_NOT_TINY_STREAM - The stream is not a tiny stream. +. + +MessageId=599 +Severity=Success +Facility=System +SymbolicName=ERROR_STACK_OVERFLOW_READ +Language=English +ERROR_STACK_OVERFLOW_READ - The request must be handled by the stack overflow code. +. + +MessageId=600 +Severity=Success +Facility=System +SymbolicName=ERROR_CONVERT_TO_LARGE +Language=English +ERROR_CONVERT_TO_LARGE - Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream. +. + +MessageId=601 +Severity=Success +Facility=System +SymbolicName=ERROR_FOUND_OUT_OF_SCOPE +Language=English +ERROR_FOUND_OUT_OF_SCOPE - The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation. +. + +MessageId=602 +Severity=Success +Facility=System +SymbolicName=ERROR_ALLOCATE_BUCKET +Language=English +ERROR_ALLOCATE_BUCKET - The bucket array must be grown. Retry transaction after doing so. +. + +MessageId=603 +Severity=Success +Facility=System +SymbolicName=ERROR_MARSHALL_OVERFLOW +Language=English +ERROR_MARSHALL_OVERFLOW - The user/kernel marshalling buffer has overflowed. +. + +MessageId=604 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_VARIANT +Language=English +ERROR_INVALID_VARIANT - The supplied variant structure contains invalid data. +. + +MessageId=605 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_COMPRESSION_BUFFER +Language=English +ERROR_BAD_COMPRESSION_BUFFER - The specified buffer contains ill-formed data. +. + +MessageId=606 +Severity=Success +Facility=System +SymbolicName=ERROR_AUDIT_FAILED +Language=English +ERROR_AUDIT_FAILED - An attempt to generate a security audit failed. +. + +MessageId=607 +Severity=Success +Facility=System +SymbolicName=ERROR_TIMER_RESOLUTION_NOT_SET +Language=English +ERROR_TIMER_RESOLUTION_NOT_SET - The timer resolution was not previously set by the current process. +. + +MessageId=608 +Severity=Success +Facility=System +SymbolicName=ERROR_INSUFFICIENT_LOGON_INFO +Language=English +ERROR_INSUFFICIENT_LOGON_INFO - There is insufficient account information to log you on. +. + +MessageId=609 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_DLL_ENTRYPOINT +Language=English +ERROR_BAD_DLL_ENTRYPOINT - The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly. +. + +MessageId=610 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_SERVICE_ENTRYPOINT +Language=English +ERROR_BAD_SERVICE_ENTRYPOINT - The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly. +. + +MessageId=611 +Severity=Success +Facility=System +SymbolicName=ERROR_IP_ADDRESS_CONFLICT1 +Language=English +ERROR_IP_ADDRESS_CONFLICT1 - There is an IP address conflict with another system on the network +. + +MessageId=612 +Severity=Success +Facility=System +SymbolicName=ERROR_IP_ADDRESS_CONFLICT2 +Language=English +ERROR_IP_ADDRESS_CONFLICT2 - There is an IP address conflict with another system on the network +. + +MessageId=613 +Severity=Success +Facility=System +SymbolicName=ERROR_REGISTRY_QUOTA_LIMIT +Language=English +ERROR_REGISTRY_QUOTA_LIMIT - The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. +. + +MessageId=614 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_CALLBACK_ACTIVE +Language=English +ERROR_NO_CALLBACK_ACTIVE - A callback return system service cannot be executed when no callback is active. +. + +MessageId=615 +Severity=Success +Facility=System +SymbolicName=ERROR_PWD_TOO_SHORT +Language=English +ERROR_PWD_TOO_SHORT - The password provided is too short to meet the policy of your user account. Please choose a longer password. +. + +MessageId=616 +Severity=Success +Facility=System +SymbolicName=ERROR_PWD_TOO_RECENT +Language=English +ERROR_PWD_TOO_RECENT - The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned. +. + +MessageId=617 +Severity=Success +Facility=System +SymbolicName=ERROR_PWD_HISTORY_CONFLICT +Language=English +ERROR_PWD_HISTORY_CONFLICT - You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used. +. + +MessageId=618 +Severity=Success +Facility=System +SymbolicName=ERROR_UNSUPPORTED_COMPRESSION +Language=English +ERROR_UNSUPPORTED_COMPRESSION - The specified compression format is unsupported. +. + +MessageId=619 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_HW_PROFILE +Language=English +ERROR_INVALID_HW_PROFILE - The specified hardware profile configuration is invalid. +. + +MessageId=620 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PLUGPLAY_DEVICE_PATH +Language=English +ERROR_INVALID_PLUGPLAY_DEVICE_PATH - The specified Plug and Play registry device path is invalid. +. + +MessageId=621 +Severity=Success +Facility=System +SymbolicName=ERROR_QUOTA_LIST_INCONSISTENT +Language=English +ERROR_QUOTA_LIST_INCONSISTENT - The specified quota list is internally inconsistent with its descriptor. +. + +MessageId=622 +Severity=Success +Facility=System +SymbolicName=ERROR_EVALUATION_EXPIRATION +Language=English +ERROR_EVALUATION_EXPIRATION - The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product. +. + +MessageId=623 +Severity=Success +Facility=System +SymbolicName=ERROR_ILLEGAL_DLL_RELOCATION +Language=English +ERROR_ILLEGAL_DLL_RELOCATION - The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL. +. + +MessageId=624 +Severity=Success +Facility=System +SymbolicName=ERROR_DLL_INIT_FAILED_LOGOFF +Language=English +ERROR_DLL_INIT_FAILED_LOGOFF - The application failed to initialize because the window station is shutting down. +. + +MessageId=625 +Severity=Success +Facility=System +SymbolicName=ERROR_VALIDATE_CONTINUE +Language=English +ERROR_VALIDATE_CONTINUE - The validation process needs to continue on to the next step. +. + +MessageId=626 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MORE_MATCHES +Language=English +ERROR_NO_MORE_MATCHES - There are no more matches for the current index enumeration. +. + +MessageId=627 +Severity=Success +Facility=System +SymbolicName=ERROR_RANGE_LIST_CONFLICT +Language=English +ERROR_RANGE_LIST_CONFLICT - The range could not be added to the range list because of a conflict. +. + +MessageId=628 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVER_SID_MISMATCH +Language=English +ERROR_SERVER_SID_MISMATCH - The server process is running under a SID different than that required by client. +. + +MessageId=629 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_ENABLE_DENY_ONLY +Language=English +ERROR_CANT_ENABLE_DENY_ONLY - A group marked use for deny only cannot be enabled. +. + +MessageId=630 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOAT_MULTIPLE_FAULTS +Language=English +ERROR_FLOAT_MULTIPLE_FAULTS - Multiple floating point faults. +. + +MessageId=631 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOAT_MULTIPLE_TRAPS +Language=English +ERROR_FLOAT_MULTIPLE_TRAPS - Multiple floating point traps. +. + +MessageId=632 +Severity=Success +Facility=System +SymbolicName=ERROR_NOINTERFACE +Language=English +ERROR_NOINTERFACE - The requested interface is not supported. +. + +MessageId=633 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVER_FAILED_SLEEP +Language=English +ERROR_DRIVER_FAILED_SLEEP - The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. +. + +MessageId=634 +Severity=Success +Facility=System +SymbolicName=ERROR_CORRUPT_SYSTEM_FILE +Language=English +ERROR_CORRUPT_SYSTEM_FILE - The system file %1 has become corrupt and has been replaced. +. + +MessageId=635 +Severity=Success +Facility=System +SymbolicName=ERROR_COMMITMENT_MINIMUM +Language=English +ERROR_COMMITMENT_MINIMUM - Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help. +. + +MessageId=636 +Severity=Success +Facility=System +SymbolicName=ERROR_PNP_RESTART_ENUMERATION +Language=English +ERROR_PNP_RESTART_ENUMERATION - A device was removed so enumeration must be restarted. +. + +MessageId=637 +Severity=Success +Facility=System +SymbolicName=ERROR_SYSTEM_IMAGE_BAD_SIGNATURE +Language=English +ERROR_SYSTEM_IMAGE_BAD_SIGNATURE - The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down. +. + +MessageId=638 +Severity=Success +Facility=System +SymbolicName=ERROR_PNP_REBOOT_REQUIRED +Language=English +ERROR_PNP_REBOOT_REQUIRED - Device will not start without a reboot. +. + +MessageId=639 +Severity=Success +Facility=System +SymbolicName=ERROR_INSUFFICIENT_POWER +Language=English +ERROR_INSUFFICIENT_POWER - There is not enough power to complete the requested operation. +. + +MessageId=641 +Severity=Success +Facility=System +SymbolicName=ERROR_SYSTEM_SHUTDOWN +Language=English +ERROR_SYSTEM_SHUTDOWN - The system is in the process of shutting down. +. + +MessageId=642 +Severity=Success +Facility=System +SymbolicName=ERROR_PORT_NOT_SET +Language=English +ERROR_PORT_NOT_SET - An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. +. + +MessageId=643 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_VERSION_CHECK_FAILURE +Language=English +ERROR_DS_VERSION_CHECK_FAILURE - This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller. +. + +MessageId=644 +Severity=Success +Facility=System +SymbolicName=ERROR_RANGE_NOT_FOUND +Language=English +ERROR_RANGE_NOT_FOUND - The specified range could not be found in the range list. +. + +MessageId=646 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SAFE_MODE_DRIVER +Language=English +ERROR_NOT_SAFE_MODE_DRIVER - The driver was not loaded because the system is booting into safe mode. +. + +MessageId=647 +Severity=Success +Facility=System +SymbolicName=ERROR_FAILED_DRIVER_ENTRY +Language=English +ERROR_FAILED_DRIVER_ENTRY - The driver was not loaded because it failed it's initialization call. +. + +MessageId=648 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_ENUMERATION_ERROR +Language=English +ERROR_DEVICE_ENUMERATION_ERROR - The \"%hs\" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection. +. + +MessageId=649 +Severity=Success +Facility=System +SymbolicName=ERROR_MOUNT_POINT_NOT_RESOLVED +Language=English +ERROR_MOUNT_POINT_NOT_RESOLVED - The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached. +. + +MessageId=650 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DEVICE_OBJECT_PARAMETER +Language=English +ERROR_INVALID_DEVICE_OBJECT_PARAMETER - The device object parameter is either not a valid device object or is not attached to the volume specified by the file name. +. + +MessageId=651 +Severity=Success +Facility=System +SymbolicName=ERROR_MCA_OCCURED +Language=English +ERROR_MCA_OCCURED - A Machine Check Error has occurred. Please check the system eventlog for additional information. +. + +MessageId=652 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVER_DATABASE_ERROR +Language=English +ERROR_DRIVER_DATABASE_ERROR - There was error [%2] processing the driver database. +. + +MessageId=653 +Severity=Success +Facility=System +SymbolicName=ERROR_SYSTEM_HIVE_TOO_LARGE +Language=English +ERROR_SYSTEM_HIVE_TOO_LARGE - System hive size has exceeded its limit. +. + +MessageId=654 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVER_FAILED_PRIOR_UNLOAD +Language=English +ERROR_DRIVER_FAILED_PRIOR_UNLOAD - The driver could not be loaded because a previous version of the driver is still in memory. +. + +MessageId=655 +Severity=Success +Facility=System +SymbolicName=ERROR_VOLSNAP_PREPARE_HIBERNATE +Language=English +ERROR_VOLSNAP_PREPARE_HIBERNATE - Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation. +. + +MessageId=656 +Severity=Success +Facility=System +SymbolicName=ERROR_HIBERNATION_FAILURE +Language=English +ERROR_HIBERNATION_FAILURE - The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted. +. + +MessageId=657 +Severity=Success +Facility=System +SymbolicName=ERROR_HUNG_DISPLAY_DRIVER_THREAD +Language=English +ERROR_HUNG_DISPLAY_DRIVER_THREAD - The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft. +. + +MessageId=665 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_SYSTEM_LIMITATION +Language=English +ERROR_FILE_SYSTEM_LIMITATION - The requested operation could not be completed due to a file system limitation. +. + +MessageId=668 +Severity=Success +Facility=System +SymbolicName=ERROR_ASSERTION_FAILURE +Language=English +ERROR_ASSERTION_FAILURE - An assertion failure has occurred. +. + +MessageId=669 +Severity=Success +Facility=System +SymbolicName=ERROR_VERIFIER_STOP +Language=English +ERROR_VERIFIER_STOP - Application verifier has found an error in the current process. +. + +MessageId=670 +Severity=Success +Facility=System +SymbolicName=ERROR_WOW_ASSERTION +Language=English +ERROR_WOW_ASSERTION - WOW Assertion Error. +. + +MessageId=671 +Severity=Success +Facility=System +SymbolicName=ERROR_PNP_BAD_MPS_TABLE +Language=English +ERROR_PNP_BAD_MPS_TABLE - A device is missing in the system BIOS MPS table. This device will not be used. Please contact your system vendor for system BIOS update. +. + +MessageId=672 +Severity=Success +Facility=System +SymbolicName=ERROR_PNP_TRANSLATION_FAILED +Language=English +ERROR_PNP_TRANSLATION_FAILED - A translator failed to translate resources. +. + +MessageId=673 +Severity=Success +Facility=System +SymbolicName=ERROR_PNP_IRQ_TRANSLATION_FAILED +Language=English +ERROR_PNP_IRQ_TRANSLATION_FAILED - A IRQ translator failed to translate resources. +. + +MessageId=674 +Severity=Success +Facility=System +SymbolicName=ERROR_PNP_INVALID_ID +Language=English +ERROR_PNP_INVALID_ID - Driver %2 returned invalid ID for a child device (%3). +. + +MessageId=675 +Severity=Success +Facility=System +SymbolicName=ERROR_WAKE_SYSTEM_DEBUGGER +Language=English +ERROR_WAKE_SYSTEM_DEBUGGER - The system debugger was awakened by an interrupt. +. + +MessageId=676 +Severity=Success +Facility=System +SymbolicName=ERROR_HANDLES_CLOSED +Language=English +ERROR_HANDLES_CLOSED - Handles to objects have been automatically closed as a result of the requested operation. +. + +MessageId=677 +Severity=Success +Facility=System +SymbolicName=ERROR_EXTRANEOUS_INFORMATION +Language=English +ERROR_EXTRANEOUS_INFORMATION - he specified access control list (ACL) contained more information than was expected. +. + +MessageId=678 +Severity=Success +Facility=System +SymbolicName=ERROR_RXACT_COMMIT_NECESSARY +Language=English +ERROR_RXACT_COMMIT_NECESSARY - This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired). +. + +MessageId=679 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIA_CHECK +Language=English +ERROR_MEDIA_CHECK - The media may have changed. +. + +MessageId=680 +Severity=Success +Facility=System +SymbolicName=ERROR_GUID_SUBSTITUTION_MADE +Language=English +ERROR_GUID_SUBSTITUTION_MADE - During the translation of a global identifier (GUID) to a Windows security ID (SID), no administratively-defined GUID prefix was found. A substitute prefix was used, which will not compromise system security. However, this may provide a more restrictive access than intended. +. + +MessageId=681 +Severity=Success +Facility=System +SymbolicName=ERROR_STOPPED_ON_SYMLINK +Language=English +ERROR_STOPPED_ON_SYMLINK - The create operation stopped after reaching a symbolic link. +. + +MessageId=682 +Severity=Success +Facility=System +SymbolicName=ERROR_LONGJUMP +Language=English +ERROR_LONGJUMP - A long jump has been executed. +. + +MessageId=683 +Severity=Success +Facility=System +SymbolicName=ERROR_PLUGPLAY_QUERY_VETOED +Language=English +ERROR_PLUGPLAY_QUERY_VETOED - The Plug and Play query operation was not successful. +. + +MessageId=684 +Severity=Success +Facility=System +SymbolicName=ERROR_UNWIND_CONSOLIDATE +Language=English +ERROR_UNWIND_CONSOLIDATE - A frame consolidation has been executed. +. + +MessageId=685 +Severity=Success +Facility=System +SymbolicName=ERROR_REGISTRY_HIVE_RECOVERED +Language=English +ERROR_REGISTRY_HIVE_RECOVERED - Registry hive (file): %hs was corrupted and it has been recovered. Some data might have been lost. +. + +MessageId=686 +Severity=Success +Facility=System +SymbolicName=ERROR_DLL_MIGHT_BE_INSECURE +Language=English +ERROR_DLL_MIGHT_BE_INSECURE - The application is attempting to run executable code from the module %hs. This may be insecure. An alternative, %hs, is available. Should the application use the secure module %hs? +. + +MessageId=687 +Severity=Success +Facility=System +SymbolicName=ERROR_DLL_MIGHT_BE_INCOMPATIBLE +Language=English +ERROR_DLL_MIGHT_BE_INCOMPATIBLE - The application is loading executable code from the module %hs. This is secure, but may be incompatible with previous releases of the operating system. An alternative, %hs, is available. Should the application use the secure module %hs? +. + +MessageId=688 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_EXCEPTION_NOT_HANDLED +Language=English +ERROR_DBG_EXCEPTION_NOT_HANDLED - Debugger did not handle the exception. +. + +MessageId=689 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_REPLY_LATER +Language=English +ERROR_DBG_REPLY_LATER - Debugger will reply later. +. + +MessageId=690 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE +Language=English +ERROR_DBG_UNABLE_TO_PROVIDE_HANDLE - Debugger can not provide handle. +. + +MessageId=691 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_TERMINATE_THREAD +Language=English +ERROR_DBG_TERMINATE_THREAD - Debugger terminated thread. +. + +MessageId=692 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_TERMINATE_PROCESS +Language=English +ERROR_DBG_TERMINATE_PROCESS - Debugger terminated process. +. + +MessageId=693 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_CONTROL_C +Language=English +ERROR_DBG_CONTROL_C - Debugger got control C. +. + +MessageId=694 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_PRINTEXCEPTION_C +Language=English +ERROR_DBG_PRINTEXCEPTION_C - Debugger printed exception on control C. +. + +MessageId=695 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_RIPEXCEPTION +Language=English +ERROR_DBG_RIPEXCEPTION - Debugger received RIP exception. +. + +MessageId=696 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_CONTROL_BREAK +Language=English +ERROR_DBG_CONTROL_BREAK - Debugger received control break. +. + +MessageId=697 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_COMMAND_EXCEPTION +Language=English +ERROR_DBG_COMMAND_EXCEPTION - Debugger command communication exception. +. + +MessageId=698 +Severity=Success +Facility=System +SymbolicName=ERROR_OBJECT_NAME_EXISTS +Language=English +ERROR_OBJECT_NAME_EXISTS - An attempt was made to create an object and the object name already existed. +. + +MessageId=699 +Severity=Success +Facility=System +SymbolicName=ERROR_THREAD_WAS_SUSPENDED +Language=English +ERROR_THREAD_WAS_SUSPENDED - A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. +. + +MessageId=700 +Severity=Success +Facility=System +SymbolicName=ERROR_IMAGE_NOT_AT_BASE +Language=English +ERROR_IMAGE_NOT_AT_BASE - An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. +. + +MessageId=701 +Severity=Success +Facility=System +SymbolicName=ERROR_RXACT_STATE_CREATED +Language=English +ERROR_RXACT_STATE_CREATED - This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. +. + +MessageId=702 +Severity=Success +Facility=System +SymbolicName=ERROR_SEGMENT_NOTIFICATION +Language=English +ERROR_SEGMENT_NOTIFICATION - A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments. +. + +MessageId=703 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_CURRENT_DIRECTORY +Language=English +ERROR_BAD_CURRENT_DIRECTORY - The process cannot switch to the startup current directory %hs. Select OK to set current directory to %hs, or select CANCEL to exit. +. + +MessageId=704 +Severity=Success +Facility=System +SymbolicName=ERROR_FT_READ_RECOVERY_FROM_BACKUP +Language=English +ERROR_FT_READ_RECOVERY_FROM_BACKUP - To satisfy a read request, the NT fault-tolerant file system successfully read the requested data from a redundant copy. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was unable to reassign the failing area of the device. +. + +MessageId=705 +Severity=Success +Facility=System +SymbolicName=ERROR_FT_WRITE_RECOVERY +Language=English +ERROR_FT_WRITE_RECOVERY - To satisfy a write request, the NT fault-tolerant file system successfully wrote a redundant copy of the information. This was done because the file system encountered a failure on a member of the fault-tolerant volume, but was not able to reassign the failing area of the device. +. + +MessageId=706 +Severity=Success +Facility=System +SymbolicName=ERROR_IMAGE_MACHINE_TYPE_MISMATCH +Language=English +ERROR_IMAGE_MACHINE_TYPE_MISMATCH - The image file %hs is valid, but is for a machine type other than the current machine. Select OK to continue, or CANCEL to fail the DLL load. +. + +MessageId=707 +Severity=Success +Facility=System +SymbolicName=ERROR_RECEIVE_PARTIAL +Language=English +ERROR_RECEIVE_PARTIAL - The network transport returned partial data to its client. The remaining data will be sent later. +. + +MessageId=708 +Severity=Success +Facility=System +SymbolicName=ERROR_RECEIVE_EXPEDITED +Language=English +ERROR_RECEIVE_EXPEDITED - The network transport returned data to its client that was marked as expedited by the remote system. +. + +MessageId=709 +Severity=Success +Facility=System +SymbolicName=ERROR_RECEIVE_PARTIAL_EXPEDITED +Language=English +ERROR_RECEIVE_PARTIAL_EXPEDITED - The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. +. + +MessageId=710 +Severity=Success +Facility=System +SymbolicName=ERROR_EVENT_DONE +Language=English +ERROR_EVENT_DONE - The TDI indication has completed successfully. +. + +MessageId=711 +Severity=Success +Facility=System +SymbolicName=ERROR_EVENT_PENDING +Language=English +ERROR_EVENT_PENDING - The TDI indication has entered the pending state. +. + +MessageId=712 +Severity=Success +Facility=System +SymbolicName=ERROR_CHECKING_FILE_SYSTEM +Language=English +ERROR_CHECKING_FILE_SYSTEM - Checking file system on %wZ. +. + +MessageId=714 +Severity=Success +Facility=System +SymbolicName=ERROR_PREDEFINED_HANDLE +Language=English +ERROR_PREDEFINED_HANDLE - The specified registry key is referenced by a predefined handle. +. + +MessageId=715 +Severity=Success +Facility=System +SymbolicName=ERROR_WAS_UNLOCKED +Language=English +ERROR_WAS_UNLOCKED - The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process. +. + +MessageId=717 +Severity=Success +Facility=System +SymbolicName=ERROR_WAS_LOCKED +Language=English +ERROR_WAS_LOCKED - One of the pages to lock was already locked. +. + +MessageId=720 +Severity=Success +Facility=System +SymbolicName=ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE +Language=English +ERROR_IMAGE_MACHINE_TYPE_MISMATCH_EXE - The image file %hs is valid, but is for a machine type other than the current machine. +. + +MessageId=721 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_YIELD_PERFORMED +Language=English +ERROR_NO_YIELD_PERFORMED - A yield execution was performed and no thread was available to run. +. + +MessageId=722 +Severity=Success +Facility=System +SymbolicName=ERROR_TIMER_RESUME_IGNORED +Language=English +ERROR_TIMER_RESUME_IGNORED - The resumable flag to a timer API was ignored. +. + +MessageId=723 +Severity=Success +Facility=System +SymbolicName=ERROR_ARBITRATION_UNHANDLED +Language=English +ERROR_ARBITRATION_UNHANDLED - The arbiter has deferred arbitration of these resources to its parent. +. + +MessageId=724 +Severity=Success +Facility=System +SymbolicName=ERROR_CARDBUS_NOT_SUPPORTED +Language=English +ERROR_CARDBUS_NOT_SUPPORTED - The device \"%hs\" has detected a CardBus card in its slot, but the firmware on this system is not configured to allow the CardBus controller to be run in CardBus mode. The operating system will currently accept only 16-bit (R2) pc-cards on this controller. +. + +MessageId=725 +Severity=Success +Facility=System +SymbolicName=ERROR_MP_PROCESSOR_MISMATCH +Language=English +ERROR_MP_PROCESSOR_MISMATCH - The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact the CPU manufacturer to see if this mix of processors is supported. +. + +MessageId=726 +Severity=Success +Facility=System +SymbolicName=ERROR_HIBERNATED +Language=English +ERROR_HIBERNATED - The system was put into hibernation. +. + +MessageId=727 +Severity=Success +Facility=System +SymbolicName=ERROR_RESUME_HIBERNATION +Language=English +ERROR_RESUME_HIBERNATION - The system was resumed from hibernation. +. + +MessageId=728 +Severity=Success +Facility=System +SymbolicName=ERROR_FIRMWARE_UPDATED +Language=English +ERROR_FIRMWARE_UPDATED - Windows has detected that the system firmware (BIOS) was updated [previous firmware date = %2, current firmware date %3]. +. + +MessageId=729 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVERS_LEAKING_LOCKED_PAGES +Language=English +ERROR_DRIVERS_LEAKING_LOCKED_PAGES - A device driver is leaking locked I/O pages causing system degradation. The system has automatically enabled tracking code in order to try and catch the culprit. +. + +MessageId=730 +Severity=Success +Facility=System +SymbolicName=ERROR_WAKE_SYSTEM +Language=English +ERROR_WAKE_SYSTEM - The system has awoken +. + +MessageId=741 +Severity=Success +Facility=System +SymbolicName=ERROR_REPARSE +Language=English +ERROR_REPARSE - A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. +. + +MessageId=742 +Severity=Success +Facility=System +SymbolicName=ERROR_OPLOCK_BREAK_IN_PROGRESS +Language=English +ERROR_OPLOCK_BREAK_IN_PROGRESS - An open/create operation completed while an oplock break is underway. +. + +MessageId=743 +Severity=Success +Facility=System +SymbolicName=ERROR_VOLUME_MOUNTED +Language=English +ERROR_VOLUME_MOUNTED - A new volume has been mounted by a file system. +. + +MessageId=744 +Severity=Success +Facility=System +SymbolicName=ERROR_RXACT_COMMITTED +Language=English +ERROR_RXACT_COMMITTED - This success level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. The commit has now been completed. +. + +MessageId=745 +Severity=Success +Facility=System +SymbolicName=ERROR_NOTIFY_CLEANUP +Language=English +ERROR_NOTIFY_CLEANUP - This indicates that a notify change request has been completed due to closing the handle which made the notify change request. +. + +MessageId=746 +Severity=Success +Facility=System +SymbolicName=ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED +Language=English +ERROR_PRIMARY_TRANSPORT_CONNECT_FAILED - An attempt was made to connect to the remote server %hs on the primary transport, but the connection failed. The computer WAS able to connect on a secondary transport. +. + +MessageId=747 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGE_FAULT_TRANSITION +Language=English +ERROR_PAGE_FAULT_TRANSITION - Page fault was a transition fault. +. + +MessageId=748 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGE_FAULT_DEMAND_ZERO +Language=English +ERROR_PAGE_FAULT_DEMAND_ZERO - Page fault was a demand zero fault. +. + +MessageId=749 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGE_FAULT_COPY_ON_WRITE +Language=English +ERROR_PAGE_FAULT_COPY_ON_WRITE - Page fault was a demand zero fault. +. + +MessageId=750 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGE_FAULT_GUARD_PAGE +Language=English +ERROR_PAGE_FAULT_GUARD_PAGE - Page fault was a demand zero fault. +. + +MessageId=751 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGE_FAULT_PAGING_FILE +Language=English +ERROR_PAGE_FAULT_PAGING_FILE - Page fault was satisfied by reading from a secondary storage device. +. + +MessageId=752 +Severity=Success +Facility=System +SymbolicName=ERROR_CACHE_PAGE_LOCKED +Language=English +ERROR_CACHE_PAGE_LOCKED - Cached page was locked during operation. +. + +MessageId=753 +Severity=Success +Facility=System +SymbolicName=ERROR_CRASH_DUMP +Language=English +ERROR_CRASH_DUMP - Crash dump exists in paging file. +. + +MessageId=754 +Severity=Success +Facility=System +SymbolicName=ERROR_BUFFER_ALL_ZEROS +Language=English +ERROR_BUFFER_ALL_ZEROS - Specified buffer contains all zeros. +. + +MessageId=755 +Severity=Success +Facility=System +SymbolicName=ERROR_REPARSE_OBJECT +Language=English +ERROR_REPARSE_OBJECT - A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. +. + +MessageId=756 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_REQUIREMENTS_CHANGED +Language=English +ERROR_RESOURCE_REQUIREMENTS_CHANGED - The device has succeeded a query-stop and its resource requirements have changed. +. + +MessageId=757 +Severity=Success +Facility=System +SymbolicName=ERROR_TRANSLATION_COMPLETE +Language=English +ERROR_TRANSLATION_COMPLETE - The translator has translated these resources into the global space and no further translations should be performed. +. + +MessageId=758 +Severity=Success +Facility=System +SymbolicName=ERROR_NOTHING_TO_TERMINATE +Language=English +ERROR_NOTHING_TO_TERMINATE - A process being terminated has no threads to terminate. +. + +MessageId=759 +Severity=Success +Facility=System +SymbolicName=ERROR_PROCESS_NOT_IN_JOB +Language=English +ERROR_PROCESS_NOT_IN_JOB - The specified process is not part of a job. +. + +MessageId=760 +Severity=Success +Facility=System +SymbolicName=ERROR_PROCESS_IN_JOB +Language=English +ERROR_PROCESS_IN_JOB - The specified process is part of a job. +. + +MessageId=761 +Severity=Success +Facility=System +SymbolicName=ERROR_VOLSNAP_HIBERNATE_READY +Language=English +ERROR_VOLSNAP_HIBERNATE_READY - The system is now ready for hibernation. +. + +MessageId=762 +Severity=Success +Facility=System +SymbolicName=ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY +Language=English +ERROR_FSFILTER_OP_COMPLETED_SUCCESSFULLY - A file system or file system filter driver has successfully completed an FsFilter operation. +. + +MessageId=763 +Severity=Success +Facility=System +SymbolicName=ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED +Language=English +ERROR_INTERRUPT_VECTOR_ALREADY_CONNECTED - The specified interrupt vector was already connected. +. + +MessageId=764 +Severity=Success +Facility=System +SymbolicName=ERROR_INTERRUPT_STILL_CONNECTED +Language=English +ERROR_INTERRUPT_STILL_CONNECTED - The specified interrupt vector is still connected. +. + +MessageId=765 +Severity=Success +Facility=System +SymbolicName=ERROR_WAIT_FOR_OPLOCK +Language=English +ERROR_WAIT_FOR_OPLOCK - An operation is blocked waiting for an oplock. +. + +MessageId=766 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_EXCEPTION_HANDLED +Language=English +ERROR_DBG_EXCEPTION_HANDLED - Debugger handled exception. +. + +MessageId=767 +Severity=Success +Facility=System +SymbolicName=ERROR_DBG_CONTINUE +Language=English +ERROR_DBG_CONTINUE - Debugger continued +. + +MessageId=768 +Severity=Success +Facility=System +SymbolicName=ERROR_CALLBACK_POP_STACK +Language=English +ERROR_CALLBACK_POP_STACK - An exception occurred in a user mode callback and the kernel callback frame should be removed. +. + +MessageId=769 +Severity=Success +Facility=System +SymbolicName=ERROR_COMPRESSION_DISABLED +Language=English +ERROR_COMPRESSION_DISABLED - Compression is disabled for this volume. +. + +MessageId=770 +Severity=Success +Facility=System +SymbolicName=ERROR_CANTFETCHBACKWARDS +Language=English +ERROR_CANTFETCHBACKWARDS - The data provider cannot fetch backwards through a result set. +. + +MessageId=771 +Severity=Success +Facility=System +SymbolicName=ERROR_CANTSCROLLBACKWARDS +Language=English +ERROR_CANTSCROLLBACKWARDS - The data provider cannot scroll backwards through a result set. +. + +MessageId=772 +Severity=Success +Facility=System +SymbolicName=ERROR_ROWSNOTRELEASED +Language=English +ERROR_ROWSNOTRELEASED - The data provider requires that previously fetched data is released before asking for more data. +. + +MessageId=773 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_ACCESSOR_FLAGS +Language=English +ERROR_BAD_ACCESSOR_FLAGS - The data provider was not able to interpret the flags set for a column binding in an accessor. +. + +MessageId=774 +Severity=Success +Facility=System +SymbolicName=ERROR_ERRORS_ENCOUNTERED +Language=English +ERROR_ERRORS_ENCOUNTERED - One or more errors occurred while processing the request. +. + +MessageId=775 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_CAPABLE +Language=English +ERROR_NOT_CAPABLE - The implementation is not capable of performing the request. +. + +MessageId=776 +Severity=Success +Facility=System +SymbolicName=ERROR_REQUEST_OUT_OF_SEQUENCE +Language=English +ERROR_REQUEST_OUT_OF_SEQUENCE - The client of a component requested an operation which is not valid given the state of the component instance. +. + +MessageId=777 +Severity=Success +Facility=System +SymbolicName=ERROR_VERSION_PARSE_ERROR +Language=English +ERROR_VERSION_PARSE_ERROR - A version number could not be parsed. +. + +MessageId=778 +Severity=Success +Facility=System +SymbolicName=ERROR_BADSTARTPOSITION +Language=English +ERROR_BADSTARTPOSITION - The iterator's start position is invalid. +. + +MessageId=994 +Severity=Success +Facility=System +SymbolicName=ERROR_EA_ACCESS_DENIED +Language=English +ERROR_EA_ACCESS_DENIED - Access to the extended attribute was denied. +. + +MessageId=995 +Severity=Success +Facility=System +SymbolicName=ERROR_OPERATION_ABORTED +Language=English +ERROR_OPERATION_ABORTED - The I/O operation has been aborted because of either a thread exit or an application request. +. + +MessageId=996 +Severity=Success +Facility=System +SymbolicName=ERROR_IO_INCOMPLETE +Language=English +ERROR_IO_INCOMPLETE - Overlapped I/O event is not in a signaled state. +. + +MessageId=997 +Severity=Success +Facility=System +SymbolicName=ERROR_IO_PENDING +Language=English +ERROR_IO_PENDING - Overlapped I/O operation is in progress. +. + +MessageId=998 +Severity=Success +Facility=System +SymbolicName=ERROR_NOACCESS +Language=English +ERROR_NOACCESS - Invalid access to memory location. +. + +MessageId=999 +Severity=Success +Facility=System +SymbolicName=ERROR_SWAPERROR +Language=English +ERROR_SWAPERROR - Error performing inpage operation. +. + +MessageId=1001 +Severity=Success +Facility=System +SymbolicName=ERROR_STACK_OVERFLOW +Language=English +ERROR_STACK_OVERFLOW - Recursion too deep; the stack overflowed. +. + +MessageId=1002 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MESSAGE +Language=English +ERROR_INVALID_MESSAGE - The window cannot act on the sent message. +. + +MessageId=1003 +Severity=Success +Facility=System +SymbolicName=ERROR_CAN_NOT_COMPLETE +Language=English +ERROR_CAN_NOT_COMPLETE - Cannot complete this function. +. + +MessageId=1004 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FLAGS +Language=English +ERROR_INVALID_FLAGS - Invalid flags. +. + +MessageId=1005 +Severity=Success +Facility=System +SymbolicName=ERROR_UNRECOGNIZED_VOLUME +Language=English +ERROR_UNRECOGNIZED_VOLUME - The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupted. +. + +MessageId=1006 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_INVALID +Language=English +ERROR_FILE_INVALID - The volume for a file has been externally altered so that the opened file is no longer valid. +. + +MessageId=1007 +Severity=Success +Facility=System +SymbolicName=ERROR_FULLSCREEN_MODE +Language=English +ERROR_FULLSCREEN_MODE - The requested operation cannot be performed in full-screen mode. +. + +MessageId=1008 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_TOKEN +Language=English +ERROR_NO_TOKEN - An attempt was made to reference a token that does not exist. +. + +MessageId=1009 +Severity=Success +Facility=System +SymbolicName=ERROR_BADDB +Language=English +ERROR_BADDB - The configuration registry database is corrupt. +. + +MessageId=1010 +Severity=Success +Facility=System +SymbolicName=ERROR_BADKEY +Language=English +ERROR_BADKEY - The configuration registry key is invalid. +. + +MessageId=1011 +Severity=Success +Facility=System +SymbolicName=ERROR_CANTOPEN +Language=English +ERROR_CANTOPEN - The configuration registry key could not be opened. +. + +MessageId=1012 +Severity=Success +Facility=System +SymbolicName=ERROR_CANTREAD +Language=English +ERROR_CANTREAD - The configuration registry key could not be read. +. + +MessageId=1013 +Severity=Success +Facility=System +SymbolicName=ERROR_CANTWRITE +Language=English +ERROR_CANTWRITE - The configuration registry key could not be written. +. + +MessageId=1014 +Severity=Success +Facility=System +SymbolicName=ERROR_REGISTRY_RECOVERED +Language=English +ERROR_REGISTRY_RECOVERED - One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful. +. + +MessageId=1015 +Severity=Success +Facility=System +SymbolicName=ERROR_REGISTRY_CORRUPT +Language=English +ERROR_REGISTRY_CORRUPT - The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted. +. + +MessageId=1016 +Severity=Success +Facility=System +SymbolicName=ERROR_REGISTRY_IO_FAILED +Language=English +ERROR_REGISTRY_IO_FAILED - An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry. +. + +MessageId=1017 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_REGISTRY_FILE +Language=English +ERROR_NOT_REGISTRY_FILE - The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format. +. + +MessageId=1018 +Severity=Success +Facility=System +SymbolicName=ERROR_KEY_DELETED +Language=English +ERROR_KEY_DELETED - Illegal operation attempted on a registry key that has been marked for deletion. +. + +MessageId=1019 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_LOG_SPACE +Language=English +ERROR_NO_LOG_SPACE - System could not allocate the required space in a registry log. +. + +MessageId=1020 +Severity=Success +Facility=System +SymbolicName=ERROR_KEY_HAS_CHILDREN +Language=English +ERROR_KEY_HAS_CHILDREN - Cannot create a symbolic link in a registry key that already has subkeys or values. +. + +MessageId=1021 +Severity=Success +Facility=System +SymbolicName=ERROR_CHILD_MUST_BE_VOLATILE +Language=English +ERROR_CHILD_MUST_BE_VOLATILE - Cannot create a stable subkey under a volatile parent key. +. + +MessageId=1022 +Severity=Success +Facility=System +SymbolicName=ERROR_NOTIFY_ENUM_DIR +Language=English +ERROR_NOTIFY_ENUM_DIR - A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes. +. + +MessageId=1051 +Severity=Success +Facility=System +SymbolicName=ERROR_DEPENDENT_SERVICES_RUNNING +Language=English +ERROR_DEPENDENT_SERVICES_RUNNING - A stop control has been sent to a service that other running services are dependent on. +. + +MessageId=1052 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SERVICE_CONTROL +Language=English +ERROR_INVALID_SERVICE_CONTROL - The requested control is not valid for this service. +. + +MessageId=1053 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_REQUEST_TIMEOUT +Language=English +ERROR_SERVICE_REQUEST_TIMEOUT - The service did not respond to the start or control request in a timely fashion. +. + +MessageId=1054 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_NO_THREAD +Language=English +ERROR_SERVICE_NO_THREAD - A thread could not be created for the service. +. + +MessageId=1055 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_DATABASE_LOCKED +Language=English +ERROR_SERVICE_DATABASE_LOCKED - The service database is locked. +. + +MessageId=1056 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_ALREADY_RUNNING +Language=English +ERROR_SERVICE_ALREADY_RUNNING - An instance of the service is already running. +. + +MessageId=1057 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SERVICE_ACCOUNT +Language=English +ERROR_INVALID_SERVICE_ACCOUNT - The account name is invalid or does not exist, or the password is invalid for the account name specified. +. + +MessageId=1058 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_DISABLED +Language=English +ERROR_SERVICE_DISABLED - The service cannot be started, either because it is disabled or because it has no enabled devices associated with it. +. + +MessageId=1059 +Severity=Success +Facility=System +SymbolicName=ERROR_CIRCULAR_DEPENDENCY +Language=English +ERROR_CIRCULAR_DEPENDENCY - Circular service dependency was specified. +. + +MessageId=1060 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_DOES_NOT_EXIST +Language=English +ERROR_SERVICE_DOES_NOT_EXIST - The specified service does not exist as an installed service. +. + +MessageId=1061 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_CANNOT_ACCEPT_CTRL +Language=English +ERROR_SERVICE_CANNOT_ACCEPT_CTRL - The service cannot accept control messages at this time. +. + +MessageId=1062 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_NOT_ACTIVE +Language=English +ERROR_SERVICE_NOT_ACTIVE - The service has not been started. +. + +MessageId=1063 +Severity=Success +Facility=System +SymbolicName=ERROR_FAILED_SERVICE_CONTROLLER_CONNECT +Language=English +ERROR_FAILED_SERVICE_CONTROLLER_CONNECT - The service process could not connect to the service controller. +. + +MessageId=1064 +Severity=Success +Facility=System +SymbolicName=ERROR_EXCEPTION_IN_SERVICE +Language=English +ERROR_EXCEPTION_IN_SERVICE - An exception occurred in the service when handling the control request. +. + +MessageId=1065 +Severity=Success +Facility=System +SymbolicName=ERROR_DATABASE_DOES_NOT_EXIST +Language=English +ERROR_DATABASE_DOES_NOT_EXIST - The database specified does not exist. +. + +MessageId=1066 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_SPECIFIC_ERROR +Language=English +ERROR_SERVICE_SPECIFIC_ERROR - The service has returned a service-specific error code. +. + +MessageId=1067 +Severity=Success +Facility=System +SymbolicName=ERROR_PROCESS_ABORTED +Language=English +ERROR_PROCESS_ABORTED - The process terminated unexpectedly. +. + +MessageId=1068 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_DEPENDENCY_FAIL +Language=English +ERROR_SERVICE_DEPENDENCY_FAIL - The dependency service or group failed to start. +. + +MessageId=1069 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_LOGON_FAILED +Language=English +ERROR_SERVICE_LOGON_FAILED - The service did not start due to a logon failure. +. + +MessageId=1070 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_START_HANG +Language=English +ERROR_SERVICE_START_HANG - After starting, the service hung in a start-pending state. +. + +MessageId=1071 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SERVICE_LOCK +Language=English +ERROR_INVALID_SERVICE_LOCK - The specified service database lock is invalid. +. + +MessageId=1072 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_MARKED_FOR_DELETE +Language=English +ERROR_SERVICE_MARKED_FOR_DELETE - The specified service has been marked for deletion. +. + +MessageId=1073 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_EXISTS +Language=English +ERROR_SERVICE_EXISTS - The specified service already exists. +. + +MessageId=1074 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_RUNNING_LKG +Language=English +ERROR_ALREADY_RUNNING_LKG - The system is currently running with the last-known-good configuration. +. + +MessageId=1075 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_DEPENDENCY_DELETED +Language=English +ERROR_SERVICE_DEPENDENCY_DELETED - The dependency service does not exist or has been marked for deletion. +. + +MessageId=1076 +Severity=Success +Facility=System +SymbolicName=ERROR_BOOT_ALREADY_ACCEPTED +Language=English +ERROR_BOOT_ALREADY_ACCEPTED - The current boot has already been accepted for use as the last-known-good control set. +. + +MessageId=1077 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_NEVER_STARTED +Language=English +ERROR_SERVICE_NEVER_STARTED - No attempts to start the service have been made since the last boot. +. + +MessageId=1078 +Severity=Success +Facility=System +SymbolicName=ERROR_DUPLICATE_SERVICE_NAME +Language=English +ERROR_DUPLICATE_SERVICE_NAME - The name is already in use as either a service name or a service display name. +. + +MessageId=1079 +Severity=Success +Facility=System +SymbolicName=ERROR_DIFFERENT_SERVICE_ACCOUNT +Language=English +ERROR_DIFFERENT_SERVICE_ACCOUNT - The account specified for this service is different from the account specified for other services running in the same process. +. + +MessageId=1080 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_DETECT_DRIVER_FAILURE +Language=English +ERROR_CANNOT_DETECT_DRIVER_FAILURE - Failure actions can only be set for Win32 services, not for drivers. +. + +MessageId=1081 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_DETECT_PROCESS_ABORT +Language=English +ERROR_CANNOT_DETECT_PROCESS_ABORT - This service runs in the same process as the service control manager. Therefore, the service control manager cannot take action if this service's process terminates unexpectedly. +. + +MessageId=1082 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_RECOVERY_PROGRAM +Language=English +ERROR_NO_RECOVERY_PROGRAM - No recovery program has been configured for this service. +. + +MessageId=1083 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_NOT_IN_EXE +Language=English +ERROR_SERVICE_NOT_IN_EXE - The executable program that this service is configured to run in does not implement the service. +. + +MessageId=1084 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SAFEBOOT_SERVICE +Language=English +ERROR_NOT_SAFEBOOT_SERVICE - This service cannot be started in Safe Mode. +. + +MessageId=1100 +Severity=Success +Facility=System +SymbolicName=ERROR_END_OF_MEDIA +Language=English +ERROR_END_OF_MEDIA - The physical end of the tape has been reached. +. + +MessageId=1101 +Severity=Success +Facility=System +SymbolicName=ERROR_FILEMARK_DETECTED +Language=English +ERROR_FILEMARK_DETECTED - A tape access reached a filemark. +. + +MessageId=1102 +Severity=Success +Facility=System +SymbolicName=ERROR_BEGINNING_OF_MEDIA +Language=English +ERROR_BEGINNING_OF_MEDIA - The beginning of the tape or a partition was encountered. +. + +MessageId=1103 +Severity=Success +Facility=System +SymbolicName=ERROR_SETMARK_DETECTED +Language=English +ERROR_SETMARK_DETECTED - A tape access reached the end of a set of files. +. + +MessageId=1104 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_DATA_DETECTED +Language=English +ERROR_NO_DATA_DETECTED - No more data is on the tape. +. + +MessageId=1105 +Severity=Success +Facility=System +SymbolicName=ERROR_PARTITION_FAILURE +Language=English +ERROR_PARTITION_FAILURE - Tape could not be partitioned. +. + +MessageId=1106 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_BLOCK_LENGTH +Language=English +ERROR_INVALID_BLOCK_LENGTH - When accessing a new tape of a multivolume partition, the current block size is incorrect. +. + +MessageId=1107 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_NOT_PARTITIONED +Language=English +ERROR_DEVICE_NOT_PARTITIONED - Tape partition information could not be found when loading a tape. +. + +MessageId=1108 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_LOCK_MEDIA +Language=English +ERROR_UNABLE_TO_LOCK_MEDIA - Unable to lock the media eject mechanism. +. + +MessageId=1109 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_UNLOAD_MEDIA +Language=English +ERROR_UNABLE_TO_UNLOAD_MEDIA - Unable to unload the media. +. + +MessageId=1110 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIA_CHANGED +Language=English +ERROR_MEDIA_CHANGED - The media in the drive may have changed. +. + +MessageId=1111 +Severity=Success +Facility=System +SymbolicName=ERROR_BUS_RESET +Language=English +ERROR_BUS_RESET - The I/O bus was reset. +. + +MessageId=1112 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MEDIA_IN_DRIVE +Language=English +ERROR_NO_MEDIA_IN_DRIVE - No media in drive. +. + +MessageId=1113 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_UNICODE_TRANSLATION +Language=English +ERROR_NO_UNICODE_TRANSLATION - No mapping for the Unicode character exists in the target multi-byte code page. +. + +MessageId=1114 +Severity=Success +Facility=System +SymbolicName=ERROR_DLL_INIT_FAILED +Language=English +ERROR_DLL_INIT_FAILED - A dynamic link library (DLL) initialization routine failed. +. + +MessageId=1115 +Severity=Success +Facility=System +SymbolicName=ERROR_SHUTDOWN_IN_PROGRESS +Language=English +ERROR_SHUTDOWN_IN_PROGRESS - A system shutdown is in progress. +. + +MessageId=1116 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SHUTDOWN_IN_PROGRESS +Language=English +ERROR_NO_SHUTDOWN_IN_PROGRESS - Unable to abort the system shutdown because no shutdown was in progress. +. + +MessageId=1117 +Severity=Success +Facility=System +SymbolicName=ERROR_IO_DEVICE +Language=English +ERROR_IO_DEVICE - The request could not be performed because of an I/O device error. +. + +MessageId=1118 +Severity=Success +Facility=System +SymbolicName=ERROR_SERIAL_NO_DEVICE +Language=English +ERROR_SERIAL_NO_DEVICE - No serial device was successfully initialized. The serial driver will unload. +. + +MessageId=1119 +Severity=Success +Facility=System +SymbolicName=ERROR_IRQ_BUSY +Language=English +ERROR_IRQ_BUSY - Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened. +. + +MessageId=1120 +Severity=Success +Facility=System +SymbolicName=ERROR_MORE_WRITES +Language=English +ERROR_MORE_WRITES - A serial I/O operation was completed by another write to the serial port. (The IOCTL_SERIAL_XOFF_COUNTER reached zero.) +. + +MessageId=1121 +Severity=Success +Facility=System +SymbolicName=ERROR_COUNTER_TIMEOUT +Language=English +ERROR_COUNTER_TIMEOUT - A serial I/O operation completed because the timeout period expired. (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.) +. + +MessageId=1122 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOPPY_ID_MARK_NOT_FOUND +Language=English +ERROR_FLOPPY_ID_MARK_NOT_FOUND - No ID address mark was found on the floppy disk. +. + +MessageId=1123 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOPPY_WRONG_CYLINDER +Language=English +ERROR_FLOPPY_WRONG_CYLINDER - Mismatch between the floppy disk sector ID field and the floppy disk controller track address. +. + +MessageId=1124 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOPPY_UNKNOWN_ERROR +Language=English +ERROR_FLOPPY_UNKNOWN_ERROR - The floppy disk controller reported an error that is not recognized by the floppy disk driver. +. + +MessageId=1125 +Severity=Success +Facility=System +SymbolicName=ERROR_FLOPPY_BAD_REGISTERS +Language=English +ERROR_FLOPPY_BAD_REGISTERS - The floppy disk controller returned inconsistent results in its registers. +. + +MessageId=1126 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_RECALIBRATE_FAILED +Language=English +ERROR_DISK_RECALIBRATE_FAILED - While accessing the hard disk, a recalibrate operation failed, even after retries. +. + +MessageId=1127 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_OPERATION_FAILED +Language=English +ERROR_DISK_OPERATION_FAILED - While accessing the hard disk, a disk operation failed even after retries. +. + +MessageId=1128 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_RESET_FAILED +Language=English +ERROR_DISK_RESET_FAILED - While accessing the hard disk, a disk controller reset was needed, but even that failed. +. + +MessageId=1129 +Severity=Success +Facility=System +SymbolicName=ERROR_EOM_OVERFLOW +Language=English +ERROR_EOM_OVERFLOW - Physical end of tape encountered. +. + +MessageId=1130 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_ENOUGH_SERVER_MEMORY +Language=English +ERROR_NOT_ENOUGH_SERVER_MEMORY - Not enough server storage is available to process this command. +. + +MessageId=1131 +Severity=Success +Facility=System +SymbolicName=ERROR_POSSIBLE_DEADLOCK +Language=English +ERROR_POSSIBLE_DEADLOCK - A potential deadlock condition has been detected. +. + +MessageId=1132 +Severity=Success +Facility=System +SymbolicName=ERROR_MAPPED_ALIGNMENT +Language=English +ERROR_MAPPED_ALIGNMENT - The base address or the file offset specified does not have the proper alignment. +. + +MessageId=1140 +Severity=Success +Facility=System +SymbolicName=ERROR_SET_POWER_STATE_VETOED +Language=English +ERROR_SET_POWER_STATE_VETOED - An attempt to change the system power state was vetoed by another application or driver. +. + +MessageId=1141 +Severity=Success +Facility=System +SymbolicName=ERROR_SET_POWER_STATE_FAILED +Language=English +ERROR_SET_POWER_STATE_FAILED - The system BIOS failed an attempt to change the system power state. +. + +MessageId=1142 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_LINKS +Language=English +ERROR_TOO_MANY_LINKS - An attempt was made to create more links on a file than the file system supports. +. + +MessageId=1150 +Severity=Success +Facility=System +SymbolicName=ERROR_OLD_WIN_VERSION +Language=English +ERROR_OLD_WIN_VERSION - The specified program requires a newer version of Windows. +. + +MessageId=1151 +Severity=Success +Facility=System +SymbolicName=ERROR_APP_WRONG_OS +Language=English +ERROR_APP_WRONG_OS - The specified program is not a Windows or MS-DOS program. +. + +MessageId=1152 +Severity=Success +Facility=System +SymbolicName=ERROR_SINGLE_INSTANCE_APP +Language=English +ERROR_SINGLE_INSTANCE_APP - Cannot start more than one instance of the specified program. +. + +MessageId=1153 +Severity=Success +Facility=System +SymbolicName=ERROR_RMODE_APP +Language=English +ERROR_RMODE_APP - The specified program was written for an earlier version of Windows. +. + +MessageId=1154 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DLL +Language=English +ERROR_INVALID_DLL - One of the library files needed to run this application is damaged. +. + +MessageId=1155 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_ASSOCIATION +Language=English +ERROR_NO_ASSOCIATION - No application is associated with the specified file for this operation. +. + +MessageId=1156 +Severity=Success +Facility=System +SymbolicName=ERROR_DDE_FAIL +Language=English +ERROR_DDE_FAIL - An error occurred in sending the command to the application. +. +Language=Russian +ERROR_DDE_FAIL - Ошибка при пересылке команды приложению. +. + +MessageId=1157 +Severity=Success +Facility=System +SymbolicName=ERROR_DLL_NOT_FOUND +Language=English +ERROR_DLL_NOT_FOUND - One of the library files needed to run this application cannot be found. +. +Language=Russian +ERROR_DLL_NOT_FOUND - Не найден один из файлов библиотек, необходимых для выполнения данного приложения. +. + +MessageId=1158 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MORE_USER_HANDLES +Language=English +ERROR_NO_MORE_USER_HANDLES - The current process has used all of its system allowance of handles for Window Manager objects. +. +Language=Russian +ERROR_NO_MORE_USER_HANDLES - Текущий процесс использовал все системные разрешения по управлению объектами диспетчера окон. +. + +MessageId=1159 +Severity=Success +Facility=System +SymbolicName=ERROR_MESSAGE_SYNC_ONLY +Language=English +ERROR_MESSAGE_SYNC_ONLY - The message can be used only with synchronous operations. +. +Language=Russian +ERROR_MESSAGE_SYNC_ONLY - Сообщение может быть использовано только с операциями синхронизации. +. + +MessageId=1160 +Severity=Success +Facility=System +SymbolicName=ERROR_SOURCE_ELEMENT_EMPTY +Language=English +ERROR_SOURCE_ELEMENT_EMPTY - The indicated source element has no media. +. +Language=Russian +ERROR_SOURCE_ELEMENT_EMPTY - Указанный исходный элемент не имеет носителя. +. + +MessageId=1161 +Severity=Success +Facility=System +SymbolicName=ERROR_DESTINATION_ELEMENT_FULL +Language=English +ERROR_DESTINATION_ELEMENT_FULL - The indicated destination element already contains media. +. +Language=Russian +ERROR_DESTINATION_ELEMENT_FULL - Указанный конечный элемент уже содержит носитель. +. + +MessageId=1162 +Severity=Success +Facility=System +SymbolicName=ERROR_ILLEGAL_ELEMENT_ADDRESS +Language=English +ERROR_ILLEGAL_ELEMENT_ADDRESS - The indicated element does not exist. +. +Language=Russian +ERROR_ILLEGAL_ELEMENT_ADDRESS - Указанный элемент не существует. +. + +MessageId=1163 +Severity=Success +Facility=System +SymbolicName=ERROR_MAGAZINE_NOT_PRESENT +Language=English +ERROR_MAGAZINE_NOT_PRESENT - The indicated element is part of a magazine that is not present. +. +Language=Russian +ERROR_MAGAZINE_NOT_PRESENT - Указанный элемент является частью отсутствующего журнала. +. + +MessageId=1164 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_REINITIALIZATION_NEEDED +Language=English +ERROR_DEVICE_REINITIALIZATION_NEEDED - The indicated device requires reinitialization due to hardware errors. +. +Language=Russian +ERROR_DEVICE_REINITIALIZATION_NEEDED - Указанный элемент требует повторной инициализации из-за аппаратных ошибок. +. + +MessageId=1165 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_REQUIRES_CLEANING +Language=English +ERROR_DEVICE_REQUIRES_CLEANING - The device has indicated that cleaning is required before further operations are attempted. +. +Language=Russian +ERROR_DEVICE_REQUIRES_CLEANING - Устройство требует проведение чистки перед его дальнейшим использованием. +. + +MessageId=1166 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_DOOR_OPEN +Language=English +ERROR_DEVICE_DOOR_OPEN - The device has indicated that its door is open. +. +Language=Russian +ERROR_DEVICE_DOOR_OPEN - Устройство сообщает, что открыта дверца. +. + +MessageId=1167 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_NOT_CONNECTED +Language=English +ERROR_DEVICE_NOT_CONNECTED - The device is not connected. +. +Language=Russian +ERROR_DEVICE_NOT_CONNECTED - Устройство не подключено. +. + +MessageId=1168 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_FOUND +Language=English +ERROR_NOT_FOUND - Element not found. +. +Language=Russian +ERROR_NOT_FOUND - Элемент не найден. +. + +MessageId=1169 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MATCH +Language=English +ERROR_NO_MATCH - There was no match for the specified key in the index. +. +Language=Russian +ERROR_NO_MATCH - В индексе не найдены соответствия указанному ключу. +. + +MessageId=1170 +Severity=Success +Facility=System +SymbolicName=ERROR_SET_NOT_FOUND +Language=English +ERROR_SET_NOT_FOUND - The property set specified does not exist on the object. +. +Language=Russian +ERROR_SET_NOT_FOUND - Указанный набор свойств не существует для объекта. +. + +MessageId=1171 +Severity=Success +Facility=System +SymbolicName=ERROR_POINT_NOT_FOUND +Language=English +ERROR_POINT_NOT_FOUND - The point passed to GetMouseMovePointsEx is not in the buffer. +. +Language=Russian +ERROR_POINT_NOT_FOUND - Переданная в GetMouseMovePoints точка не находится в буфере. +. + +MessageId=1172 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_TRACKING_SERVICE +Language=English +ERROR_NO_TRACKING_SERVICE - The tracking (workstation) service is not running. +. +Language=Russian +ERROR_NO_TRACKING_SERVICE - Служба слежения (на рабочей станции) не запущена. +. + +MessageId=1173 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_VOLUME_ID +Language=English +ERROR_NO_VOLUME_ID - The Volume ID could not be found. +. +Language=Russian +ERROR_NO_VOLUME_ID - Не удается найти идентификатор тома. +. + +MessageId=1175 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_REMOVE_REPLACED +Language=English +ERROR_UNABLE_TO_REMOVE_REPLACED - Unable to remove the file to be replaced. +. +Language=Russian +ERROR_UNABLE_TO_REMOVE_REPLACED - Не удается удалить заменяемый файл. +. + +MessageId=1176 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_MOVE_REPLACEMENT +Language=English +ERROR_UNABLE_TO_MOVE_REPLACEMENT - Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name. +. +Language=Russian +ERROR_UNABLE_TO_MOVE_REPLACEMENT - Не удается заместить файл. Замещаемый файл сохранил свое первоначальное имя. +. + +MessageId=1177 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 +Language=English +ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 - Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name. +. +Language=Russian +ERROR_UNABLE_TO_MOVE_REPLACEMENT_2 - Не удается заместить файл. Замещаемый файл был переименован с использованием резервного имени. +. + +MessageId=1178 +Severity=Success +Facility=System +SymbolicName=ERROR_JOURNAL_DELETE_IN_PROGRESS +Language=English +ERROR_JOURNAL_DELETE_IN_PROGRESS - The volume change journal is being deleted. +. +Language=Russian +ERROR_JOURNAL_DELETE_IN_PROGRESS - Журнал изменений тома удален. +. + +MessageId=1179 +Severity=Success +Facility=System +SymbolicName=ERROR_JOURNAL_NOT_ACTIVE +Language=English +ERROR_JOURNAL_NOT_ACTIVE - The volume change journal is not active. +. +Language=Russian +ERROR_JOURNAL_NOT_ACTIVE - Журнал изменений тома не активен. +. + +MessageId=1180 +Severity=Success +Facility=System +SymbolicName=ERROR_POTENTIAL_FILE_FOUND +Language=English +ERROR_POTENTIAL_FILE_FOUND - A file was found, but it may not be the correct file. +. +Language=Russian +ERROR_POTENTIAL_FILE_FOUND - Файл найден, но это может быть неверный файл. +. + +MessageId=1181 +Severity=Success +Facility=System +SymbolicName=ERROR_JOURNAL_ENTRY_DELETED +Language=English +ERROR_JOURNAL_ENTRY_DELETED - The journal entry has been deleted from the journal. +. +Language=Russian +ERROR_JOURNAL_ENTRY_DELETED - Из журнала удалена запись. +. + +MessageId=1200 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_DEVICE +Language=English +ERROR_BAD_DEVICE - The specified device name is invalid. +. +Language=Russian +ERROR_BAD_DEVICE - Указано неверное имя устройства. +. + +MessageId=1201 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTION_UNAVAIL +Language=English +ERROR_CONNECTION_UNAVAIL - The device is not currently connected but it is a remembered connection. +. +Language=Russian +ERROR_CONNECTION_UNAVAIL - Устройство сейчас не подключено, но сведения о нем в конфигурации присутствуют. +. + +MessageId=1202 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_ALREADY_REMEMBERED +Language=English +ERROR_DEVICE_ALREADY_REMEMBERED - The local device name has a remembered connection to another network resource. +. +Language=Russian +ERROR_DEVICE_ALREADY_REMEMBERED - Локальное имя устройства уже используется для подключения к другому сетевому ресурсу. +. + +MessageId=1203 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_NET_OR_BAD_PATH +Language=English +ERROR_NO_NET_OR_BAD_PATH - The network path was either typed incorrectly, does not exist, or the network provider is not currently available. Please try retyping the path or contact your network administrator. +. +Language=Russian +ERROR_NO_NET_OR_BAD_PATH - Сетевой путь введен неправильно, не существует, или сеть сейчас недоступна. Попробуйте ввести путь заново или обратитесь к администратору сети. +. + +MessageId=1204 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_PROVIDER +Language=English +ERROR_BAD_PROVIDER - The specified network provider name is invalid. +. +Language=Russian +ERROR_BAD_PROVIDER - Имя службы доступа к сети задано неверно. +. + +MessageId=1205 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_OPEN_PROFILE +Language=English +ERROR_CANNOT_OPEN_PROFILE - Unable to open the network connection profile. +. +Language=Russian +ERROR_CANNOT_OPEN_PROFILE - Не удается открыть конфигурацию подключения к сети. +. + +MessageId=1206 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_PROFILE +Language=English +ERROR_BAD_PROFILE - The network connection profile is corrupted. +. +Language=Russian +ERROR_BAD_PROFILE - Конфигурация подключения к сети повреждена. +. + +MessageId=1207 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_CONTAINER +Language=English +ERROR_NOT_CONTAINER - Cannot enumerate a noncontainer. +. +Language=Russian +ERROR_NOT_CONTAINER - Перечисление объектов, не являющихся контейнерами, невозможно. +. + +MessageId=1208 +Severity=Success +Facility=System +SymbolicName=ERROR_EXTENDED_ERROR +Language=English +ERROR_EXTENDED_ERROR - An extended error has occurred. +. +Language=Russian +ERROR_EXTENDED_ERROR - Ошибка расширенного типа. +. + +MessageId=1209 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_GROUPNAME +Language=English +ERROR_INVALID_GROUPNAME - The format of the specified group name is invalid. +. +Language=Russian +ERROR_INVALID_GROUPNAME - Неверный формат имени группы. +. + +MessageId=1210 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_COMPUTERNAME +Language=English +ERROR_INVALID_COMPUTERNAME - The format of the specified computer name is invalid. +. +Language=Russian +ERROR_INVALID_COMPUTERNAME - Неверный формат имени компьютера. +. + +MessageId=1211 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_EVENTNAME +Language=English +ERROR_INVALID_EVENTNAME - The format of the specified event name is invalid. +. +Language=Russian +ERROR_INVALID_EVENTNAME - Неверный формат имени события. +. + +MessageId=1212 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DOMAINNAME +Language=English +ERROR_INVALID_DOMAINNAME - The format of the specified domain name is invalid. +. +Language=Russian +ERROR_INVALID_DOMAINNAME - Неверный формат имени домена. +. + +MessageId=1213 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SERVICENAME +Language=English +ERROR_INVALID_SERVICENAME - The format of the specified service name is invalid. +. +Language=Russian +ERROR_INVALID_SERVICENAME - Неверный формат имени службы. +. + +MessageId=1214 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_NETNAME +Language=English +ERROR_INVALID_NETNAME - The format of the specified network name is invalid. +. +Language=Russian +ERROR_INVALID_NETNAME - Неверный формат сетевого имени. +. + +MessageId=1215 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SHARENAME +Language=English +ERROR_INVALID_SHARENAME - The format of the specified share name is invalid. +. +Language=Russian +ERROR_INVALID_SHARENAME - Недопустимый формат имени общего ресурса. +. + +MessageId=1216 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PASSWORDNAME +Language=English +ERROR_INVALID_PASSWORDNAME - The format of the specified password is invalid. +. +Language=Russian +ERROR_INVALID_PASSWORDNAME - Неверный формат пароля. +. + +MessageId=1217 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MESSAGENAME +Language=English +ERROR_INVALID_MESSAGENAME - The format of the specified message name is invalid. +. +Language=Russian +ERROR_INVALID_MESSAGENAME - Неверный формат имени сообщения. +. + +MessageId=1218 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MESSAGEDEST +Language=English +ERROR_INVALID_MESSAGEDEST - The format of the specified message destination is invalid. +. +Language=Russian +ERROR_INVALID_MESSAGEDEST - Неверный формат задания адреса, по которому отправляется сообщение. +. + +MessageId=1219 +Severity=Success +Facility=System +SymbolicName=ERROR_SESSION_CREDENTIAL_CONFLICT +Language=English +ERROR_SESSION_CREDENTIAL_CONFLICT - Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again. +. +Language=Russian +ERROR_SESSION_CREDENTIAL_CONFLICT - Множественное подключение к серверу или к общим ресурсам одним пользователем с использованием более одного имени пользователя не разрешено. Отключите все предыдущие подключения к серверу или общим ресурсам и повторите попытку. +. + +MessageId=1220 +Severity=Success +Facility=System +SymbolicName=ERROR_REMOTE_SESSION_LIMIT_EXCEEDED +Language=English +ERROR_REMOTE_SESSION_LIMIT_EXCEEDED - An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. +. +Language=Russian +ERROR_REMOTE_SESSION_LIMIT_EXCEEDED - Попытка установки сеанса связи с сервером сети, для которого достигнут предел по числу таких сеансов. +. + +MessageId=1221 +Severity=Success +Facility=System +SymbolicName=ERROR_DUP_DOMAINNAME +Language=English +ERROR_DUP_DOMAINNAME - The workgroup or domain name is already in use by another computer on the network. +. +Language=Russian +ERROR_DUP_DOMAINNAME - Имя рабочей группы или домена уже используется другим компьютером в сети. +. + +MessageId=1222 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_NETWORK +Language=English +ERROR_NO_NETWORK - The network is not present or not started. +. +Language=Russian +ERROR_NO_NETWORK - Сеть отсутствует или не запущена. +. + +MessageId=1223 +Severity=Success +Facility=System +SymbolicName=ERROR_CANCELLED +Language=English +ERROR_CANCELLED - The operation was canceled by the user. +. +Language=Russian +ERROR_CANCELLED - Операция была отменена пользователем. +. + +MessageId=1224 +Severity=Success +Facility=System +SymbolicName=ERROR_USER_MAPPED_FILE +Language=English +ERROR_USER_MAPPED_FILE - The requested operation cannot be performed on a file with a user-mapped section open. +. +Language=Russian +ERROR_USER_MAPPED_FILE - Запрошенную операцию нельзя выполнить для файла с открытой пользователем сопоставленной секцией. +. + +MessageId=1225 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTION_REFUSED +Language=English +ERROR_CONNECTION_REFUSED - The remote system refused the network connection. +. +Language=Russian +ERROR_CONNECTION_REFUSED - Удаленный компьютер отклонил это сетевое подключение. +. + +MessageId=1226 +Severity=Success +Facility=System +SymbolicName=ERROR_GRACEFUL_DISCONNECT +Language=English +ERROR_GRACEFUL_DISCONNECT - The network connection was gracefully closed. +. +Language=Russian +ERROR_GRACEFUL_DISCONNECT - Сетевое подключение было закрыто. +. + +MessageId=1227 +Severity=Success +Facility=System +SymbolicName=ERROR_ADDRESS_ALREADY_ASSOCIATED +Language=English +ERROR_ADDRESS_ALREADY_ASSOCIATED - The network transport endpoint already has an address associated with it. +. +Language=Russian +ERROR_ADDRESS_ALREADY_ASSOCIATED - Конечной точке сетевого транспорта уже сопоставлен адрес. +. + +MessageId=1228 +Severity=Success +Facility=System +SymbolicName=ERROR_ADDRESS_NOT_ASSOCIATED +Language=English +ERROR_ADDRESS_NOT_ASSOCIATED - An address has not yet been associated with the network endpoint. +. +Language=Russian +ERROR_ADDRESS_NOT_ASSOCIATED - Конечной точке сети еще не сопоставлен адрес. +. + +MessageId=1229 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTION_INVALID +Language=English +ERROR_CONNECTION_INVALID - An operation was attempted on a nonexistent network connection. +. +Language=Russian +ERROR_CONNECTION_INVALID - Попытка выполнить операцию для несуществующего сетевого подключения. +. + +MessageId=1230 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTION_ACTIVE +Language=English +ERROR_CONNECTION_ACTIVE - An invalid operation was attempted on an active network connection. +. +Language=Russian +ERROR_CONNECTION_ACTIVE - Попытка выполнить недопустимую операцию для активного сетевого подключения. +. + +MessageId=1231 +Severity=Success +Facility=System +SymbolicName=ERROR_NETWORK_UNREACHABLE +Language=English +ERROR_NETWORK_UNREACHABLE - The network location cannot be reached. For information about network troubleshooting, see Windows Help. +. +Language=Russian +ERROR_NETWORK_UNREACHABLE - Сетевая папка недоступна. За информацией о разрешении проблем в сети обратитесь к справочной системе Windows. +. + +MessageId=1232 +Severity=Success +Facility=System +SymbolicName=ERROR_HOST_UNREACHABLE +Language=English +ERROR_HOST_UNREACHABLE - The network location cannot be reached. For information about network troubleshooting, see Windows Help. +. +Language=Russian +ERROR_HOST_UNREACHABLE - Сетевая папка недоступна. За информацией о разрешении проблем в сети обратитесь к справочной системе Windows. +. + +MessageId=1233 +Severity=Success +Facility=System +SymbolicName=ERROR_PROTOCOL_UNREACHABLE +Language=English +ERROR_PROTOCOL_UNREACHABLE - The network location cannot be reached. For information about network troubleshooting, see Windows Help. +. +Language=Russian +ERROR_PROTOCOL_UNREACHABLE - Сетевая папка недоступна. За информацией о разрешении проблем в сети обратитесь к справочной системе Windows. +. + +MessageId=1234 +Severity=Success +Facility=System +SymbolicName=ERROR_PORT_UNREACHABLE +Language=English +ERROR_PORT_UNREACHABLE - No service is operating at the destination network endpoint on the remote system. +. +Language=Russian +ERROR_PORT_UNREACHABLE - На конечном звене нужной сети удаленной системы не запущена ни одна служба. +. + +MessageId=1235 +Severity=Success +Facility=System +SymbolicName=ERROR_REQUEST_ABORTED +Language=English +ERROR_REQUEST_ABORTED - The request was aborted. +. +Language=Russian +ERROR_REQUEST_ABORTED - Запрос был прерван. +. + +MessageId=1236 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTION_ABORTED +Language=English +ERROR_CONNECTION_ABORTED - The network connection was aborted by the local system. +. +Language=Russian +ERROR_CONNECTION_ABORTED - Подключение к сети было разорвано локальной системой. +. + +MessageId=1237 +Severity=Success +Facility=System +SymbolicName=ERROR_RETRY +Language=English +ERROR_RETRY - The operation could not be completed. A retry should be performed. +. +Language=Russian +ERROR_RETRY - Не удалось завершить операцию. Следует повторить ее. +. + +MessageId=1238 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTION_COUNT_LIMIT +Language=English +ERROR_CONNECTION_COUNT_LIMIT - A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. +. +Language=Russian +ERROR_CONNECTION_COUNT_LIMIT - Подключение к серверу невозможно, так как для данной учетной записи уже достигнут предел по числу одновременных подключений. +. + +MessageId=1239 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGIN_TIME_RESTRICTION +Language=English +ERROR_LOGIN_TIME_RESTRICTION - Attempting to log in during an unauthorized time of day for this account. +. +Language=Russian +ERROR_LOGIN_TIME_RESTRICTION - Попытка входа в сеть в непредусмотренное для этой учетной записи время дня. +. + +MessageId=1240 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGIN_WKSTA_RESTRICTION +Language=English +ERROR_LOGIN_WKSTA_RESTRICTION - The account is not authorized to log in from this station. +. +Language=Russian +ERROR_LOGIN_WKSTA_RESTRICTION - Данная учетная запись не может быть использована для входа в сеть с этой станции. +. + +MessageId=1241 +Severity=Success +Facility=System +SymbolicName=ERROR_INCORRECT_ADDRESS +Language=English +ERROR_INCORRECT_ADDRESS - The network address could not be used for the operation requested. +. +Language=Russian +ERROR_INCORRECT_ADDRESS - Не удалось использовать сетевой адрес для запрошенной операции. +. + +MessageId=1242 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_REGISTERED +Language=English +ERROR_ALREADY_REGISTERED - The service is already registered. +. +Language=Russian +ERROR_ALREADY_REGISTERED - Служба уже зарегистрирована. +. + +MessageId=1243 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVICE_NOT_FOUND +Language=English +ERROR_SERVICE_NOT_FOUND - The specified service does not exist. +. +Language=Russian +ERROR_SERVICE_NOT_FOUND - Указанная служба не существует. +. + +MessageId=1244 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_AUTHENTICATED +Language=English +ERROR_NOT_AUTHENTICATED - The operation being requested was not performed because the user has not been authenticated. +. +Language=Russian +ERROR_NOT_AUTHENTICATED - Запрошенная операция не была выполнена, так как пользователь не зарегистрирован. +. + +MessageId=1245 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_LOGGED_ON +Language=English +ERROR_NOT_LOGGED_ON - The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist. +. +Language=Russian +ERROR_NOT_LOGGED_ON - Запрошенная операция не была выполнена, так как пользователь не выполнил вход в сеть. Указанная служба не существует. +. + +MessageId=1246 +Severity=Success +Facility=System +SymbolicName=ERROR_CONTINUE +Language=English +ERROR_CONTINUE - Continue with work in progress. +. +Language=Russian +ERROR_CONTINUE - Требуется продолжить выполняющуюся операцию. +. + +MessageId=1247 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_INITIALIZED +Language=English +ERROR_ALREADY_INITIALIZED - An attempt was made to perform an initialization operation when initialization has already been completed. +. +Language=Russian +ERROR_ALREADY_INITIALIZED - Попытка выполнить операцию инициализации, которая уже проведена. +. + +MessageId=1248 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_MORE_DEVICES +Language=English +ERROR_NO_MORE_DEVICES - No more local devices. +. +Language=Russian +ERROR_NO_MORE_DEVICES - Больше локальных устройств не найдено. +. + +MessageId=1249 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_SITE +Language=English +ERROR_NO_SUCH_SITE - The specified site does not exist. +. +Language=Russian +ERROR_NO_SUCH_SITE - Указанный сайт не существует. +. + +MessageId=1250 +Severity=Success +Facility=System +SymbolicName=ERROR_DOMAIN_CONTROLLER_EXISTS +Language=English +ERROR_DOMAIN_CONTROLLER_EXISTS - A domain controller with the specified name already exists. +. +Language=Russian +ERROR_DOMAIN_CONTROLLER_EXISTS - Контроллер домена с указанным именем уже существует. +. + +MessageId=1251 +Severity=Success +Facility=System +SymbolicName=ERROR_ONLY_IF_CONNECTED +Language=English +ERROR_ONLY_IF_CONNECTED - This operation is supported only when you are connected to the server. +. +Language=Russian +ERROR_ONLY_IF_CONNECTED - Эта операция поддерживается только при наличии подключения к серверу. +. + +MessageId=1252 +Severity=Success +Facility=System +SymbolicName=ERROR_OVERRIDE_NOCHANGES +Language=English +ERROR_OVERRIDE_NOCHANGES - The group policy framework should call the extension even if there are no changes. +. +Language=Russian +ERROR_OVERRIDE_NOCHANGES - Основной модуль групповой политики должен вызвать расширение даже в случае отсутствия изменений. +. + +MessageId=1253 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_USER_PROFILE +Language=English +ERROR_BAD_USER_PROFILE - The specified user does not have a valid profile. +. +Language=Russian +ERROR_BAD_USER_PROFILE - Выбранный пользователь не имеет допустимого профиля. +. + +MessageId=1254 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SUPPORTED_ON_SBS +Language=English +ERROR_NOT_SUPPORTED_ON_SBS - This operation is not supported on a computer running Windows Server 2003 for Small Business Server. +. +Language=Russian +ERROR_NOT_SUPPORTED_ON_SBS - Эта операция не поддерживается на Windows Server 2003 for Small Business Server. +. + +MessageId=1255 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVER_SHUTDOWN_IN_PROGRESS +Language=English +ERROR_SERVER_SHUTDOWN_IN_PROGRESS - The server machine is shutting down. +. +Language=Russian +ERROR_SERVER_SHUTDOWN_IN_PROGRESS - Идет завершение работы компьютера-сервера. +. + +MessageId=1256 +Severity=Success +Facility=System +SymbolicName=ERROR_HOST_DOWN +Language=English +ERROR_HOST_DOWN - The remote system is not available. For information about network troubleshooting, see Windows Help. +. +Language=Russian +ERROR_HOST_DOWN - Удаленная система недоступна. За информацией о разрешении проблем в сети, обратитесь к справочной системе Windows. +. + +MessageId=1257 +Severity=Success +Facility=System +SymbolicName=ERROR_NON_ACCOUNT_SID +Language=English +ERROR_NON_ACCOUNT_SID - The security identifier provided is not from an account domain. +. +Language=Russian +ERROR_NON_ACCOUNT_SID - Был указан идентификатор безопасности не из того домена. +. + +MessageId=1258 +Severity=Success +Facility=System +SymbolicName=ERROR_NON_DOMAIN_SID +Language=English +ERROR_NON_DOMAIN_SID - The security identifier provided does not have a domain component. +. +Language=Russian +ERROR_NON_DOMAIN_SID - В указанном идентификаторе безопасности отсутствует компонент для домена. +. + +MessageId=1259 +Severity=Success +Facility=System +SymbolicName=ERROR_APPHELP_BLOCK +Language=English +ERROR_APPHELP_BLOCK - AppHelp dialog canceled thus preventing the application from starting. +. +Language=Russian +ERROR_APPHELP_BLOCK - Окно AppHelp закрыто, из-за чего приложение не было запущено. +. + +MessageId=1260 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCESS_DISABLED_BY_POLICY +Language=English +ERROR_ACCESS_DISABLED_BY_POLICY - Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator. +. +Language=Russian +ERROR_ACCESS_DISABLED_BY_POLICY - Эта программа заблокирована групповой политикой. За дополнительными сведениями обращайтесь к системному администратору. +. + +MessageId=1261 +Severity=Success +Facility=System +SymbolicName=ERROR_REG_NAT_CONSUMPTION +Language=English +ERROR_REG_NAT_CONSUMPTION - A program attempt to use an invalid register value. Normally caused by an uninitialized register. This error is Itanium specific. +. +Language=Russian +ERROR_REG_NAT_CONSUMPTION - Попытка программы использовать неправильное значение регистра. Обычно это вызвано неинициализированным регистром. +. + +MessageId=1262 +Severity=Success +Facility=System +SymbolicName=ERROR_CSCSHARE_OFFLINE +Language=English +ERROR_CSCSHARE_OFFLINE - The share is currently offline or does not exist. +. +Language=Russian +ERROR_CSCSHARE_OFFLINE - Общий ресурс недоступен или не существует. +. + +MessageId=1263 +Severity=Success +Facility=System +SymbolicName=ERROR_PKINIT_FAILURE +Language=English +ERROR_PKINIT_FAILURE - The kerberos protocol encountered an error while validating the KDC certificate during smartcard logon. +. +Language=Russian +ERROR_PKINIT_FAILURE - Ошибка протокола Kerberos при проверке сертификата KDC во время входа в систему со смарт-картой. Дополнительные сведения см. в журнале системных событий. +. + +MessageId=1264 +Severity=Success +Facility=System +SymbolicName=ERROR_SMARTCARD_SUBSYSTEM_FAILURE +Language=English +ERROR_SMARTCARD_SUBSYSTEM_FAILURE - The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. +. +Language=Russian +ERROR_SMARTCARD_SUBSYSTEM_FAILURE - Ошибка протокола Kerberos при попытке использовать подсистему для смарт-карт. +. + +MessageId=1265 +Severity=Success +Facility=System +SymbolicName=ERROR_DOWNGRADE_DETECTED +Language=English +ERROR_DOWNGRADE_DETECTED - The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you. +. +Language=Russian +ERROR_DOWNGRADE_DETECTED - Системе не удается установить связь с контроллером домена, чтобы обработать запрос на проверку подлинности. Попробуйте еще раз позже. +. + +MessageId=1266 +Severity=Success +Facility=System +SymbolicName=SEC_E_SMARTCARD_CERT_REVOKED +Language=English +SEC_E_SMARTCARD_CERT_REVOKED - The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log. +. + +MessageId=1267 +Severity=Success +Facility=System +SymbolicName=SEC_E_ISSUING_CA_UNTRUSTED +Language=English +SEC_E_ISSUING_CA_UNTRUSTED - An untrusted certificate authority was detected while processing the smartcard certificate used for authentication. Please contact your system administrator. +. + +MessageId=1268 +Severity=Success +Facility=System +SymbolicName=SEC_E_REVOCATION_OFFLINE_C +Language=English +SEC_E_REVOCATION_OFFLINE_C - The revocation status of the smartcard certificate used for authentication could not be determined. Please contact your system administrator. +. + +MessageId=1269 +Severity=Success +Facility=System +SymbolicName=SEC_E_PKINIT_CLIENT_FAILUR +Language=English +SEC_E_PKINIT_CLIENT_FAILUR - The smartcard certificate used for authentication was not trusted. Please contact your system administrator. +. + +MessageId=1270 +Severity=Success +Facility=System +SymbolicName=SEC_E_SMARTCARD_CERT_EXPIRED +Language=English +SEC_E_SMARTCARD_CERT_EXPIRED - The smartcard certificate used for authentication has expired. Please contact your system administrator. +. + +MessageId=1271 +Severity=Success +Facility=System +SymbolicName=ERROR_MACHINE_LOCKED +Language=English +ERROR_MACHINE_LOCKED - The machine is locked and cannot be shut down without the force option. +. +Language=Russian +ERROR_MACHINE_LOCKED - Компьютер заблокирован и не может завершить работу без режима принудительного завершения. +. + +MessageId=1273 +Severity=Success +Facility=System +SymbolicName=ERROR_CALLBACK_SUPPLIED_INVALID_DATA +Language=English +ERROR_CALLBACK_SUPPLIED_INVALID_DATA - An application-defined callback gave invalid data when called. +. +Language=Russian +ERROR_CALLBACK_SUPPLIED_INVALID_DATA - Определенный в приложении ответный вызов вернул неверные данные. +. + +MessageId=1274 +Severity=Success +Facility=System +SymbolicName=ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED +Language=English +ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED - The group policy framework should call the extension in the synchronous foreground policy refresh. +. +Language=Russian +ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED - Система групповой политики должна вызывать расширения в синхронном, не фоновом режиме обновления. +. + +MessageId=1275 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVER_BLOCKED +Language=English +ERROR_DRIVER_BLOCKED - This driver has been blocked from loading. +. +Language=Russian +ERROR_DRIVER_BLOCKED - Загрузка драйвера была заблокирована. +. + +MessageId=1276 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_IMPORT_OF_NON_DLL +Language=English +ERROR_INVALID_IMPORT_OF_NON_DLL - A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image. +. +Language=Russian +ERROR_INVALID_IMPORT_OF_NON_DLL - Библиотека, на которую ссылается модуль, не является библиотекой динамической компоновки (DLL) или исполняемым модулем. +. + +MessageId=1277 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCESS_DISABLED_WEBBLADE +Language=English +ERROR_ACCESS_DISABLED_WEBBLADE - Windows cannot open this program since it has been disabled. +. +Language=Russian +ERROR_ACCESS_DISABLED_WEBBLADE - Windows не удается запустить эту программу, так как она отключена. +. + +MessageId=1278 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER +Language=English +ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER - Windows cannot open this program because the license enforcement system has been tampered with or become corrupted. +. +Language=Russian +ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER - Windows не удается открыть эту программу, так как система учета лицензий изменена или повреждена. +. + +MessageId=1279 +Severity=Success +Facility=System +SymbolicName=ERROR_RECOVERY_FAILURE +Language=English +ERROR_RECOVERY_FAILURE - A transaction recovery failed. +. +Language=Russian +ERROR_RECOVERY_FAILURE - Неудача при восстановлении транзакции. +. + +MessageId=1280 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_FIBER +Language=English +ERROR_ALREADY_FIBER - The current thread has already been converted to a fiber. +. +Language=Russian +ERROR_ALREADY_FIBER - Текущий поток уже преобразован в нить. +. + +MessageId=1281 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_THREAD +Language=English +ERROR_ALREADY_THREAD - The current thread has already been converted from a fiber. +. +Language=Russian +ERROR_ALREADY_THREAD - Текущий поток уже преобразован из нити. +. + +MessageId=1282 +Severity=Success +Facility=System +SymbolicName=ERROR_STACK_BUFFER_OVERRUN +Language=English +ERROR_STACK_BUFFER_OVERRUN - The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application. +. +Language=Russian +ERROR_STACK_BUFFER_OVERRUN - Обнаружено переполнение стекового буфера в данном приложении. Это переполнение может позволить злоумышленнику получить управление над данным приложением. +. + +MessageId=1283 +Severity=Success +Facility=System +SymbolicName=ERROR_PARAMETER_QUOTA_EXCEEDED +Language=English +ERROR_PARAMETER_QUOTA_EXCEEDED - Data present in one of the parameters is more than the function can operate on. +. +Language=Russian +ERROR_PARAMETER_QUOTA_EXCEEDED - В одном из параметров задано больше данных, чем эта функция может обработать. +. + +MessageId=1284 +Severity=Success +Facility=System +SymbolicName=ERROR_DEBUGGER_INACTIVE +Language=English +ERROR_DEBUGGER_INACTIVE - An attempt to do an operation on a debug object failed because the object is in the process of being deleted. +. +Language=Russian +ERROR_DEBUGGER_INACTIVE - Не удалось выполнить операцию над объектом отладки, так как он удаляется. +. + +MessageId=1285 +Severity=Success +Facility=System +SymbolicName=ERROR_DELAY_LOAD_FAILED +Language=English +ERROR_DELAY_LOAD_FAILED - An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed. +. +Language=Russian +ERROR_DELAY_LOAD_FAILED - Не удалось загрузить с задержкой библиотеку DLL или получить из нее адрес функции. +. + +MessageId=1286 +Severity=Success +Facility=System +SymbolicName=ERROR_VDM_DISALLOWED +Language=English +ERROR_VDM_DISALLOWED - %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator. +. +Language=Russian +ERROR_VDM_DISALLOWED - "%1" является 16-битным приложением. Вы не имеете прав доступа для выполнения 16-битных приложений. Проверьте ваши права доступа с вашим системным администратором. +. + +MessageId=1287 +Severity=Success +Facility=System +SymbolicName=ERROR_UNIDENTIFIED_ERROR +Language=English +ERROR_UNIDENTIFIED_ERROR - Insufficient information exists to identify the cause of failure. +. +Language=Russian +ERROR_UNIDENTIFIED_ERROR - Недостаточно сведений для установки причины сбоя. +. + +MessageId=1288 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_BANDWIDTH_PARAMETERS +Language=English +ERROR_INVALID_BANDWIDTH_PARAMETERS - An invalid budget or period parameter was specified. +. +Language=Russian +ERROR_INVALID_BANDWIDTH_PARAMETERS - В динамическую функцию C передан неверный параметр. +. + +MessageId=1289 +Severity=Success +Facility=System +SymbolicName=ERROR_AFFINITY_NOT_COMPATIBLE +Language=English +ERROR_AFFINITY_NOT_COMPATIBLE - An attempt was made to join a thread to a reserve whose affinity did not intersect the reserve affinity or an attempt was made to associate a process with a reserve whose affinity did not intersect the reserve affinity. +. +Language=Russian +ERROR_AFFINITY_NOT_COMPATIBLE - Операция выполнена за пределами допустимой длины данных файла. +. + +MessageId=1290 +Severity=Success +Facility=System +SymbolicName=ERROR_THREAD_ALREADY_IN_RESERVE +Language=English +ERROR_THREAD_ALREADY_IN_RESERVE - An attempt was made to join a thread to a reserve which was already joined to another reserve. +. +Language=Russian +ERROR_THREAD_ALREADY_IN_RESERVE - Не удалось запустить эту службу, так как одна или несколько служб одного процесса имеют несовместимый параметр типа SID службы. Служба с ограниченным типом SID может сосуществовать в одном и том же процессе только с другими службами с ограниченным типом SID. Если тип SID для этой службы только что настроен, необходимо перезапустить хост-процесс, чтобы запустить эту службу. +. + +MessageId=1291 +Severity=Success +Facility=System +SymbolicName=ERROR_THREAD_NOT_IN_RESERVE +Language=English +ERROR_THREAD_NOT_IN_RESERVE - An attempt was made to disjoin a thread from a reserve, but the thread was not joined to the reserve. +. +Language=Russian +ERROR_THREAD_NOT_IN_RESERVE - Процесс, использующий драйвер для этого устройства, прерван. +. + +MessageId=1292 +Severity=Success +Facility=System +SymbolicName=ERROR_THREAD_PROCESS_IN_RESERVE +Language=English +ERROR_THREAD_PROCESS_IN_RESERVE - An attempt was made to disjoin a thread from a reserve whose process is associated with a reserve. +. +Language=Russian +ERROR_THREAD_PROCESS_IN_RESERVE - Операция попыталась превысить установленный предел. +. + +MessageId=1293 +Severity=Success +Facility=System +SymbolicName=ERROR_PROCESS_ALREADY_IN_RESERVE +Language=English +ERROR_PROCESS_ALREADY_IN_RESERVE - An attempt was made to associate a process with a reserve that was already associated with a reserve. +. +Language=Russian +ERROR_PROCESS_ALREADY_IN_RESERVE - Целевой процесс или процесс целевого потока является защищенным. +. + +MessageId=1294 +Severity=Success +Facility=System +SymbolicName=ERROR_PROCESS_NOT_IN_RESERVE +Language=English +ERROR_PROCESS_NOT_IN_RESERVE - An attempt was made to disassociate a process from a reserve, but the process did not have an associated reserve. +. +Language=Russian +ERROR_PROCESS_NOT_IN_RESERVE - Клиент уведомлений службы значительно отстает от текущего состояния служб в системе. +. + +MessageId=1295 +Severity=Success +Facility=System +SymbolicName=ERROR_PROCESS_THREADS_IN_RESERVE +Language=English +ERROR_PROCESS_THREADS_IN_RESERVE - An attempt was made to associate a process with a reserve, but the process contained thread joined to a reserve. +. +Language=Russian +ERROR_PROCESS_THREADS_IN_RESERVE - Требуемая операция с файлами завершилась сбоем из-за превышения квоты на использование места на диске. Чтобы освободить место на диске, переместите файлы в другое место или удалите ненужные файлы. За дополнительными сведениями обратитесь к системному администратору. +. + +MessageId=1296 +Severity=Success +Facility=System +SymbolicName=ERROR_AFFINITY_NOT_SET_IN_RESERVE +Language=English +ERROR_AFFINITY_NOT_SET_IN_RESERVE - An attempt was made to set the affinity of a thread or a process, but the thread or process was joined or associated with a reserve. +. +Language=Russian +ERROR_AFFINITY_NOT_SET_IN_RESERVE - Требуемая операция с файлами завершилась сбоем, так как политика хранилища блокирует этот тип файлов. За дополнительными сведениями обратитесь к системному администратору. +. + +MessageId=1297 +Severity=Success +Facility=System +SymbolicName=ERROR_IMPLEMENTATION_LIMIT +Language=English +ERROR_IMPLEMENTATION_LIMIT - An operation attempted to exceed an implementation-defined limit. +. +Language=Russian +ERROR_IMPLEMENTATION_LIMIT - Права, необходимые службе для правильной работы, не существуют в конфигурации учетной записи службы. +. + +MessageId=1298 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CACHE_ONLY +Language=English +ERROR_DS_CACHE_ONLY - The requested object is for internal DS operations only. +. +Language=Russian +ERROR_DS_CACHE_ONLY - Поток, задействованный в данной операции, не отвечает. +. + +MessageId=1300 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_ALL_ASSIGNED +Language=English +ERROR_NOT_ALL_ASSIGNED - Not all privileges referenced are assigned to the caller. +. +Language=Russian +ERROR_NOT_ALL_ASSIGNED - Вызывающая сторона не обладает всеми необходимыми правами доступа. +. + +MessageId=1301 +Severity=Success +Facility=System +SymbolicName=ERROR_SOME_NOT_MAPPED +Language=English +ERROR_SOME_NOT_MAPPED - Some mapping between account names and security IDs was not done. +. +Language=Russian +ERROR_SOME_NOT_MAPPED - Некоторые соответствия между именами пользователей и идентификаторами безопасности не были установлены. +. + +MessageId=1302 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_QUOTAS_FOR_ACCOUNT +Language=English +ERROR_NO_QUOTAS_FOR_ACCOUNT - No system quota limits are specifically set for this account. +. +Language=Russian +ERROR_NO_QUOTAS_FOR_ACCOUNT - Системные квоты для данной учетной записи не установлены. +. + +MessageId=1303 +Severity=Success +Facility=System +SymbolicName=ERROR_LOCAL_USER_SESSION_KEY +Language=English +ERROR_LOCAL_USER_SESSION_KEY - No encryption key is available. A well-known encryption key was returned. +. +Language=Russian +ERROR_LOCAL_USER_SESSION_KEY - Ключ шифрования недоступен. Возвращен общедоступный ключ. +. + +MessageId=1304 +Severity=Success +Facility=System +SymbolicName=ERROR_NULL_LM_PASSWORD +Language=English +ERROR_NULL_LM_PASSWORD - The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string. +. +Language=Russian +ERROR_NULL_LM_PASSWORD - Пароль слишком сложен и не может быть преобразован в пароль LAN Manager. Вместо пароля LAN Manager была возвращена пустая строка. +. + +MessageId=1305 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_REVISION +Language=English +ERROR_UNKNOWN_REVISION - The revision level is unknown. +. +Language=Russian +ERROR_UNKNOWN_REVISION - Уровень редакции неизвестен. +. + +MessageId=1306 +Severity=Success +Facility=System +SymbolicName=ERROR_REVISION_MISMATCH +Language=English +ERROR_REVISION_MISMATCH - Indicates two revision levels are incompatible. +. +Language=Russian +ERROR_REVISION_MISMATCH - Два уровня редакции являются несовместимыми. +. + +MessageId=1307 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_OWNER +Language=English +ERROR_INVALID_OWNER - This security ID may not be assigned as the owner of this object. +. +Language=Russian +ERROR_INVALID_OWNER - Этот идентификатор безопасности не может быть назначен владельцем этого объекта. +. + +MessageId=1308 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PRIMARY_GROUP +Language=English +ERROR_INVALID_PRIMARY_GROUP - This security ID may not be assigned as the primary group of an object. +. +Language=Russian +ERROR_INVALID_PRIMARY_GROUP - Этот идентификатор безопасности не может быть назначен основной группой объекта. +. + +MessageId=1309 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_IMPERSONATION_TOKEN +Language=English +ERROR_NO_IMPERSONATION_TOKEN - An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. +. +Language=Russian +ERROR_NO_IMPERSONATION_TOKEN - Предпринята попытка использования элемента олицетворения потоком команд, который в данное время не олицетворяет клиента. +. + +MessageId=1310 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_DISABLE_MANDATORY +Language=English +ERROR_CANT_DISABLE_MANDATORY - The group may not be disabled. +. +Language=Russian +ERROR_CANT_DISABLE_MANDATORY - Эту группу невозможно отключить. +. + +MessageId=1311 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_LOGON_SERVERS +Language=English +ERROR_NO_LOGON_SERVERS - There are currently no logon servers available to service the logon request. +. +Language=Russian +ERROR_NO_LOGON_SERVERS - Отсутствуют серверы, которые могли бы обработать запрос на вход в сеть. +. + +MessageId=1312 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_LOGON_SESSION +Language=English +ERROR_NO_SUCH_LOGON_SESSION - A specified logon session does not exist. It may already have been terminated. +. +Language=Russian +ERROR_NO_SUCH_LOGON_SESSION - Указанный сеанс работы не существует. Возможно, он уже завершен. +. + +MessageId=1313 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_PRIVILEGE +Language=English +ERROR_NO_SUCH_PRIVILEGE - A specified privilege does not exist. +. +Language=Russian +ERROR_NO_SUCH_PRIVILEGE - Указанная привилегия не существует. +. + +MessageId=1314 +Severity=Success +Facility=System +SymbolicName=ERROR_PRIVILEGE_NOT_HELD +Language=English +ERROR_PRIVILEGE_NOT_HELD - A required privilege is not held by the client. +. +Language=Russian +ERROR_PRIVILEGE_NOT_HELD - Клиент не обладает требуемыми правами. +. + +MessageId=1315 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ACCOUNT_NAME +Language=English +ERROR_INVALID_ACCOUNT_NAME - The name provided is not a properly formed account name. +. +Language=Russian +ERROR_INVALID_ACCOUNT_NAME - Указанное имя не является корректным именем пользователя. +. + +MessageId=1316 +Severity=Success +Facility=System +SymbolicName=ERROR_USER_EXISTS +Language=English +ERROR_USER_EXISTS - The specified user already exists. +. +Language=Russian +ERROR_USER_EXISTS - Указанная учетная запись уже существует. +. + +MessageId=1317 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_USER +Language=English +ERROR_NO_SUCH_USER - The specified user does not exist. +. +Language=Russian +ERROR_NO_SUCH_USER - Указанная учетная запись не существует. +. + +MessageId=1318 +Severity=Success +Facility=System +SymbolicName=ERROR_GROUP_EXISTS +Language=English +ERROR_GROUP_EXISTS - The specified group already exists. +. +Language=Russian +ERROR_GROUP_EXISTS - Указанная группа уже существует. +. + +MessageId=1319 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_GROUP +Language=English +ERROR_NO_SUCH_GROUP - The specified group does not exist. +. +Language=Russian +ERROR_NO_SUCH_GROUP - Указанная группа не существует. +. + +MessageId=1320 +Severity=Success +Facility=System +SymbolicName=ERROR_MEMBER_IN_GROUP +Language=English +ERROR_MEMBER_IN_GROUP - Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member. +. +Language=Russian +ERROR_MEMBER_IN_GROUP - Указанный пользователь уже является членом заданной группы, либо группа не может быть удалена, так как содержит как минимум одного пользователя. +. + +MessageId=1321 +Severity=Success +Facility=System +SymbolicName=ERROR_MEMBER_NOT_IN_GROUP +Language=English +ERROR_MEMBER_NOT_IN_GROUP - The specified user account is not a member of the specified group account. +. +Language=Russian +ERROR_MEMBER_NOT_IN_GROUP - Указанный пользователь не является членом заданной группы. +. + +MessageId=1322 +Severity=Success +Facility=System +SymbolicName=ERROR_LAST_ADMIN +Language=English +ERROR_LAST_ADMIN - The last remaining administration account cannot be disabled or deleted. +. +Language=Russian +ERROR_LAST_ADMIN - Эта операция запрещена, так как может привести к отключению, удалению или невозможности входа учетной записи администратора. +. + +MessageId=1323 +Severity=Success +Facility=System +SymbolicName=ERROR_WRONG_PASSWORD +Language=English +ERROR_WRONG_PASSWORD - Unable to update the password. The value provided as the current password is incorrect. +. +Language=Russian +ERROR_WRONG_PASSWORD - Не удается обновить пароль. Текущий пароль был задан неверно. +. + +MessageId=1324 +Severity=Success +Facility=System +SymbolicName=ERROR_ILL_FORMED_PASSWORD +Language=English +ERROR_ILL_FORMED_PASSWORD - Unable to update the password. The value provided for the new password contains values that are not allowed in passwords. +. +Language=Russian +ERROR_ILL_FORMED_PASSWORD - Не удается обновить пароль. Новый пароль содержит недопустимые символы. +. + +MessageId=1325 +Severity=Success +Facility=System +SymbolicName=ERROR_PASSWORD_RESTRICTION +Language=English +ERROR_PASSWORD_RESTRICTION - Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain. +. +Language=Russian +ERROR_PASSWORD_RESTRICTION - Не удается обновить пароль. Введенный пароль не обеспечивает требований домена к длине пароля, его сложности или истории обновления. +. + +MessageId=1326 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGON_FAILURE +Language=English +ERROR_LOGON_FAILURE - Logon failure: unknown user name or bad password. +. +Language=Russian +ERROR_LOGON_FAILURE - Неверное имя пользователя или пароль. +. + +MessageId=1327 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCOUNT_RESTRICTION +Language=English +ERROR_ACCOUNT_RESTRICTION - Logon failure: user account restriction. Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced. +. +Language=Russian +ERROR_ACCOUNT_RESTRICTION - Вход этого пользователя в систему не выполнен из-за ограничений учетной записи. Например: пустые пароли не разрешены, ограничено число входов или включено ограничение политики. +. + +MessageId=1328 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LOGON_HOURS +Language=English +ERROR_INVALID_LOGON_HOURS - Logon failure: account logon time restriction violation. +. +Language=Russian +ERROR_INVALID_LOGON_HOURS - Вы не можете войти в систему сейчас из-за ограничений вашей учетной записи. +. + +MessageId=1329 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_WORKSTATION +Language=English +ERROR_INVALID_WORKSTATION - Logon failure: user not allowed to log on to this computer. +. +Language=Russian +ERROR_INVALID_WORKSTATION - Этому пользователю не разрешен вход в систему на этом компьютере. +. + +MessageId=1330 +Severity=Success +Facility=System +SymbolicName=ERROR_PASSWORD_EXPIRED +Language=English +ERROR_PASSWORD_EXPIRED - Logon failure: the specified account password has expired. +. +Language=Russian +ERROR_PASSWORD_EXPIRED - Срок действия пароля для этой учетной записи истек. +. + +MessageId=1331 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCOUNT_DISABLED +Language=English +ERROR_ACCOUNT_DISABLED - Logon failure: account currently disabled. +. +Language=Russian +ERROR_ACCOUNT_DISABLED - Вход этого пользователя в систему невозможен, так как эта учетная запись сейчас отключена. +. + +MessageId=1332 +Severity=Success +Facility=System +SymbolicName=ERROR_NONE_MAPPED +Language=English +ERROR_NONE_MAPPED - No mapping between account names and security IDs was done. +. +Language=Russian +ERROR_NONE_MAPPED - Сопоставление между именами пользователей и идентификаторами безопасности не было произведено. +. + +MessageId=1333 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_LUIDS_REQUESTED +Language=English +ERROR_TOO_MANY_LUIDS_REQUESTED - Too many local user identifiers (LUIDs) were requested at one time. +. +Language=Russian +ERROR_TOO_MANY_LUIDS_REQUESTED - Одновременно запрошено слишком много локальных кодов пользователей. +. + +MessageId=1334 +Severity=Success +Facility=System +SymbolicName=ERROR_LUIDS_EXHAUSTED +Language=English +ERROR_LUIDS_EXHAUSTED - No more local user identifiers (LUIDs) are available. +. +Language=Russian +ERROR_LUIDS_EXHAUSTED - Дополнительные локальные коды пользователей недоступны. +. + +MessageId=1335 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SUB_AUTHORITY +Language=English +ERROR_INVALID_SUB_AUTHORITY - The subauthority part of a security ID is invalid for this particular use. +. +Language=Russian +ERROR_INVALID_SUB_AUTHORITY - Часть "subauthority" идентификатора безопасности недействительна для этого конкретного использования. +. + +MessageId=1336 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ACL +Language=English +ERROR_INVALID_ACL - The access control list (ACL) structure is invalid. +. +Language=Russian +ERROR_INVALID_ACL - Список управления доступом (ACL) имеет неверную структуру. +. + +MessageId=1337 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SID +Language=English +ERROR_INVALID_SID - The security ID structure is invalid. +. +Language=Russian +ERROR_INVALID_SID - Идентификатор безопасности имеет неверную структуру. +. + +MessageId=1338 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SECURITY_DESCR +Language=English +ERROR_INVALID_SECURITY_DESCR - The security descriptor structure is invalid. +. +Language=Russian +ERROR_INVALID_SECURITY_DESCR - Дескриптор защиты данных имеет неверную структуру. +. + +MessageId=1340 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_INHERITANCE_ACL +Language=English +ERROR_BAD_INHERITANCE_ACL - The inherited access control list (ACL) or access control entry (ACE) could not be built. +. +Language=Russian +ERROR_BAD_INHERITANCE_ACL - Не удается построить список управления доступом (ACL) или элемент этого списка (ACE). +. + +MessageId=1341 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVER_DISABLED +Language=English +ERROR_SERVER_DISABLED - The server is currently disabled. +. +Language=Russian +ERROR_SERVER_DISABLED - Сервер в настоящее время отключен. +. + +MessageId=1342 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVER_NOT_DISABLED +Language=English +ERROR_SERVER_NOT_DISABLED - The server is currently enabled. +. +Language=Russian +ERROR_SERVER_NOT_DISABLED - Сервер в настоящее время включен. +. + +MessageId=1343 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ID_AUTHORITY +Language=English +ERROR_INVALID_ID_AUTHORITY - The value provided was an invalid value for an identifier authority. +. +Language=Russian +ERROR_INVALID_ID_AUTHORITY - Указано недопустимое значение для защитного кода. +. + +MessageId=1344 +Severity=Success +Facility=System +SymbolicName=ERROR_ALLOTTED_SPACE_EXCEEDED +Language=English +ERROR_ALLOTTED_SPACE_EXCEEDED - No more memory is available for security information updates. +. +Language=Russian +ERROR_ALLOTTED_SPACE_EXCEEDED - Недостаточно памяти для обновления сведений, относящихся к защите данных. +. + +MessageId=1345 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_GROUP_ATTRIBUTES +Language=English +ERROR_INVALID_GROUP_ATTRIBUTES - The specified attributes are invalid, or incompatible with the attributes for the group as a whole. +. +Language=Russian +ERROR_INVALID_GROUP_ATTRIBUTES - Указанные атрибуты неверны или несовместимы с атрибутами группы в целом. +. + +MessageId=1346 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_IMPERSONATION_LEVEL +Language=English +ERROR_BAD_IMPERSONATION_LEVEL - Either a required impersonation level was not provided, or the provided impersonation level is invalid. +. +Language=Russian +ERROR_BAD_IMPERSONATION_LEVEL - Требуемый уровень олицетворения не обеспечен, или обеспеченный уровень неверен. +. + +MessageId=1347 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_OPEN_ANONYMOUS +Language=English +ERROR_CANT_OPEN_ANONYMOUS - Cannot open an anonymous level security token. +. +Language=Russian +ERROR_CANT_OPEN_ANONYMOUS - Не удается открыть токен безопасности анонимного уровня. +. + +MessageId=1348 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_VALIDATION_CLASS +Language=English +ERROR_BAD_VALIDATION_CLASS - The validation information class requested was invalid. +. +Language=Russian +ERROR_BAD_VALIDATION_CLASS - Запрошен неправильный класс сведений для проверки. +. + +MessageId=1349 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_TOKEN_TYPE +Language=English +ERROR_BAD_TOKEN_TYPE - The type of the token is inappropriate for its attempted use. +. +Language=Russian +ERROR_BAD_TOKEN_TYPE - Тип токена не соответствует выполняемой операции. +. + +MessageId=1350 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SECURITY_ON_OBJECT +Language=English +ERROR_NO_SECURITY_ON_OBJECT - Unable to perform a security operation on an object that has no associated security. +. +Language=Russian +ERROR_NO_SECURITY_ON_OBJECT - Операция, связанная с защитой данных, не может быть выполнена для незащищенного объекта. +. + +MessageId=1351 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_ACCESS_DOMAIN_INFO +Language=English +ERROR_CANT_ACCESS_DOMAIN_INFO - Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied. +. +Language=Russian +ERROR_CANT_ACCESS_DOMAIN_INFO - Не удалось получить данные о конфигурации от контроллера домена. Либо он отключен, либо к нему нет доступа. +. + +MessageId=1352 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SERVER_STATE +Language=English +ERROR_INVALID_SERVER_STATE - The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation. +. +Language=Russian +ERROR_INVALID_SERVER_STATE - Диспетчер защиты (SAM) или локальный сервер (LSA) не смог выполнить требуемую операцию. +. + +MessageId=1353 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DOMAIN_STATE +Language=English +ERROR_INVALID_DOMAIN_STATE - The domain was in the wrong state to perform the security operation. +. +Language=Russian +ERROR_INVALID_DOMAIN_STATE - Состояние домена не позволило выполнить нужную операцию. +. + +MessageId=1354 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DOMAIN_ROLE +Language=English +ERROR_INVALID_DOMAIN_ROLE - This operation is only allowed for the Primary Domain Controller of the domain. +. +Language=Russian +ERROR_INVALID_DOMAIN_ROLE - Операция разрешена только для основного контроллера домена. +. + +MessageId=1355 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_DOMAIN +Language=English +ERROR_NO_SUCH_DOMAIN - The specified domain either does not exist or could not be contacted. +. +Language=Russian +ERROR_NO_SUCH_DOMAIN - Указанный домен не существует или к нему невозможно подключиться. +. + +MessageId=1356 +Severity=Success +Facility=System +SymbolicName=ERROR_DOMAIN_EXISTS +Language=English +ERROR_DOMAIN_EXISTS - The specified domain already exists. +. +Language=Russian +ERROR_DOMAIN_EXISTS - Указанный домен уже существует. +. + +MessageId=1357 +Severity=Success +Facility=System +SymbolicName=ERROR_DOMAIN_LIMIT_EXCEEDED +Language=English +ERROR_DOMAIN_LIMIT_EXCEEDED - An attempt was made to exceed the limit on the number of domains per server. +. +Language=Russian +ERROR_DOMAIN_LIMIT_EXCEEDED - Была сделана попытка превысить предел на число доменов, обслуживаемых одним сервером. +. + +MessageId=1358 +Severity=Success +Facility=System +SymbolicName=ERROR_INTERNAL_DB_CORRUPTION +Language=English +ERROR_INTERNAL_DB_CORRUPTION - Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk. +. +Language=Russian +ERROR_INTERNAL_DB_CORRUPTION - Не удается завершить требуемую операцию из-за сбоев в данных на диске или неустранимой ошибки носителя. +. + +MessageId=1359 +Severity=Success +Facility=System +SymbolicName=ERROR_INTERNAL_ERROR +Language=English +ERROR_INTERNAL_ERROR - An internal error occurred. +. +Language=Russian +ERROR_INTERNAL_ERROR - Внутренняя ошибка. +. + +MessageId=1360 +Severity=Success +Facility=System +SymbolicName=ERROR_GENERIC_NOT_MAPPED +Language=English +ERROR_GENERIC_NOT_MAPPED - Generic access types were contained in an access mask which should already be mapped to nongeneric types. +. +Language=Russian +ERROR_GENERIC_NOT_MAPPED - Универсальные типы доступа содержатся в маске доступа, которая должна была уже быть связана с нестандартными типами. +. + +MessageId=1361 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_DESCRIPTOR_FORMAT +Language=English +ERROR_BAD_DESCRIPTOR_FORMAT - A security descriptor is not in the right format (absolute or self-relative). +. +Language=Russian +ERROR_BAD_DESCRIPTOR_FORMAT - Дескриптор защиты имеет неверный формат. +. + +MessageId=1362 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_LOGON_PROCESS +Language=English +ERROR_NOT_LOGON_PROCESS - The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process. +. +Language=Russian +ERROR_NOT_LOGON_PROCESS - Выполнение запрошенной операции разрешено только для процессов входа в систему. Вызывающий процесс не зарегистрирован как процесс входа в систему. +. + +MessageId=1363 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGON_SESSION_EXISTS +Language=English +ERROR_LOGON_SESSION_EXISTS - Cannot start a new logon session with an ID that is already in use. +. +Language=Russian +ERROR_LOGON_SESSION_EXISTS - Запуск нового сеанса работы с уже использующимся кодом невозможен. +. + +MessageId=1364 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_PACKAGE +Language=English +ERROR_NO_SUCH_PACKAGE - A specified authentication package is unknown. +. +Language=Russian +ERROR_NO_SUCH_PACKAGE - Пакет проверки подлинности не опознан. +. + +MessageId=1365 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_LOGON_SESSION_STATE +Language=English +ERROR_BAD_LOGON_SESSION_STATE - The logon session is not in a state that is consistent with the requested operation. +. +Language=Russian +ERROR_BAD_LOGON_SESSION_STATE - Текущее состояние сеанса входа в систему не подходит для запрошенной операции. +. + +MessageId=1366 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGON_SESSION_COLLISION +Language=English +ERROR_LOGON_SESSION_COLLISION - The logon session ID is already in use. +. +Language=Russian +ERROR_LOGON_SESSION_COLLISION - Код сеанса входа в систему уже используется. +. + +MessageId=1367 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LOGON_TYPE +Language=English +ERROR_INVALID_LOGON_TYPE - A logon request contained an invalid logon type value. +. +Language=Russian +ERROR_INVALID_LOGON_TYPE - Режим входа в систему задан неверно. +. + +MessageId=1368 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_IMPERSONATE +Language=English +ERROR_CANNOT_IMPERSONATE - Unable to impersonate using a named pipe until data has been read from that pipe. +. +Language=Russian +ERROR_CANNOT_IMPERSONATE - Невозможно обеспечить олицетворение через именованный канал до тех пор, пока данные не считаны из этого канала. +. + +MessageId=1369 +Severity=Success +Facility=System +SymbolicName=ERROR_RXACT_INVALID_STATE +Language=English +ERROR_RXACT_INVALID_STATE - The transaction state of a registry subtree is incompatible with the requested operation. +. +Language=Russian +ERROR_RXACT_INVALID_STATE - Операция несовместима с состоянием транзакции для ветви реестра. +. + +MessageId=1370 +Severity=Success +Facility=System +SymbolicName=ERROR_RXACT_COMMIT_FAILURE +Language=English +ERROR_RXACT_COMMIT_FAILURE - An internal security database corruption has been encountered. +. +Language=Russian +ERROR_RXACT_COMMIT_FAILURE - База данных защиты повреждена. +. + +MessageId=1371 +Severity=Success +Facility=System +SymbolicName=ERROR_SPECIAL_ACCOUNT +Language=English +ERROR_SPECIAL_ACCOUNT - Cannot perform this operation on built-in accounts. +. +Language=Russian +ERROR_SPECIAL_ACCOUNT - Операция не предназначена для встроенных учетных записей. +. + +MessageId=1372 +Severity=Success +Facility=System +SymbolicName=ERROR_SPECIAL_GROUP +Language=English +ERROR_SPECIAL_GROUP - Cannot perform this operation on this built-in special group. +. +Language=Russian +ERROR_SPECIAL_GROUP - Операция не предназначена для встроенной специальной группы. +. + +MessageId=1373 +Severity=Success +Facility=System +SymbolicName=ERROR_SPECIAL_USER +Language=English +ERROR_SPECIAL_USER - Cannot perform this operation on this built-in special user. +. +Language=Russian +ERROR_SPECIAL_USER - Операция не предназначена для встроенного специального пользователя. +. + +MessageId=1374 +Severity=Success +Facility=System +SymbolicName=ERROR_MEMBERS_PRIMARY_GROUP +Language=English +ERROR_MEMBERS_PRIMARY_GROUP - The user cannot be removed from a group because the group is currently the user's primary group. +. +Language=Russian +ERROR_MEMBERS_PRIMARY_GROUP - Невозможно удалить пользователя из группы, так как она является для него основной. +. + +MessageId=1375 +Severity=Success +Facility=System +SymbolicName=ERROR_TOKEN_ALREADY_IN_USE +Language=English +ERROR_TOKEN_ALREADY_IN_USE - The token is already in use as a primary token. +. +Language=Russian +ERROR_TOKEN_ALREADY_IN_USE - Токен уже используется в качестве основного токена. +. + +MessageId=1376 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_ALIAS +Language=English +ERROR_NO_SUCH_ALIAS - The specified local group does not exist. +. +Language=Russian +ERROR_NO_SUCH_ALIAS - Указанная локальная группа не существует. +. + +MessageId=1377 +Severity=Success +Facility=System +SymbolicName=ERROR_MEMBER_NOT_IN_ALIAS +Language=English +ERROR_MEMBER_NOT_IN_ALIAS - The specified account name is not a member of the local group. +. +Language=Russian +ERROR_MEMBER_NOT_IN_ALIAS - Указанная учетная запись не входит в эту группу. +. + +MessageId=1378 +Severity=Success +Facility=System +SymbolicName=ERROR_MEMBER_IN_ALIAS +Language=English +ERROR_MEMBER_IN_ALIAS - The specified account name is already a member of the local group. +. +Language=Russian +ERROR_MEMBER_IN_ALIAS - Указанная учетная запись уже входит в эту группу. +. + +MessageId=1379 +Severity=Success +Facility=System +SymbolicName=ERROR_ALIAS_EXISTS +Language=English +ERROR_ALIAS_EXISTS - The specified local group already exists. +. +Language=Russian +ERROR_ALIAS_EXISTS - Указанная локальная группа уже существует. +. + +MessageId=1380 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGON_NOT_GRANTED +Language=English +ERROR_LOGON_NOT_GRANTED - Logon failure: the user has not been granted the requested logon type at this computer. +. +Language=Russian +ERROR_LOGON_NOT_GRANTED - Вход в систему не произведен: выбранный режим входа для данного пользователя на этом компьютере не предусмотрен. +. + +MessageId=1381 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_SECRETS +Language=English +ERROR_TOO_MANY_SECRETS - The maximum number of secrets that may be stored in a single system has been exceeded. +. +Language=Russian +ERROR_TOO_MANY_SECRETS - Достигнут предел по количеству защищенных данных/ресурсов для одной системы. +. + +MessageId=1382 +Severity=Success +Facility=System +SymbolicName=ERROR_SECRET_TOO_LONG +Language=English +ERROR_SECRET_TOO_LONG - The length of a secret exceeds the maximum length allowed. +. +Language=Russian +ERROR_SECRET_TOO_LONG - Длина защищенных данных превышает максимально возможную. +. + +MessageId=1383 +Severity=Success +Facility=System +SymbolicName=ERROR_INTERNAL_DB_ERROR +Language=English +ERROR_INTERNAL_DB_ERROR - The local security authority database contains an internal inconsistency. +. +Language=Russian +ERROR_INTERNAL_DB_ERROR - Локальная база данных защиты содержит внутренние несоответствия. +. + +MessageId=1384 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_CONTEXT_IDS +Language=English +ERROR_TOO_MANY_CONTEXT_IDS - During a logon attempt, the user's security context accumulated too many security IDs. +. +Language=Russian +ERROR_TOO_MANY_CONTEXT_IDS - При попытке входа в систему контекст безопасности пользователя накопил слишком много идентификаторов безопасности. +. + +MessageId=1385 +Severity=Success +Facility=System +SymbolicName=ERROR_LOGON_TYPE_NOT_GRANTED +Language=English +ERROR_LOGON_TYPE_NOT_GRANTED - Logon failure: the user has not been granted the requested logon type at this computer. +. +Language=Russian +ERROR_LOGON_TYPE_NOT_GRANTED - Вход в систему не произведен: выбранный режим входа для данного пользователя на этом компьютере не предусмотрен. +. + +MessageId=1386 +Severity=Success +Facility=System +SymbolicName=ERROR_NT_CROSS_ENCRYPTION_REQUIRED +Language=English +ERROR_NT_CROSS_ENCRYPTION_REQUIRED - A cross-encrypted password is necessary to change a user password. +. +Language=Russian +ERROR_NT_CROSS_ENCRYPTION_REQUIRED - Для смены пароля необходим зашифрованный пароль. +. + +MessageId=1387 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUCH_MEMBER +Language=English +ERROR_NO_SUCH_MEMBER - A new member could not be added to or removed from the local group because the member does not exist. +. +Language=Russian +ERROR_NO_SUCH_MEMBER - Не удалось добавить или удалить члена локальной группы, так как он не существует. +. + +MessageId=1388 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MEMBER +Language=English +ERROR_INVALID_MEMBER - A new member could not be added to a local group because the member has the wrong account type. +. +Language=Russian +ERROR_INVALID_MEMBER - Добавление нового члена в локальную группу невозможно, так как он имеет неправильный тип учетной записи. +. + +MessageId=1389 +Severity=Success +Facility=System +SymbolicName=ERROR_TOO_MANY_SIDS +Language=English +ERROR_TOO_MANY_SIDS - Too many security IDs have been specified. +. +Language=Russian +ERROR_TOO_MANY_SIDS - Задано слишком много идентификаторов безопасности. +. + +MessageId=1390 +Severity=Success +Facility=System +SymbolicName=ERROR_LM_CROSS_ENCRYPTION_REQUIRED +Language=English +ERROR_LM_CROSS_ENCRYPTION_REQUIRED - A cross-encrypted password is necessary to change this user password. +. +Language=Russian +ERROR_LM_CROSS_ENCRYPTION_REQUIRED - Для смены пароля необходим зашифрованный пароль. +. + +MessageId=1391 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_INHERITANCE +Language=English +ERROR_NO_INHERITANCE - Indicates an ACL contains no inheritable components. +. +Language=Russian +ERROR_NO_INHERITANCE - Список управления доступом (ACL) не содержит наследуемых компонентов. +. + +MessageId=1392 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_CORRUPT +Language=English +ERROR_FILE_CORRUPT - The file or directory is corrupted and unreadable. +. +Language=Russian +ERROR_FILE_CORRUPT - Файл или папка повреждены. Чтение невозможно. +. + +MessageId=1393 +Severity=Success +Facility=System +SymbolicName=ERROR_DISK_CORRUPT +Language=English +ERROR_DISK_CORRUPT - The disk structure is corrupted and unreadable. +. +Language=Russian +ERROR_DISK_CORRUPT - Структура диска повреждена. Чтение невозможно. +. + +MessageId=1394 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_USER_SESSION_KEY +Language=English +ERROR_NO_USER_SESSION_KEY - There is no user session key for the specified logon session. +. +Language=Russian +ERROR_NO_USER_SESSION_KEY - Для заданного сеанса входа в систему отсутствует раздел сеанса пользователя. +. + +MessageId=1395 +Severity=Success +Facility=System +SymbolicName=ERROR_LICENSE_QUOTA_EXCEEDED +Language=English +ERROR_LICENSE_QUOTA_EXCEEDED - The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept. +. +Language=Russian +ERROR_LICENSE_QUOTA_EXCEEDED - Для вызываемой службы действует лицензия на определенное число подключений. В настоящее время создание дополнительных подключений к службе невозможно, так как уже существует максимально допустимое число подключений. +. + +MessageId=1396 +Severity=Success +Facility=System +SymbolicName=ERROR_WRONG_TARGET_NAME +Language=English +ERROR_WRONG_TARGET_NAME - Logon Failure: The target account name is incorrect. +. +Language=Russian +ERROR_WRONG_TARGET_NAME - Конечная учетная запись указана неверно. +. + +MessageId=1397 +Severity=Success +Facility=System +SymbolicName=ERROR_MUTUAL_AUTH_FAILED +Language=English +ERROR_MUTUAL_AUTH_FAILED - Mutual Authentication failed. The server's password is out of date at the domain controller. +. +Language=Russian +ERROR_MUTUAL_AUTH_FAILED - Ошибка взаимной проверки подлинности. Пароль сервера на контроллере домена устарел. +. + +MessageId=1398 +Severity=Success +Facility=System +SymbolicName=ERROR_TIME_SKEW +Language=English +ERROR_TIME_SKEW - There is a time and/or date difference between the client and server. +. +Language=Russian +ERROR_TIME_SKEW - Существует разница настройки времени и/или даты между клиентом и сервером. +. + +MessageId=1399 +Severity=Success +Facility=System +SymbolicName=ERROR_CURRENT_DOMAIN_NOT_ALLOWED +Language=English +ERROR_CURRENT_DOMAIN_NOT_ALLOWED - This operation cannot be performed on the current domain. +. +Language=Russian +ERROR_CURRENT_DOMAIN_NOT_ALLOWED - Эта операция не может быть выполнена над текущим доменом. +. + +MessageId=1400 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_WINDOW_HANDLE +Language=English +ERROR_INVALID_WINDOW_HANDLE - Invalid window handle. +. +Language=Russian +ERROR_INVALID_WINDOW_HANDLE - Недопустимый дескриптор окна. +. + +MessageId=1401 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MENU_HANDLE +Language=English +ERROR_INVALID_MENU_HANDLE - Invalid menu handle. +. +Language=Russian +ERROR_INVALID_MENU_HANDLE - Неверный дескриптор меню. +. + +MessageId=1402 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_CURSOR_HANDLE +Language=English +ERROR_INVALID_CURSOR_HANDLE - Invalid cursor handle. +. +Language=Russian +ERROR_INVALID_CURSOR_HANDLE - Неверный дескриптор указателя. +. + +MessageId=1403 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ACCEL_HANDLE +Language=English +ERROR_INVALID_ACCEL_HANDLE - Invalid accelerator table handle. +. +Language=Russian +ERROR_INVALID_ACCEL_HANDLE - Неверный дескриптор таблицы сочетаний клавиш. +. + +MessageId=1404 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_HOOK_HANDLE +Language=English +ERROR_INVALID_HOOK_HANDLE - Invalid hook handle. +. +Language=Russian +ERROR_INVALID_HOOK_HANDLE - Неверный дескриптор обработчика. +. + +MessageId=1405 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DWP_HANDLE +Language=English +ERROR_INVALID_DWP_HANDLE - Invalid handle to a multiple-window position structure. +. +Language=Russian +ERROR_INVALID_DWP_HANDLE - Неверный дескриптор многооконной структуры. +. + +MessageId=1406 +Severity=Success +Facility=System +SymbolicName=ERROR_TLW_WITH_WSCHILD +Language=English +ERROR_TLW_WITH_WSCHILD - Cannot create a top-level child window. +. +Language=Russian +ERROR_TLW_WITH_WSCHILD - Не удается создать дочернее окно верхнего уровня. +. + +MessageId=1407 +Severity=Success +Facility=System +SymbolicName=ERROR_CANNOT_FIND_WND_CLASS +Language=English +ERROR_CANNOT_FIND_WND_CLASS - Cannot find window class. +. +Language=Russian +ERROR_CANNOT_FIND_WND_CLASS - Не удается найти класс окна. +. + +MessageId=1408 +Severity=Success +Facility=System +SymbolicName=ERROR_WINDOW_OF_OTHER_THREAD +Language=English +ERROR_WINDOW_OF_OTHER_THREAD - Invalid window; it belongs to other thread. +. +Language=Russian +ERROR_WINDOW_OF_OTHER_THREAD - Окно принадлежит другому потоку команд. +. + +MessageId=1409 +Severity=Success +Facility=System +SymbolicName=ERROR_HOTKEY_ALREADY_REGISTERED +Language=English +ERROR_HOTKEY_ALREADY_REGISTERED - Hot key is already registered. +. +Language=Russian +ERROR_HOTKEY_ALREADY_REGISTERED - Назначенная клавиша уже зарегистрирована. +. + +MessageId=1410 +Severity=Success +Facility=System +SymbolicName=ERROR_CLASS_ALREADY_EXISTS +Language=English +ERROR_CLASS_ALREADY_EXISTS - Class already exists. +. +Language=Russian +ERROR_CLASS_ALREADY_EXISTS - Класс уже существует. +. + +MessageId=1411 +Severity=Success +Facility=System +SymbolicName=ERROR_CLASS_DOES_NOT_EXIST +Language=English +ERROR_CLASS_DOES_NOT_EXIST - Class does not exist. +. +Language=Russian +ERROR_CLASS_DOES_NOT_EXIST - Класс не существует. +. + +MessageId=1412 +Severity=Success +Facility=System +SymbolicName=ERROR_CLASS_HAS_WINDOWS +Language=English +ERROR_CLASS_HAS_WINDOWS - Class still has open windows. +. + +MessageId=1413 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_INDEX +Language=English +ERROR_INVALID_INDEX - Invalid index. +. + +MessageId=1414 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ICON_HANDLE +Language=English +ERROR_INVALID_ICON_HANDLE - Invalid icon handle. +. + +MessageId=1415 +Severity=Success +Facility=System +SymbolicName=ERROR_PRIVATE_DIALOG_INDEX +Language=English +ERROR_PRIVATE_DIALOG_INDEX - Using private DIALOG window words. +. + +MessageId=1416 +Severity=Success +Facility=System +SymbolicName=ERROR_LISTBOX_ID_NOT_FOUND +Language=English +ERROR_LISTBOX_ID_NOT_FOUND - The list box identifier was not found. +. + +MessageId=1417 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_WILDCARD_CHARACTERS +Language=English +ERROR_NO_WILDCARD_CHARACTERS - No wildcards were found. +. + +MessageId=1418 +Severity=Success +Facility=System +SymbolicName=ERROR_CLIPBOARD_NOT_OPEN +Language=English +ERROR_CLIPBOARD_NOT_OPEN - Thread does not have a clipboard open. +. + +MessageId=1419 +Severity=Success +Facility=System +SymbolicName=ERROR_HOTKEY_NOT_REGISTERED +Language=English +ERROR_HOTKEY_NOT_REGISTERED - Hot key is not registered. +. + +MessageId=1420 +Severity=Success +Facility=System +SymbolicName=ERROR_WINDOW_NOT_DIALOG +Language=English +ERROR_WINDOW_NOT_DIALOG - The window is not a valid dialog window. +. + +MessageId=1421 +Severity=Success +Facility=System +SymbolicName=ERROR_CONTROL_ID_NOT_FOUND +Language=English +ERROR_CONTROL_ID_NOT_FOUND - Control ID not found. +. + +MessageId=1422 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_COMBOBOX_MESSAGE +Language=English +ERROR_INVALID_COMBOBOX_MESSAGE - Invalid message for a combo box because it does not have an edit control. +. + +MessageId=1423 +Severity=Success +Facility=System +SymbolicName=ERROR_WINDOW_NOT_COMBOBOX +Language=English +ERROR_WINDOW_NOT_COMBOBOX - The window is not a combo box. +. + +MessageId=1424 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_EDIT_HEIGHT +Language=English +ERROR_INVALID_EDIT_HEIGHT - Height must be less than 256. +. + +MessageId=1425 +Severity=Success +Facility=System +SymbolicName=ERROR_DC_NOT_FOUND +Language=English +ERROR_DC_NOT_FOUND - Invalid device context (DC) handle. +. + +MessageId=1426 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_HOOK_FILTER +Language=English +ERROR_INVALID_HOOK_FILTER - Invalid hook procedure type. +. + +MessageId=1427 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FILTER_PROC +Language=English +ERROR_INVALID_FILTER_PROC - Invalid hook procedure. +. + +MessageId=1428 +Severity=Success +Facility=System +SymbolicName=ERROR_HOOK_NEEDS_HMOD +Language=English +ERROR_HOOK_NEEDS_HMOD - Cannot set nonlocal hook without a module handle. +. + +MessageId=1429 +Severity=Success +Facility=System +SymbolicName=ERROR_GLOBAL_ONLY_HOOK +Language=English +ERROR_GLOBAL_ONLY_HOOK - This hook procedure can only be set globally. +. + +MessageId=1430 +Severity=Success +Facility=System +SymbolicName=ERROR_JOURNAL_HOOK_SET +Language=English +ERROR_JOURNAL_HOOK_SET - The journal hook procedure is already installed. +. + +MessageId=1431 +Severity=Success +Facility=System +SymbolicName=ERROR_HOOK_NOT_INSTALLED +Language=English +ERROR_HOOK_NOT_INSTALLED - The hook procedure is not installed. +. + +MessageId=1432 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LB_MESSAGE +Language=English +ERROR_INVALID_LB_MESSAGE - Invalid message for single-selection list box. +. + +MessageId=1433 +Severity=Success +Facility=System +SymbolicName=ERROR_SETCOUNT_ON_BAD_LB +Language=English +ERROR_SETCOUNT_ON_BAD_LB - LB_SETCOUNT sent to non-lazy list box. +. + +MessageId=1434 +Severity=Success +Facility=System +SymbolicName=ERROR_LB_WITHOUT_TABSTOPS +Language=English +ERROR_LB_WITHOUT_TABSTOPS - This list box does not support tab stops. +. + +MessageId=1435 +Severity=Success +Facility=System +SymbolicName=ERROR_DESTROY_OBJECT_OF_OTHER_THREAD +Language=English +ERROR_DESTROY_OBJECT_OF_OTHER_THREAD - Cannot destroy object created by another thread. +. + +MessageId=1436 +Severity=Success +Facility=System +SymbolicName=ERROR_CHILD_WINDOW_MENU +Language=English +ERROR_CHILD_WINDOW_MENU - Child windows cannot have menus. +. + +MessageId=1437 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SYSTEM_MENU +Language=English +ERROR_NO_SYSTEM_MENU - The window does not have a system menu. +. + +MessageId=1438 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MSGBOX_STYLE +Language=English +ERROR_INVALID_MSGBOX_STYLE - Invalid message box style. +. + +MessageId=1439 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SPI_VALUE +Language=English +ERROR_INVALID_SPI_VALUE - Invalid system-wide (SPI_*) parameter. +. + +MessageId=1440 +Severity=Success +Facility=System +SymbolicName=ERROR_SCREEN_ALREADY_LOCKED +Language=English +ERROR_SCREEN_ALREADY_LOCKED - Screen already locked. +. + +MessageId=1441 +Severity=Success +Facility=System +SymbolicName=ERROR_HWNDS_HAVE_DIFF_PARENT +Language=English +ERROR_HWNDS_HAVE_DIFF_PARENT - All handles to windows in a multiple-window position structure must have the same parent. +. + +MessageId=1442 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_CHILD_WINDOW +Language=English +ERROR_NOT_CHILD_WINDOW - The window is not a child window. +. + +MessageId=1443 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_GW_COMMAND +Language=English +ERROR_INVALID_GW_COMMAND - Invalid GW_* command. +. + +MessageId=1444 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_THREAD_ID +Language=English +ERROR_INVALID_THREAD_ID - Invalid thread identifier. +. + +MessageId=1445 +Severity=Success +Facility=System +SymbolicName=ERROR_NON_MDICHILD_WINDOW +Language=English +ERROR_NON_MDICHILD_WINDOW - Cannot process a message from a window that is not a multiple document interface (MDI) window. +. + +MessageId=1446 +Severity=Success +Facility=System +SymbolicName=ERROR_POPUP_ALREADY_ACTIVE +Language=English +ERROR_POPUP_ALREADY_ACTIVE - Popup menu already active. +. + +MessageId=1447 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SCROLLBARS +Language=English +ERROR_NO_SCROLLBARS - The window does not have scroll bars. +. + +MessageId=1448 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SCROLLBAR_RANGE +Language=English +ERROR_INVALID_SCROLLBAR_RANGE - Scroll bar range cannot be greater than MAXLONG. +. + +MessageId=1449 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SHOWWIN_COMMAND +Language=English +ERROR_INVALID_SHOWWIN_COMMAND - Cannot show or remove the window in the way specified. +. + +MessageId=1450 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SYSTEM_RESOURCES +Language=English +ERROR_NO_SYSTEM_RESOURCES - Insufficient system resources exist to complete the requested service. +. + +MessageId=1451 +Severity=Success +Facility=System +SymbolicName=ERROR_NONPAGED_SYSTEM_RESOURCES +Language=English +ERROR_NONPAGED_SYSTEM_RESOURCES - Insufficient system resources exist to complete the requested service. +. + +MessageId=1452 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGED_SYSTEM_RESOURCES +Language=English +ERROR_PAGED_SYSTEM_RESOURCES - Insufficient system resources exist to complete the requested service. +. + +MessageId=1453 +Severity=Success +Facility=System +SymbolicName=ERROR_WORKING_SET_QUOTA +Language=English +ERROR_WORKING_SET_QUOTA - Insufficient quota to complete the requested service. +. + +MessageId=1454 +Severity=Success +Facility=System +SymbolicName=ERROR_PAGEFILE_QUOTA +Language=English +ERROR_PAGEFILE_QUOTA - Insufficient quota to complete the requested service. +. + +MessageId=1455 +Severity=Success +Facility=System +SymbolicName=ERROR_COMMITMENT_LIMIT +Language=English +ERROR_COMMITMENT_LIMIT - The paging file is too small for this operation to complete. +. + +MessageId=1456 +Severity=Success +Facility=System +SymbolicName=ERROR_MENU_ITEM_NOT_FOUND +Language=English +ERROR_MENU_ITEM_NOT_FOUND - A menu item was not found. +. + +MessageId=1457 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_KEYBOARD_HANDLE +Language=English +ERROR_INVALID_KEYBOARD_HANDLE - Invalid keyboard layout handle. +. + +MessageId=1458 +Severity=Success +Facility=System +SymbolicName=ERROR_HOOK_TYPE_NOT_ALLOWED +Language=English +ERROR_HOOK_TYPE_NOT_ALLOWED - Hook type not allowed. +. + +MessageId=1459 +Severity=Success +Facility=System +SymbolicName=ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION +Language=English +ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION - This operation requires an interactive window station. +. + +MessageId=1460 +Severity=Success +Facility=System +SymbolicName=ERROR_TIMEOUT +Language=English +ERROR_TIMEOUT - This operation returned because the timeout period expired. +. + +MessageId=1461 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MONITOR_HANDLE +Language=English +ERROR_INVALID_MONITOR_HANDLE - Invalid monitor handle. +. + +MessageId=1500 +Severity=Success +Facility=System +SymbolicName=ERROR_EVENTLOG_FILE_CORRUPT +Language=English +ERROR_EVENTLOG_FILE_CORRUPT - The event log file is corrupted. +. + +MessageId=1501 +Severity=Success +Facility=System +SymbolicName=ERROR_EVENTLOG_CANT_START +Language=English +ERROR_EVENTLOG_CANT_START - No event log file could be opened, so the event logging service did not start. +. + +MessageId=1502 +Severity=Success +Facility=System +SymbolicName=ERROR_LOG_FILE_FULL +Language=English +ERROR_LOG_FILE_FULL - The event log file is full. +. + +MessageId=1503 +Severity=Success +Facility=System +SymbolicName=ERROR_EVENTLOG_FILE_CHANGED +Language=English +ERROR_EVENTLOG_FILE_CHANGED - The event log file has changed between read operations. +. + +MessageId=1601 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_SERVICE_FAILURE +Language=English +ERROR_INSTALL_SERVICE_FAILURE - The Windows Installer service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance. +. + +MessageId=1602 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_USEREXIT +Language=English +ERROR_INSTALL_USEREXIT - User cancelled installation. +. + +MessageId=1603 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_FAILURE +Language=English +ERROR_INSTALL_FAILURE - Fatal error during installation. +. + +MessageId=1604 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_SUSPEND +Language=English +ERROR_INSTALL_SUSPEND - Installation suspended, incomplete. +. + +MessageId=1605 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_PRODUCT +Language=English +ERROR_UNKNOWN_PRODUCT - This action is only valid for products that are currently installed. +. + +MessageId=1606 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_FEATURE +Language=English +ERROR_UNKNOWN_FEATURE - Feature ID not registered. +. + +MessageId=1607 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_COMPONENT +Language=English +ERROR_UNKNOWN_COMPONENT - Component ID not registered. +. + +MessageId=1608 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_PROPERTY +Language=English +ERROR_UNKNOWN_PROPERTY - Unknown property. +. + +MessageId=1609 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_HANDLE_STATE +Language=English +ERROR_INVALID_HANDLE_STATE - Handle is in an invalid state. +. + +MessageId=1610 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_CONFIGURATION +Language=English +ERROR_BAD_CONFIGURATION - The configuration data for this product is corrupt. Contact your support personnel. +. + +MessageId=1611 +Severity=Success +Facility=System +SymbolicName=ERROR_INDEX_ABSENT +Language=English +ERROR_INDEX_ABSENT - Component qualifier not present. +. + +MessageId=1612 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_SOURCE_ABSENT +Language=English +ERROR_INSTALL_SOURCE_ABSENT - The installation source for this product is not available. Verify that the source exists and that you can access it. +. + +MessageId=1613 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_PACKAGE_VERSION +Language=English +ERROR_INSTALL_PACKAGE_VERSION - This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. +. + +MessageId=1614 +Severity=Success +Facility=System +SymbolicName=ERROR_PRODUCT_UNINSTALLED +Language=English +ERROR_PRODUCT_UNINSTALLED - Product is uninstalled. +. + +MessageId=1615 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_QUERY_SYNTAX +Language=English +ERROR_BAD_QUERY_SYNTAX - SQL query syntax invalid or unsupported. +. + +MessageId=1616 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FIELD +Language=English +ERROR_INVALID_FIELD - Record field does not exist. +. + +MessageId=1617 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_REMOVED +Language=English +ERROR_DEVICE_REMOVED - The device has been removed. +. + +MessageId=1618 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_ALREADY_RUNNING +Language=English +ERROR_INSTALL_ALREADY_RUNNING - Another installation is already in progress. Complete that installation before proceeding with this install. +. + +MessageId=1619 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_PACKAGE_OPEN_FAILED +Language=English +ERROR_INSTALL_PACKAGE_OPEN_FAILED - This installation package could not be opened. Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package. +. + +MessageId=1620 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_PACKAGE_INVALID +Language=English +ERROR_INSTALL_PACKAGE_INVALID - This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package. +. + +MessageId=1621 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_UI_FAILURE +Language=English +ERROR_INSTALL_UI_FAILURE - There was an error starting the Windows Installer service user interface. Contact your support personnel. +. + +MessageId=1622 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_LOG_FAILURE +Language=English +ERROR_INSTALL_LOG_FAILURE - Error opening installation log file. Verify that the specified log file location exists and that you can write to it. +. + +MessageId=1623 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_LANGUAGE_UNSUPPORTED +Language=English +ERROR_INSTALL_LANGUAGE_UNSUPPORTED - The language of this installation package is not supported by your system. +. + +MessageId=1624 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_TRANSFORM_FAILURE +Language=English +ERROR_INSTALL_TRANSFORM_FAILURE - Error applying transforms. Verify that the specified transform paths are valid. +. + +MessageId=1625 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_PACKAGE_REJECTED +Language=English +ERROR_INSTALL_PACKAGE_REJECTED - This installation is forbidden by system policy. Contact your system administrator. +. + +MessageId=1626 +Severity=Success +Facility=System +SymbolicName=ERROR_FUNCTION_NOT_CALLED +Language=English +ERROR_FUNCTION_NOT_CALLED - Function could not be executed. +. + +MessageId=1627 +Severity=Success +Facility=System +SymbolicName=ERROR_FUNCTION_FAILED +Language=English +ERROR_FUNCTION_FAILED - Function failed during execution. +. + +MessageId=1628 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_TABLE +Language=English +ERROR_INVALID_TABLE - Invalid or unknown table specified. +. + +MessageId=1629 +Severity=Success +Facility=System +SymbolicName=ERROR_DATATYPE_MISMATCH +Language=English +ERROR_DATATYPE_MISMATCH - Data supplied is of wrong type. +. + +MessageId=1630 +Severity=Success +Facility=System +SymbolicName=ERROR_UNSUPPORTED_TYPE +Language=English +ERROR_UNSUPPORTED_TYPE - Data of this type is not supported. +. + +MessageId=1631 +Severity=Success +Facility=System +SymbolicName=ERROR_CREATE_FAILED +Language=English +ERROR_CREATE_FAILED - The Windows Installer service failed to start. Contact your support personnel. +. + +MessageId=1632 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_TEMP_UNWRITABLE +Language=English +ERROR_INSTALL_TEMP_UNWRITABLE - The Temp folder is on a drive that is full or inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder. +. + +MessageId=1633 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_PLATFORM_UNSUPPORTED +Language=English +ERROR_INSTALL_PLATFORM_UNSUPPORTED - This installation package is not supported by this processor type. Contact your product vendor. +. + +MessageId=1634 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_NOTUSED +Language=English +ERROR_INSTALL_NOTUSED - Component not used on this computer. +. + +MessageId=1635 +Severity=Success +Facility=System +SymbolicName=ERROR_PATCH_PACKAGE_OPEN_FAILED +Language=English +ERROR_PATCH_PACKAGE_OPEN_FAILED - This patch package could not be opened. Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package. +. + +MessageId=1636 +Severity=Success +Facility=System +SymbolicName=ERROR_PATCH_PACKAGE_INVALID +Language=English +ERROR_PATCH_PACKAGE_INVALID - This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package. +. + +MessageId=1637 +Severity=Success +Facility=System +SymbolicName=ERROR_PATCH_PACKAGE_UNSUPPORTED +Language=English +ERROR_PATCH_PACKAGE_UNSUPPORTED - This patch package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service. +. + +MessageId=1638 +Severity=Success +Facility=System +SymbolicName=ERROR_PRODUCT_VERSION +Language=English +ERROR_PRODUCT_VERSION - Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel. +. + +MessageId=1639 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_COMMAND_LINE +Language=English +ERROR_INVALID_COMMAND_LINE - Invalid command line argument. Consult the Windows Installer SDK for detailed command line help. +. + +MessageId=1640 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_REMOTE_DISALLOWED +Language=English +ERROR_INSTALL_REMOTE_DISALLOWED - Only administrators have permission to add, remove, or configure server software during a Terminal Services remote session. If you want to install or configure software on the server, contact your network administrator. +. + +MessageId=1641 +Severity=Success +Facility=System +SymbolicName=ERROR_SUCCESS_REBOOT_INITIATED +Language=English +ERROR_SUCCESS_REBOOT_INITIATED - The requested operation completed successfully. The system will be restarted so the changes can take effect. +. + +MessageId=1642 +Severity=Success +Facility=System +SymbolicName=ERROR_PATCH_TARGET_NOT_FOUND +Language=English +ERROR_PATCH_TARGET_NOT_FOUND - The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch. +. + +MessageId=1643 +Severity=Success +Facility=System +SymbolicName=ERROR_PATCH_PACKAGE_REJECTED +Language=English +ERROR_PATCH_PACKAGE_REJECTED - The patch package is not permitted by software restriction policy. +. + +MessageId=1644 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_TRANSFORM_REJECTED +Language=English +ERROR_INSTALL_TRANSFORM_REJECTED - One or more customizations are not permitted by software restriction policy. +. + +MessageId=1645 +Severity=Success +Facility=System +SymbolicName=ERROR_INSTALL_REMOTE_PROHIBITED +Language=English +ERROR_INSTALL_REMOTE_PROHIBITED - The Windows Installer does not permit installation from a Remote Desktop Connection. +. + +MessageId=1700 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_STRING_BINDING +Language=English +RPC_S_INVALID_STRING_BINDING - The string binding is invalid. +. + +MessageId=1701 +Severity=Success +Facility=System +SymbolicName=RPC_S_WRONG_KIND_OF_BINDING +Language=English +RPC_S_WRONG_KIND_OF_BINDING - The binding handle is not the correct type. +. + +MessageId=1702 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_BINDING +Language=English +RPC_S_INVALID_BINDING - The binding handle is invalid. +. + +MessageId=1703 +Severity=Success +Facility=System +SymbolicName=RPC_S_PROTSEQ_NOT_SUPPORTED +Language=English +RPC_S_PROTSEQ_NOT_SUPPORTED - The RPC protocol sequence is not supported. +. + +MessageId=1704 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_RPC_PROTSEQ +Language=English +RPC_S_INVALID_RPC_PROTSEQ - The RPC protocol sequence is invalid. +. + +MessageId=1705 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_STRING_UUID +Language=English +RPC_S_INVALID_STRING_UUID - The string universal unique identifier (UUID) is invalid. +. + +MessageId=1706 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_ENDPOINT_FORMAT +Language=English +RPC_S_INVALID_ENDPOINT_FORMAT - The endpoint format is invalid. +. + +MessageId=1707 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_NET_ADDR +Language=English +RPC_S_INVALID_NET_ADDR - The network address is invalid. +. + +MessageId=1708 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_ENDPOINT_FOUND +Language=English +RPC_S_NO_ENDPOINT_FOUND - No endpoint was found. +. + +MessageId=1709 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_TIMEOUT +Language=English +RPC_S_INVALID_TIMEOUT - The timeout value is invalid. +. + +MessageId=1710 +Severity=Success +Facility=System +SymbolicName=RPC_S_OBJECT_NOT_FOUND +Language=English +RPC_S_OBJECT_NOT_FOUND - The object universal unique identifier (UUID) was not found. +. + +MessageId=1711 +Severity=Success +Facility=System +SymbolicName=RPC_S_ALREADY_REGISTERED +Language=English +RPC_S_ALREADY_REGISTERED - The object universal unique identifier (UUID) has already been registered. +. + +MessageId=1712 +Severity=Success +Facility=System +SymbolicName=RPC_S_TYPE_ALREADY_REGISTERED +Language=English +RPC_S_TYPE_ALREADY_REGISTERED - The type universal unique identifier (UUID) has already been registered. +. + +MessageId=1713 +Severity=Success +Facility=System +SymbolicName=RPC_S_ALREADY_LISTENING +Language=English +RPC_S_ALREADY_LISTENING - The RPC server is already listening. +. + +MessageId=1714 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_PROTSEQS_REGISTERED +Language=English +RPC_S_NO_PROTSEQS_REGISTERED - No protocol sequences have been registered. +. + +MessageId=1715 +Severity=Success +Facility=System +SymbolicName=RPC_S_NOT_LISTENING +Language=English +RPC_S_NOT_LISTENING - The RPC server is not listening. +. + +MessageId=1716 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNKNOWN_MGR_TYPE +Language=English +RPC_S_UNKNOWN_MGR_TYPE - The manager type is unknown. +. + +MessageId=1717 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNKNOWN_IF +Language=English +RPC_S_UNKNOWN_IF - The interface is unknown. +. + +MessageId=1718 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_BINDINGS +Language=English +RPC_S_NO_BINDINGS - There are no bindings. +. + +MessageId=1719 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_PROTSEQS +Language=English +RPC_S_NO_PROTSEQS - There are no protocol sequences. +. + +MessageId=1720 +Severity=Success +Facility=System +SymbolicName=RPC_S_CANT_CREATE_ENDPOINT +Language=English +RPC_S_CANT_CREATE_ENDPOINT - The endpoint cannot be created. +. + +MessageId=1721 +Severity=Success +Facility=System +SymbolicName=RPC_S_OUT_OF_RESOURCES +Language=English +RPC_S_OUT_OF_RESOURCES - Not enough resources are available to complete this operation. +. + +MessageId=1722 +Severity=Success +Facility=System +SymbolicName=RPC_S_SERVER_UNAVAILABLE +Language=English +RPC_S_SERVER_UNAVAILABLE - The RPC server is unavailable. +. + +MessageId=1723 +Severity=Success +Facility=System +SymbolicName=RPC_S_SERVER_TOO_BUSY +Language=English +RPC_S_SERVER_TOO_BUSY - The RPC server is too busy to complete this operation. +. + +MessageId=1724 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_NETWORK_OPTIONS +Language=English +RPC_S_INVALID_NETWORK_OPTIONS - The network options are invalid. +. + +MessageId=1725 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_CALL_ACTIVE +Language=English +RPC_S_NO_CALL_ACTIVE - There are no remote procedure calls active on this thread. +. + +MessageId=1726 +Severity=Success +Facility=System +SymbolicName=RPC_S_CALL_FAILED +Language=English +RPC_S_CALL_FAILED - The remote procedure call failed. +. + +MessageId=1727 +Severity=Success +Facility=System +SymbolicName=RPC_S_CALL_FAILED_DNE +Language=English +RPC_S_CALL_FAILED_DNE - The remote procedure call failed and did not execute. +. + +MessageId=1728 +Severity=Success +Facility=System +SymbolicName=RPC_S_PROTOCOL_ERROR +Language=English +RPC_S_PROTOCOL_ERROR - A remote procedure call (RPC) protocol error occurred. +. + +MessageId=1730 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNSUPPORTED_TRANS_SYN +Language=English +RPC_S_UNSUPPORTED_TRANS_SYN - The transfer syntax is not supported by the RPC server. +. + +MessageId=1732 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNSUPPORTED_TYPE +Language=English +RPC_S_UNSUPPORTED_TYPE - The universal unique identifier (UUID) type is not supported. +. + +MessageId=1733 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_TAG +Language=English +RPC_S_INVALID_TAG - The tag is invalid. +. + +MessageId=1734 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_BOUND +Language=English +RPC_S_INVALID_BOUND - The array bounds are invalid. +. + +MessageId=1735 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_ENTRY_NAME +Language=English +RPC_S_NO_ENTRY_NAME - The binding does not contain an entry name. +. + +MessageId=1736 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_NAME_SYNTAX +Language=English +RPC_S_INVALID_NAME_SYNTAX - The name syntax is invalid. +. + +MessageId=1737 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNSUPPORTED_NAME_SYNTAX +Language=English +RPC_S_UNSUPPORTED_NAME_SYNTAX - The name syntax is not supported. +. + +MessageId=1739 +Severity=Success +Facility=System +SymbolicName=RPC_S_UUID_NO_ADDRESS +Language=English +RPC_S_UUID_NO_ADDRESS - No network address is available to use to construct a universal unique identifier (UUID). +. + +MessageId=1740 +Severity=Success +Facility=System +SymbolicName=RPC_S_DUPLICATE_ENDPOINT +Language=English +RPC_S_DUPLICATE_ENDPOINT - The endpoint is a duplicate. +. + +MessageId=1741 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNKNOWN_AUTHN_TYPE +Language=English +RPC_S_UNKNOWN_AUTHN_TYPE - The authentication type is unknown. +. + +MessageId=1742 +Severity=Success +Facility=System +SymbolicName=RPC_S_MAX_CALLS_TOO_SMALL +Language=English +RPC_S_MAX_CALLS_TOO_SMALL - The maximum number of calls is too small. +. + +MessageId=1743 +Severity=Success +Facility=System +SymbolicName=RPC_S_STRING_TOO_LONG +Language=English +RPC_S_STRING_TOO_LONG - The string is too long. +. + +MessageId=1744 +Severity=Success +Facility=System +SymbolicName=RPC_S_PROTSEQ_NOT_FOUND +Language=English +RPC_S_PROTSEQ_NOT_FOUND - The RPC protocol sequence was not found. +. + +MessageId=1745 +Severity=Success +Facility=System +SymbolicName=RPC_S_PROCNUM_OUT_OF_RANGE +Language=English +RPC_S_PROCNUM_OUT_OF_RANGE - The procedure number is out of range. +. + +MessageId=1746 +Severity=Success +Facility=System +SymbolicName=RPC_S_BINDING_HAS_NO_AUTH +Language=English +RPC_S_BINDING_HAS_NO_AUTH - The binding does not contain any authentication information. +. + +MessageId=1747 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNKNOWN_AUTHN_SERVICE +Language=English +RPC_S_UNKNOWN_AUTHN_SERVICE - The authentication service is unknown. +. + +MessageId=1748 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNKNOWN_AUTHN_LEVEL +Language=English +RPC_S_UNKNOWN_AUTHN_LEVEL - The authentication level is unknown. +. + +MessageId=1749 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_AUTH_IDENTITY +Language=English +RPC_S_INVALID_AUTH_IDENTITY - The security context is invalid. +. + +MessageId=1750 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNKNOWN_AUTHZ_SERVICE +Language=English +RPC_S_UNKNOWN_AUTHZ_SERVICE - The authorization service is unknown. +. + +MessageId=1751 +Severity=Success +Facility=System +SymbolicName=EPT_S_INVALID_ENTRY +Language=English +EPT_S_INVALID_ENTRY - The entry is invalid. +. + +MessageId=1752 +Severity=Success +Facility=System +SymbolicName=EPT_S_CANT_PERFORM_OP +Language=English +EPT_S_CANT_PERFORM_OP - The server endpoint cannot perform the operation. +. + +MessageId=1753 +Severity=Success +Facility=System +SymbolicName=EPT_S_NOT_REGISTERED +Language=English +EPT_S_NOT_REGISTERED - There are no more endpoints available from the endpoint mapper. +. + +MessageId=1754 +Severity=Success +Facility=System +SymbolicName=RPC_S_NOTHING_TO_EXPORT +Language=English +RPC_S_NOTHING_TO_EXPORT - No interfaces have been exported. +. + +MessageId=1755 +Severity=Success +Facility=System +SymbolicName=RPC_S_INCOMPLETE_NAME +Language=English +RPC_S_INCOMPLETE_NAME - The entry name is incomplete. +. + +MessageId=1756 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_VERS_OPTION +Language=English +RPC_S_INVALID_VERS_OPTION - The version option is invalid. +. + +MessageId=1757 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_MORE_MEMBERS +Language=English +RPC_S_NO_MORE_MEMBERS - There are no more members. +. + +MessageId=1758 +Severity=Success +Facility=System +SymbolicName=RPC_S_NOT_ALL_OBJS_UNEXPORTED +Language=English +RPC_S_NOT_ALL_OBJS_UNEXPORTED - There is nothing to unexport. +. + +MessageId=1759 +Severity=Success +Facility=System +SymbolicName=RPC_S_INTERFACE_NOT_FOUND +Language=English +RPC_S_INTERFACE_NOT_FOUND - The interface was not found. +. + +MessageId=1760 +Severity=Success +Facility=System +SymbolicName=RPC_S_ENTRY_ALREADY_EXISTS +Language=English +RPC_S_ENTRY_ALREADY_EXISTS - The entry already exists. +. + +MessageId=1761 +Severity=Success +Facility=System +SymbolicName=RPC_S_ENTRY_NOT_FOUND +Language=English +RPC_S_ENTRY_NOT_FOUND - The entry is not found. +. + +MessageId=1762 +Severity=Success +Facility=System +SymbolicName=RPC_S_NAME_SERVICE_UNAVAILABLE +Language=English +RPC_S_NAME_SERVICE_UNAVAILABLE - The name service is unavailable. +. + +MessageId=1763 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_NAF_ID +Language=English +RPC_S_INVALID_NAF_ID - The network address family is invalid. +. + +MessageId=1764 +Severity=Success +Facility=System +SymbolicName=RPC_S_CANNOT_SUPPORT +Language=English +RPC_S_CANNOT_SUPPORT - The requested operation is not supported. +. + +MessageId=1765 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_CONTEXT_AVAILABLE +Language=English +RPC_S_NO_CONTEXT_AVAILABLE - No security context is available to allow impersonation. +. + +MessageId=1766 +Severity=Success +Facility=System +SymbolicName=RPC_S_INTERNAL_ERROR +Language=English +RPC_S_INTERNAL_ERROR - An internal error occurred in a remote procedure call (RPC). +. + +MessageId=1767 +Severity=Success +Facility=System +SymbolicName=RPC_S_ZERO_DIVIDE +Language=English +RPC_S_ZERO_DIVIDE - The RPC server attempted an integer division by zero. +. + +MessageId=1768 +Severity=Success +Facility=System +SymbolicName=RPC_S_ADDRESS_ERROR +Language=English +RPC_S_ADDRESS_ERROR - An addressing error occurred in the RPC server. +. + +MessageId=1769 +Severity=Success +Facility=System +SymbolicName=RPC_S_FP_DIV_ZERO +Language=English +RPC_S_FP_DIV_ZERO - A floating-point operation at the RPC server caused a division by zero. +. + +MessageId=1770 +Severity=Success +Facility=System +SymbolicName=RPC_S_FP_UNDERFLOW +Language=English +RPC_S_FP_UNDERFLOW - A floating-point underflow occurred at the RPC server. +. + +MessageId=1771 +Severity=Success +Facility=System +SymbolicName=RPC_S_FP_OVERFLOW +Language=English +RPC_S_FP_OVERFLOW - A floating-point overflow occurred at the RPC server. +. + +MessageId=1772 +Severity=Success +Facility=System +SymbolicName=RPC_X_NO_MORE_ENTRIES +Language=English +RPC_X_NO_MORE_ENTRIES - The list of RPC servers available for the binding of auto handles has been exhausted. +. + +MessageId=1773 +Severity=Success +Facility=System +SymbolicName=RPC_X_SS_CHAR_TRANS_OPEN_FAIL +Language=English +RPC_X_SS_CHAR_TRANS_OPEN_FAIL - Unable to open the character translation table file. +. + +MessageId=1774 +Severity=Success +Facility=System +SymbolicName=RPC_X_SS_CHAR_TRANS_SHORT_FILE +Language=English +RPC_X_SS_CHAR_TRANS_SHORT_FILE - The file containing the character translation table has fewer than 512 bytes. +. + +MessageId=1775 +Severity=Success +Facility=System +SymbolicName=RPC_X_SS_IN_NULL_CONTEXT +Language=English +RPC_X_SS_IN_NULL_CONTEXT - A null context handle was passed from the client to the host during a remote procedure call. +. + +MessageId=1777 +Severity=Success +Facility=System +SymbolicName=RPC_X_SS_CONTEXT_DAMAGED +Language=English +RPC_X_SS_CONTEXT_DAMAGED - The context handle changed during a remote procedure call. +. + +MessageId=1778 +Severity=Success +Facility=System +SymbolicName=RPC_X_SS_HANDLES_MISMATCH +Language=English +RPC_X_SS_HANDLES_MISMATCH - The binding handles passed to a remote procedure call do not match. +. + +MessageId=1779 +Severity=Success +Facility=System +SymbolicName=RPC_X_SS_CANNOT_GET_CALL_HANDLE +Language=English +RPC_X_SS_CANNOT_GET_CALL_HANDLE - The stub is unable to get the remote procedure call handle. +. + +MessageId=1780 +Severity=Success +Facility=System +SymbolicName=RPC_X_NULL_REF_POINTER +Language=English +RPC_X_NULL_REF_POINTER - A null reference pointer was passed to the stub. +. + +MessageId=1781 +Severity=Success +Facility=System +SymbolicName=RPC_X_ENUM_VALUE_OUT_OF_RANGE +Language=English +RPC_X_ENUM_VALUE_OUT_OF_RANGE - The enumeration value is out of range. +. + +MessageId=1782 +Severity=Success +Facility=System +SymbolicName=RPC_X_BYTE_COUNT_TOO_SMALL +Language=English +RPC_X_BYTE_COUNT_TOO_SMALL - The byte count is too small. +. + +MessageId=1783 +Severity=Success +Facility=System +SymbolicName=RPC_X_BAD_STUB_DATA +Language=English +RPC_X_BAD_STUB_DATA - The stub received bad data. +. + +MessageId=1784 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_USER_BUFFER +Language=English +ERROR_INVALID_USER_BUFFER - The supplied user buffer is not valid for the requested operation. +. + +MessageId=1785 +Severity=Success +Facility=System +SymbolicName=ERROR_UNRECOGNIZED_MEDIA +Language=English +ERROR_UNRECOGNIZED_MEDIA - The disk media is not recognized. It may not be formatted. +. + +MessageId=1786 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_TRUST_LSA_SECRET +Language=English +ERROR_NO_TRUST_LSA_SECRET - The workstation does not have a trust secret. +. + +MessageId=1787 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_TRUST_SAM_ACCOUNT +Language=English +ERROR_NO_TRUST_SAM_ACCOUNT - The security database on the server does not have a computer account for this workstation trust relationship. +. + +MessageId=1788 +Severity=Success +Facility=System +SymbolicName=ERROR_TRUSTED_DOMAIN_FAILURE +Language=English +ERROR_TRUSTED_DOMAIN_FAILURE - The trust relationship between the primary domain and the trusted domain failed. +. + +MessageId=1789 +Severity=Success +Facility=System +SymbolicName=ERROR_TRUSTED_RELATIONSHIP_FAILURE +Language=English +ERROR_TRUSTED_RELATIONSHIP_FAILURE - The trust relationship between this workstation and the primary domain failed. +. + +MessageId=1790 +Severity=Success +Facility=System +SymbolicName=ERROR_TRUST_FAILURE +Language=English +ERROR_TRUST_FAILURE - The network logon failed. +. + +MessageId=1791 +Severity=Success +Facility=System +SymbolicName=RPC_S_CALL_IN_PROGRESS +Language=English +RPC_S_CALL_IN_PROGRESS - A remote procedure call is already in progress for this thread. +. + +MessageId=1792 +Severity=Success +Facility=System +SymbolicName=ERROR_NETLOGON_NOT_STARTED +Language=English +ERROR_NETLOGON_NOT_STARTED - An attempt was made to logon, but the network logon service was not started. +. + +MessageId=1793 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCOUNT_EXPIRED +Language=English +ERROR_ACCOUNT_EXPIRED - The user's account has expired. +. + +MessageId=1794 +Severity=Success +Facility=System +SymbolicName=ERROR_REDIRECTOR_HAS_OPEN_HANDLES +Language=English +ERROR_REDIRECTOR_HAS_OPEN_HANDLES - The redirector is in use and cannot be unloaded. +. + +MessageId=1795 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_DRIVER_ALREADY_INSTALLED +Language=English +ERROR_PRINTER_DRIVER_ALREADY_INSTALLED - The specified printer driver is already installed. +. + +MessageId=1796 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_PORT +Language=English +ERROR_UNKNOWN_PORT - The specified port is unknown. +. + +MessageId=1797 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_PRINTER_DRIVER +Language=English +ERROR_UNKNOWN_PRINTER_DRIVER - The printer driver is unknown. +. + +MessageId=1798 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_PRINTPROCESSOR +Language=English +ERROR_UNKNOWN_PRINTPROCESSOR - The print processor is unknown. +. + +MessageId=1799 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_SEPARATOR_FILE +Language=English +ERROR_INVALID_SEPARATOR_FILE - The specified separator file is invalid. +. + +MessageId=1800 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PRIORITY +Language=English +ERROR_INVALID_PRIORITY - The specified priority is invalid. +. + +MessageId=1801 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PRINTER_NAME +Language=English +ERROR_INVALID_PRINTER_NAME - The printer name is invalid. +. + +MessageId=1802 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_ALREADY_EXISTS +Language=English +ERROR_PRINTER_ALREADY_EXISTS - The printer already exists. +. + +MessageId=1803 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PRINTER_COMMAND +Language=English +ERROR_INVALID_PRINTER_COMMAND - The printer command is invalid. +. + +MessageId=1804 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DATATYPE +Language=English +ERROR_INVALID_DATATYPE - The specified datatype is invalid. +. + +MessageId=1805 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_ENVIRONMENT +Language=English +ERROR_INVALID_ENVIRONMENT - The environment specified is invalid. +. + +MessageId=1806 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_MORE_BINDINGS +Language=English +RPC_S_NO_MORE_BINDINGS - There are no more bindings. +. + +MessageId=1807 +Severity=Success +Facility=System +SymbolicName=ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT +Language=English +ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT - The account used is an interdomain trust account. Use your global user account or local user account to access this server. +. + +MessageId=1808 +Severity=Success +Facility=System +SymbolicName=ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT +Language=English +ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT - The account used is a computer account. Use your global user account or local user account to access this server. +. + +MessageId=1809 +Severity=Success +Facility=System +SymbolicName=ERROR_NOLOGON_SERVER_TRUST_ACCOUNT +Language=English +ERROR_NOLOGON_SERVER_TRUST_ACCOUNT - The account used is a server trust account. Use your global user account or local user account to access this server. +. + +MessageId=1810 +Severity=Success +Facility=System +SymbolicName=ERROR_DOMAIN_TRUST_INCONSISTENT +Language=English +ERROR_DOMAIN_TRUST_INCONSISTENT - The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain. +. + +MessageId=1811 +Severity=Success +Facility=System +SymbolicName=ERROR_SERVER_HAS_OPEN_HANDLES +Language=English +ERROR_SERVER_HAS_OPEN_HANDLES - The server is in use and cannot be unloaded. +. + +MessageId=1812 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_DATA_NOT_FOUND +Language=English +ERROR_RESOURCE_DATA_NOT_FOUND - The specified image file did not contain a resource section. +. + +MessageId=1813 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_TYPE_NOT_FOUND +Language=English +ERROR_RESOURCE_TYPE_NOT_FOUND - The specified resource type cannot be found in the image file. +. + +MessageId=1814 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_NAME_NOT_FOUND +Language=English +ERROR_RESOURCE_NAME_NOT_FOUND - The specified resource name cannot be found in the image file. +. + +MessageId=1815 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_LANG_NOT_FOUND +Language=English +ERROR_RESOURCE_LANG_NOT_FOUND - The specified resource language ID cannot be found in the image file. +. + +MessageId=1816 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_ENOUGH_QUOTA +Language=English +ERROR_NOT_ENOUGH_QUOTA - Not enough quota is available to process this command. +. + +MessageId=1817 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_INTERFACES +Language=English +RPC_S_NO_INTERFACES - No interfaces have been registered. +. + +MessageId=1818 +Severity=Success +Facility=System +SymbolicName=RPC_S_CALL_CANCELLED +Language=English +RPC_S_CALL_CANCELLED - The remote procedure call was cancelled. +. + +MessageId=1819 +Severity=Success +Facility=System +SymbolicName=RPC_S_BINDING_INCOMPLETE +Language=English +RPC_S_BINDING_INCOMPLETE - The binding handle does not contain all required information. +. + +MessageId=1820 +Severity=Success +Facility=System +SymbolicName=RPC_S_COMM_FAILURE +Language=English +RPC_S_COMM_FAILURE - A communications failure occurred during a remote procedure call. +. + +MessageId=1821 +Severity=Success +Facility=System +SymbolicName=RPC_S_UNSUPPORTED_AUTHN_LEVEL +Language=English +RPC_S_UNSUPPORTED_AUTHN_LEVEL - The requested authentication level is not supported. +. + +MessageId=1822 +Severity=Success +Facility=System +SymbolicName=RPC_S_NO_PRINC_NAME +Language=English +RPC_S_NO_PRINC_NAME - No principal name registered. +. + +MessageId=1823 +Severity=Success +Facility=System +SymbolicName=RPC_S_NOT_RPC_ERROR +Language=English +RPC_S_NOT_RPC_ERROR - The error specified is not a valid Windows RPC error code. +. + +MessageId=1824 +Severity=Success +Facility=System +SymbolicName=RPC_S_UUID_LOCAL_ONLY +Language=English +RPC_S_UUID_LOCAL_ONLY - A UUID that is valid only on this computer has been allocated. +. + +MessageId=1825 +Severity=Success +Facility=System +SymbolicName=RPC_S_SEC_PKG_ERROR +Language=English +RPC_S_SEC_PKG_ERROR - A security package specific error occurred. +. + +MessageId=1826 +Severity=Success +Facility=System +SymbolicName=RPC_S_NOT_CANCELLED +Language=English +RPC_S_NOT_CANCELLED - Thread is not canceled. +. + +MessageId=1827 +Severity=Success +Facility=System +SymbolicName=RPC_X_INVALID_ES_ACTION +Language=English +RPC_X_INVALID_ES_ACTION - Invalid operation on the encoding/decoding handle. +. + +MessageId=1828 +Severity=Success +Facility=System +SymbolicName=RPC_X_WRONG_ES_VERSION +Language=English +RPC_X_WRONG_ES_VERSION - Incompatible version of the serializing package. +. + +MessageId=1829 +Severity=Success +Facility=System +SymbolicName=RPC_X_WRONG_STUB_VERSION +Language=English +RPC_X_WRONG_STUB_VERSION - Incompatible version of the RPC stub. +. + +MessageId=1830 +Severity=Success +Facility=System +SymbolicName=RPC_X_INVALID_PIPE_OBJECT +Language=English +RPC_X_INVALID_PIPE_OBJECT - The RPC pipe object is invalid or corrupted. +. + +MessageId=1831 +Severity=Success +Facility=System +SymbolicName=RPC_X_WRONG_PIPE_ORDER +Language=English +RPC_X_WRONG_PIPE_ORDER - An invalid operation was attempted on an RPC pipe object. +. + +MessageId=1832 +Severity=Success +Facility=System +SymbolicName=RPC_X_WRONG_PIPE_VERSION +Language=English +RPC_X_WRONG_PIPE_VERSION - Unsupported RPC pipe version. +. + +MessageId=1898 +Severity=Success +Facility=System +SymbolicName=RPC_S_GROUP_MEMBER_NOT_FOUND +Language=English +RPC_S_GROUP_MEMBER_NOT_FOUND - The group member was not found. +. + +MessageId=1899 +Severity=Success +Facility=System +SymbolicName=EPT_S_CANT_CREATE +Language=English +EPT_S_CANT_CREATE - The endpoint mapper database entry could not be created. +. + +MessageId=1900 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_OBJECT +Language=English +RPC_S_INVALID_OBJECT - The object universal unique identifier (UUID) is the nil UUID. +. + +MessageId=1901 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_TIME +Language=English +ERROR_INVALID_TIME - The specified time is invalid. +. + +MessageId=1902 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FORM_NAME +Language=English +ERROR_INVALID_FORM_NAME - The specified form name is invalid. +. + +MessageId=1903 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_FORM_SIZE +Language=English +ERROR_INVALID_FORM_SIZE - The specified form size is invalid. +. + +MessageId=1904 +Severity=Success +Facility=System +SymbolicName=ERROR_ALREADY_WAITING +Language=English +ERROR_ALREADY_WAITING - The specified printer handle is already being waited on +. + +MessageId=1905 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_DELETED +Language=English +ERROR_PRINTER_DELETED - The specified printer has been deleted. +. + +MessageId=1906 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PRINTER_STATE +Language=English +ERROR_INVALID_PRINTER_STATE - The state of the printer is invalid. +. + +MessageId=1907 +Severity=Success +Facility=System +SymbolicName=ERROR_PASSWORD_MUST_CHANGE +Language=English +ERROR_PASSWORD_MUST_CHANGE - The user's password must be changed before logging on the first time. +. + +MessageId=1908 +Severity=Success +Facility=System +SymbolicName=ERROR_DOMAIN_CONTROLLER_NOT_FOUND +Language=English +ERROR_DOMAIN_CONTROLLER_NOT_FOUND - Could not find the domain controller for this domain. +. + +MessageId=1909 +Severity=Success +Facility=System +SymbolicName=ERROR_ACCOUNT_LOCKED_OUT +Language=English +ERROR_ACCOUNT_LOCKED_OUT - The referenced account is currently locked out and may not be used to log on. +. + +MessageId=1910 +Severity=Success +Facility=System +SymbolicName=OR_INVALID_OXID +Language=English +OR_INVALID_OXID - The object exporter specified was not found. +. + +MessageId=1911 +Severity=Success +Facility=System +SymbolicName=OR_INVALID_OID +Language=English +OR_INVALID_OID - The object specified was not found. +. + +MessageId=1912 +Severity=Success +Facility=System +SymbolicName=OR_INVALID_SET +Language=English +OR_INVALID_SET - The object resolver set specified was not found. +. + +MessageId=1913 +Severity=Success +Facility=System +SymbolicName=RPC_S_SEND_INCOMPLETE +Language=English +RPC_S_SEND_INCOMPLETE - Some data remains to be sent in the request buffer. +. + +MessageId=1914 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_ASYNC_HANDLE +Language=English +RPC_S_INVALID_ASYNC_HANDLE - Invalid asynchronous remote procedure call handle. +. + +MessageId=1915 +Severity=Success +Facility=System +SymbolicName=RPC_S_INVALID_ASYNC_CALL +Language=English +RPC_S_INVALID_ASYNC_CALL - Invalid asynchronous RPC call handle for this operation. +. + +MessageId=1916 +Severity=Success +Facility=System +SymbolicName=RPC_X_PIPE_CLOSED +Language=English +RPC_X_PIPE_CLOSED - The RPC pipe object has already been closed. +. + +MessageId=1917 +Severity=Success +Facility=System +SymbolicName=RPC_X_PIPE_DISCIPLINE_ERROR +Language=English +RPC_X_PIPE_DISCIPLINE_ERROR - The RPC call completed before all pipes were processed. +. + +MessageId=1918 +Severity=Success +Facility=System +SymbolicName=RPC_X_PIPE_EMPTY +Language=English +RPC_X_PIPE_EMPTY - No more data is available from the RPC pipe. +. + +MessageId=1919 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SITENAME +Language=English +ERROR_NO_SITENAME - No site name is available for this machine. +. + +MessageId=1920 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_ACCESS_FILE +Language=English +ERROR_CANT_ACCESS_FILE - The file cannot be accessed by the system. +. + +MessageId=1921 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_RESOLVE_FILENAME +Language=English +ERROR_CANT_RESOLVE_FILENAME - The name of the file cannot be resolved by the system. +. + +MessageId=1922 +Severity=Success +Facility=System +SymbolicName=RPC_S_ENTRY_TYPE_MISMATCH +Language=English +RPC_S_ENTRY_TYPE_MISMATCH - The entry is not of the expected type. +. + +MessageId=1923 +Severity=Success +Facility=System +SymbolicName=RPC_S_NOT_ALL_OBJS_EXPORTED +Language=English +RPC_S_NOT_ALL_OBJS_EXPORTED - Not all object UUIDs could be exported to the specified entry. +. + +MessageId=1924 +Severity=Success +Facility=System +SymbolicName=RPC_S_INTERFACE_NOT_EXPORTED +Language=English +RPC_S_INTERFACE_NOT_EXPORTED - Interface could not be exported to the specified entry. +. + +MessageId=1925 +Severity=Success +Facility=System +SymbolicName=RPC_S_PROFILE_NOT_ADDED +Language=English +RPC_S_PROFILE_NOT_ADDED - The specified profile entry could not be added. +. + +MessageId=1926 +Severity=Success +Facility=System +SymbolicName=RPC_S_PRF_ELT_NOT_ADDED +Language=English +RPC_S_PRF_ELT_NOT_ADDED - The specified profile element could not be added. +. + +MessageId=1927 +Severity=Success +Facility=System +SymbolicName=RPC_S_PRF_ELT_NOT_REMOVED +Language=English +RPC_S_PRF_ELT_NOT_REMOVED - The specified profile element could not be removed. +. + +MessageId=1928 +Severity=Success +Facility=System +SymbolicName=RPC_S_GRP_ELT_NOT_ADDED +Language=English +RPC_S_GRP_ELT_NOT_ADDED - The group element could not be added. +. + +MessageId=1929 +Severity=Success +Facility=System +SymbolicName=RPC_S_GRP_ELT_NOT_REMOVED +Language=English +RPC_S_GRP_ELT_NOT_REMOVED - The group element could not be removed. +. + +MessageId=1930 +Severity=Success +Facility=System +SymbolicName=ERROR_KM_DRIVER_BLOCKED +Language=English +ERROR_KM_DRIVER_BLOCKED - The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers. +. + +MessageId=1931 +Severity=Success +Facility=System +SymbolicName=ERROR_CONTEXT_EXPIRED +Language=English +ERROR_CONTEXT_EXPIRED - The context has expired and can no longer be used. +. + +MessageId=1932 +Severity=Success +Facility=System +SymbolicName=ERROR_PER_USER_TRUST_QUOTA_EXCEEDED +Language=English +ERROR_PER_USER_TRUST_QUOTA_EXCEEDED - The current user's delegated trust creation quota has been exceeded. +. + +MessageId=1933 +Severity=Success +Facility=System +SymbolicName=ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED +Language=English +ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED - The total delegated trust creation quota has been exceeded. +. + +MessageId=1934 +Severity=Success +Facility=System +SymbolicName=ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED +Language=English +ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED - The current user's delegated trust deletion quota has been exceeded. +. + +MessageId=2000 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PIXEL_FORMAT +Language=English +ERROR_INVALID_PIXEL_FORMAT - The pixel format is invalid. +. + +MessageId=2001 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_DRIVER +Language=English +ERROR_BAD_DRIVER - The specified driver is invalid. +. + +MessageId=2002 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_WINDOW_STYLE +Language=English +ERROR_INVALID_WINDOW_STYLE - The window style or class attribute is invalid for this operation. +. + +MessageId=2003 +Severity=Success +Facility=System +SymbolicName=ERROR_METAFILE_NOT_SUPPORTED +Language=English +ERROR_METAFILE_NOT_SUPPORTED - The requested metafile operation is not supported. +. + +MessageId=2004 +Severity=Success +Facility=System +SymbolicName=ERROR_TRANSFORM_NOT_SUPPORTED +Language=English +ERROR_TRANSFORM_NOT_SUPPORTED - The requested transformation operation is not supported. +. + +MessageId=2005 +Severity=Success +Facility=System +SymbolicName=ERROR_CLIPPING_NOT_SUPPORTED +Language=English +ERROR_CLIPPING_NOT_SUPPORTED - The requested clipping operation is not supported. +. + +MessageId=2010 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_CMM +Language=English +ERROR_INVALID_CMM - The specified color management module is invalid. +. + +MessageId=2011 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PROFILE +Language=English +ERROR_INVALID_PROFILE - The specified color profile is invalid. +. + +MessageId=2012 +Severity=Success +Facility=System +SymbolicName=ERROR_TAG_NOT_FOUND +Language=English +ERROR_TAG_NOT_FOUND - The specified tag was not found. +. + +MessageId=2013 +Severity=Success +Facility=System +SymbolicName=ERROR_TAG_NOT_PRESENT +Language=English +ERROR_TAG_NOT_PRESENT - A required tag is not present. +. + +MessageId=2014 +Severity=Success +Facility=System +SymbolicName=ERROR_DUPLICATE_TAG +Language=English +ERROR_DUPLICATE_TAG - The specified tag is already present. +. + +MessageId=2015 +Severity=Success +Facility=System +SymbolicName=ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE +Language=English +ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE - The specified color profile is not associated with any device. +. + +MessageId=2016 +Severity=Success +Facility=System +SymbolicName=ERROR_PROFILE_NOT_FOUND +Language=English +ERROR_PROFILE_NOT_FOUND - The specified color profile was not found. +. + +MessageId=2017 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_COLORSPACE +Language=English +ERROR_INVALID_COLORSPACE - The specified color space is invalid. +. + +MessageId=2018 +Severity=Success +Facility=System +SymbolicName=ERROR_ICM_NOT_ENABLED +Language=English +ERROR_ICM_NOT_ENABLED - Image Color Management is not enabled. +. + +MessageId=2019 +Severity=Success +Facility=System +SymbolicName=ERROR_DELETING_ICM_XFORM +Language=English +ERROR_DELETING_ICM_XFORM - There was an error while deleting the color transform. +. + +MessageId=2020 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_TRANSFORM +Language=English +ERROR_INVALID_TRANSFORM - The specified color transform is invalid. +. + +MessageId=2021 +Severity=Success +Facility=System +SymbolicName=ERROR_COLORSPACE_MISMATCH +Language=English +ERROR_COLORSPACE_MISMATCH - The specified transform does not match the bitmap's color space. +. + +MessageId=2022 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_COLORINDEX +Language=English +ERROR_INVALID_COLORINDEX - The specified named color index is not present in the profile. +. + +MessageId=2108 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTED_OTHER_PASSWORD +Language=English +ERROR_CONNECTED_OTHER_PASSWORD - The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified. +. + +MessageId=2109 +Severity=Success +Facility=System +SymbolicName=ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT +Language=English +ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT - The network connection was made successfully using default credentials. +. + +MessageId=2202 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_USERNAME +Language=English +ERROR_BAD_USERNAME - The specified username is invalid. +. + +MessageId=2250 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_CONNECTED +Language=English +ERROR_NOT_CONNECTED - This network connection does not exist. +. + +MessageId=2401 +Severity=Success +Facility=System +SymbolicName=ERROR_OPEN_FILES +Language=English +ERROR_OPEN_FILES - This network connection has files open or requests pending. +. + +MessageId=2402 +Severity=Success +Facility=System +SymbolicName=ERROR_ACTIVE_CONNECTIONS +Language=English +ERROR_ACTIVE_CONNECTIONS - Active connections still exist. +. + +MessageId=2404 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_IN_USE +Language=English +ERROR_DEVICE_IN_USE - The device is in use by an active process and cannot be disconnected. +. + +MessageId=3000 +Severity=Success +Facility=System +SymbolicName=ERROR_UNKNOWN_PRINT_MONITOR +Language=English +ERROR_UNKNOWN_PRINT_MONITOR - The specified print monitor is unknown. +. + +MessageId=3001 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_DRIVER_IN_USE +Language=English +ERROR_PRINTER_DRIVER_IN_USE - The specified printer driver is currently in use. +. + +MessageId=3002 +Severity=Success +Facility=System +SymbolicName=ERROR_SPOOL_FILE_NOT_FOUND +Language=English +ERROR_SPOOL_FILE_NOT_FOUND - The spool file was not found. +. + +MessageId=3003 +Severity=Success +Facility=System +SymbolicName=ERROR_SPL_NO_STARTDOC +Language=English +ERROR_SPL_NO_STARTDOC - A StartDocPrinter call was not issued. +. + +MessageId=3004 +Severity=Success +Facility=System +SymbolicName=ERROR_SPL_NO_ADDJOB +Language=English +ERROR_SPL_NO_ADDJOB - An AddJob call was not issued. +. + +MessageId=3005 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED +Language=English +ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED - The specified print processor has already been installed. +. + +MessageId=3006 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINT_MONITOR_ALREADY_INSTALLED +Language=English +ERROR_PRINT_MONITOR_ALREADY_INSTALLED - The specified print monitor has already been installed. +. + +MessageId=3007 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_PRINT_MONITOR +Language=English +ERROR_INVALID_PRINT_MONITOR - The specified print monitor does not have the required functions. +. + +MessageId=3008 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINT_MONITOR_IN_USE +Language=English +ERROR_PRINT_MONITOR_IN_USE - The specified print monitor is currently in use. +. + +MessageId=3009 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_HAS_JOBS_QUEUED +Language=English +ERROR_PRINTER_HAS_JOBS_QUEUED - The requested operation is not allowed when there are jobs queued to the printer. +. + +MessageId=3010 +Severity=Success +Facility=System +SymbolicName=ERROR_SUCCESS_REBOOT_REQUIRED +Language=English +ERROR_SUCCESS_REBOOT_REQUIRED - The requested operation is successful. Changes will not be effective until the system is rebooted. +. + +MessageId=3011 +Severity=Success +Facility=System +SymbolicName=ERROR_SUCCESS_RESTART_REQUIRED +Language=English +ERROR_SUCCESS_RESTART_REQUIRED - The requested operation is successful. Changes will not be effective until the service is restarted. +. + +MessageId=3012 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_NOT_FOUND +Language=English +ERROR_PRINTER_NOT_FOUND - No printers were found. +. + +MessageId=3013 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_DRIVER_WARNED +Language=English +ERROR_PRINTER_DRIVER_WARNED - The printer driver is known to be unreliable. +. + +MessageId=3014 +Severity=Success +Facility=System +SymbolicName=ERROR_PRINTER_DRIVER_BLOCKED +Language=English +ERROR_PRINTER_DRIVER_BLOCKED - The printer driver is known to harm the system. +. + +MessageId=3100 +Severity=Success +Facility=System +SymbolicName=ERROR_XML_UNDEFINED_ENTITY +Language=English +ERROR_XML_UNDEFINED_ENTITY - The XML contains an entity reference to an undefined entity. +. + +MessageId=3101 +Severity=Success +Facility=System +SymbolicName=ERROR_XML_MALFORMED_ENTITY +Language=English +ERROR_XML_MALFORMED_ENTITY - The XML contains a malformed entity reference. +. + +MessageId=3102 +Severity=Success +Facility=System +SymbolicName=ERROR_XML_CHAR_NOT_IN_RANGE +Language=English +ERROR_XML_CHAR_NOT_IN_RANGE - The XML contains a character which is not permitted in XML. +. + +MessageId=3200 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_EXTERNAL_PROXY +Language=English +ERROR_PCM_COMPILER_DUPLICATE_EXTERNAL_PROXY - The manifest contained a duplicate definition for external proxy stub %1 at (%1:%2,%3) +. + +MessageId=3201 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_ASSEMBLY_REFERENCE +Language=English +ERROR_PCM_COMPILER_DUPLICATE_ASSEMBLY_REFERENCE - The manifest already contains a reference to %4 - a second reference was found at (%1:%2,%3) +. + +MessageId=3202 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_INVALID_ASSEMBLY_REFERENCE +Language=English +ERROR_PCM_COMPILER_INVALID_ASSEMBLY_REFERENCE - The assembly reference at (%1:%2,%3) is invalid. +. + +MessageId=3203 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_INVALID_ASSEMBLY_DEFINITION +Language=English +ERROR_PCM_COMPILER_INVALID_ASSEMBLY_DEFINITION - The assembly definition at (%1:%2,%3) is invalid. +. + +MessageId=3204 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_WINDOW_CLASS +Language=English +ERROR_PCM_COMPILER_DUPLICATE_WINDOW_CLASS - The manifest already contained the window class %4, found a second declaration at (%1:%2,%3) +. + +MessageId=3205 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_PROGID +Language=English +ERROR_PCM_COMPILER_DUPLICATE_PROGID - The manifest already declared the progId %4, found a second declaration at (%1:%2,%3) +. + +MessageId=3206 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_NOINHERIT +Language=English +ERROR_PCM_COMPILER_DUPLICATE_NOINHERIT - Only one noInherit tag may be present in a manifest, found a second tag at (%1:%2,%3) +. + +MessageId=3207 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_NOINHERITABLE +Language=English +ERROR_PCM_COMPILER_DUPLICATE_NOINHERITABLE - Only one noInheritable tag may be present in a manifest, found a second tag at (%1:%2,%3) +. + +MessageId=3208 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_COM_CLASS +Language=English +ERROR_PCM_COMPILER_DUPLICATE_COM_CLASS - The manifest contained a duplicate declaration of COM class %4 at (%1:%2,%3) +. + +MessageId=3209 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_FILE_NAME +Language=English +ERROR_PCM_COMPILER_DUPLICATE_FILE_NAME - The manifest already declared the file %4, a second definition was found at (%1:%2,%3) +. + +MessageId=3210 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_CLR_SURROGATE +Language=English +ERROR_PCM_COMPILER_DUPLICATE_CLR_SURROGATE - CLR surrogate %1 was already defined, second definition at (%1:%2,%3) is invalid. +. + +MessageId=3211 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_TYPE_LIBRARY +Language=English +ERROR_PCM_COMPILER_DUPLICATE_TYPE_LIBRARY - Type library %1 was already defined, second definition at (%1:%2,%3) is invalid. +. + +MessageId=3212 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_PROXY_STUB +Language=English +ERROR_PCM_COMPILER_DUPLICATE_PROXY_STUB - Proxy stub definition %1 was already defined, second definition at (%1:%2,%3) is invalid. +. + +MessageId=3213 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_CATEGORY_NAME +Language=English +ERROR_PCM_COMPILER_DUPLICATE_CATEGORY_NAME - Category friendly name %4 was already used, second definition was found at (%1:%2,%3) is invalid. +. + +MessageId=3214 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_DUPLICATE_TOP_LEVEL_IDENTITY_FOUND +Language=English +ERROR_PCM_COMPILER_DUPLICATE_TOP_LEVEL_IDENTITY_FOUND - Only one top-level assemblyIdentity tag may be present in a manifest. A second tag with identity %4 was found at (%1:%2,%3) +. + +MessageId=3215 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_UNKNOWN_ROOT_ELEMENT +Language=English +ERROR_PCM_COMPILER_UNKNOWN_ROOT_ELEMENT - The root element for a manifest found at (%1:%2,%3) was not expected or was of the wrong version. +. + +MessageId=3216 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_INVALID_ELEMENT +Language=English +ERROR_PCM_COMPILER_INVALID_ELEMENT - The element found at (%1:%2,%3) was not expected according to the manifest schema. +. + +MessageId=3217 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_MISSING_REQUIRED_ATTRIBUTE +Language=English +ERROR_PCM_COMPILER_MISSING_REQUIRED_ATTRIBUTE - The element found at (%1:%2,%3) was missing the required attribute '%4'. See the manifest schema for more information +. + +MessageId=3218 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_INVALID_ATTRIBUTE_VALUE +Language=English +ERROR_PCM_COMPILER_INVALID_ATTRIBUTE_VALUE - The attribute value %4 at (%1:%2,%3) was invalid according to the schema. +. + +MessageId=3219 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_COMPILER_UNEXPECTED_PCDATA +Language=English +ERROR_PCM_COMPILER_UNEXPECTED_PCDATA - PCDATA or CDATA found at (%1:%2,%3) in the source document was not expected in the parent element %4. +. + +MessageId=3220 +Severity=Success +Facility=System +SymbolicName=ERROR_PCM_DUPLICATE_STRING_TABLE_ENT +Language=English +ERROR_PCM_DUPLICATE_STRING_TABLE_ENT - The string table entry with culture %4, name %5, and value '%6' at (%1:%2,%3) duplicated a previous entry. +. + +MessageId=4000 +Severity=Success +Facility=System +SymbolicName=ERROR_WINS_INTERNAL +Language=English +ERROR_WINS_INTERNAL - WINS encountered an error while processing the command. +. + +MessageId=4001 +Severity=Success +Facility=System +SymbolicName=ERROR_CAN_NOT_DEL_LOCAL_WINS +Language=English +ERROR_CAN_NOT_DEL_LOCAL_WINS - The local WINS cannot be deleted. +. + +MessageId=4002 +Severity=Success +Facility=System +SymbolicName=ERROR_STATIC_INIT +Language=English +ERROR_STATIC_INIT - The importation from the file failed. +. + +MessageId=4003 +Severity=Success +Facility=System +SymbolicName=ERROR_INC_BACKUP +Language=English +ERROR_INC_BACKUP - The backup failed. Was a full backup done before? +. + +MessageId=4004 +Severity=Success +Facility=System +SymbolicName=ERROR_FULL_BACKUP +Language=English +ERROR_FULL_BACKUP - The backup failed. Check the directory to which you are backing the database. +. + +MessageId=4005 +Severity=Success +Facility=System +SymbolicName=ERROR_REC_NON_EXISTENT +Language=English +ERROR_REC_NON_EXISTENT - The name does not exist in the WINS database. +. + +MessageId=4006 +Severity=Success +Facility=System +SymbolicName=ERROR_RPL_NOT_ALLOWED +Language=English +ERROR_RPL_NOT_ALLOWED - Replication with a nonconfigured partner is not allowed. +. + +MessageId=4100 +Severity=Success +Facility=System +SymbolicName=ERROR_DHCP_ADDRESS_CONFLICT +Language=English +ERROR_DHCP_ADDRESS_CONFLICT - The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address. +. + +MessageId=4200 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_GUID_NOT_FOUND +Language=English +ERROR_WMI_GUID_NOT_FOUND - The GUID passed was not recognized as valid by a WMI data provider. +. + +MessageId=4201 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_INSTANCE_NOT_FOUND +Language=English +ERROR_WMI_INSTANCE_NOT_FOUND - The instance name passed was not recognized as valid by a WMI data provider. +. + +MessageId=4202 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_ITEMID_NOT_FOUND +Language=English +ERROR_WMI_ITEMID_NOT_FOUND - The data item ID passed was not recognized as valid by a WMI data provider. +. + +MessageId=4203 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_TRY_AGAIN +Language=English +ERROR_WMI_TRY_AGAIN - The WMI request could not be completed and should be retried. +. + +MessageId=4204 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_DP_NOT_FOUND +Language=English +ERROR_WMI_DP_NOT_FOUND - The WMI data provider could not be located. +. + +MessageId=4205 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_UNRESOLVED_INSTANCE_REF +Language=English +ERROR_WMI_UNRESOLVED_INSTANCE_REF - The WMI data provider references an instance set that has not been registered. +. + +MessageId=4206 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_ALREADY_ENABLED +Language=English +ERROR_WMI_ALREADY_ENABLED - The WMI data block or event notification has already been enabled. +. + +MessageId=4207 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_GUID_DISCONNECTED +Language=English +ERROR_WMI_GUID_DISCONNECTED - The WMI data block is no longer available. +. + +MessageId=4208 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_SERVER_UNAVAILABLE +Language=English +ERROR_WMI_SERVER_UNAVAILABLE - The WMI data service is not available. +. + +MessageId=4209 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_DP_FAILED +Language=English +ERROR_WMI_DP_FAILED - The WMI data provider failed to carry out the request. +. + +MessageId=4210 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_INVALID_MOF +Language=English +ERROR_WMI_INVALID_MOF - The WMI MOF information is not valid. +. + +MessageId=4211 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_INVALID_REGINFO +Language=English +ERROR_WMI_INVALID_REGINFO - The WMI registration information is not valid. +. + +MessageId=4212 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_ALREADY_DISABLED +Language=English +ERROR_WMI_ALREADY_DISABLED - The WMI data block or event notification has already been disabled. +. + +MessageId=4213 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_READ_ONLY +Language=English +ERROR_WMI_READ_ONLY - The WMI data item or data block is read only. +. + +MessageId=4214 +Severity=Success +Facility=System +SymbolicName=ERROR_WMI_SET_FAILURE +Language=English +ERROR_WMI_SET_FAILURE - The WMI data item or data block could not be changed. +. + +MessageId=4300 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MEDIA +Language=English +ERROR_INVALID_MEDIA - The media identifier does not represent a valid medium. +. + +MessageId=4301 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_LIBRARY +Language=English +ERROR_INVALID_LIBRARY - The library identifier does not represent a valid library. +. + +MessageId=4302 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_MEDIA_POOL +Language=English +ERROR_INVALID_MEDIA_POOL - The media pool identifier does not represent a valid media pool. +. + +MessageId=4303 +Severity=Success +Facility=System +SymbolicName=ERROR_DRIVE_MEDIA_MISMATCH +Language=English +ERROR_DRIVE_MEDIA_MISMATCH - The drive and medium are not compatible or exist in different libraries. +. + +MessageId=4304 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIA_OFFLINE +Language=English +ERROR_MEDIA_OFFLINE - The medium currently exists in an offline library and must be online to perform this operation. +. + +MessageId=4305 +Severity=Success +Facility=System +SymbolicName=ERROR_LIBRARY_OFFLINE +Language=English +ERROR_LIBRARY_OFFLINE - The operation cannot be performed on an offline library. +. + +MessageId=4306 +Severity=Success +Facility=System +SymbolicName=ERROR_EMPTY +Language=English +ERROR_EMPTY - The library, drive, or media pool is empty. +. + +MessageId=4307 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_EMPTY +Language=English +ERROR_NOT_EMPTY - The library, drive, or media pool must be empty to perform this operation. +. + +MessageId=4308 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIA_UNAVAILABLE +Language=English +ERROR_MEDIA_UNAVAILABLE - No media is currently available in this media pool or library. +. + +MessageId=4309 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_DISABLED +Language=English +ERROR_RESOURCE_DISABLED - A resource required for this operation is disabled. +. + +MessageId=4310 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_CLEANER +Language=English +ERROR_INVALID_CLEANER - The media identifier does not represent a valid cleaner. +. + +MessageId=4311 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_CLEAN +Language=English +ERROR_UNABLE_TO_CLEAN - The drive cannot be cleaned or does not support cleaning. +. + +MessageId=4312 +Severity=Success +Facility=System +SymbolicName=ERROR_OBJECT_NOT_FOUND +Language=English +ERROR_OBJECT_NOT_FOUND - The object identifier does not represent a valid object. +. + +MessageId=4313 +Severity=Success +Facility=System +SymbolicName=ERROR_DATABASE_FAILURE +Language=English +ERROR_DATABASE_FAILURE - Unable to read from or write to the database. +. + +MessageId=4314 +Severity=Success +Facility=System +SymbolicName=ERROR_DATABASE_FULL +Language=English +ERROR_DATABASE_FULL - The database is full. +. + +MessageId=4315 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIA_INCOMPATIBLE +Language=English +ERROR_MEDIA_INCOMPATIBLE - The medium is not compatible with the device or media pool. +. + +MessageId=4316 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_NOT_PRESENT +Language=English +ERROR_RESOURCE_NOT_PRESENT - The resource required for this operation does not exist. +. + +MessageId=4317 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_OPERATION +Language=English +ERROR_INVALID_OPERATION - The operation identifier is not valid. +. + +MessageId=4318 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIA_NOT_AVAILABLE +Language=English +ERROR_MEDIA_NOT_AVAILABLE - The media is not mounted or ready for use. +. + +MessageId=4319 +Severity=Success +Facility=System +SymbolicName=ERROR_DEVICE_NOT_AVAILABLE +Language=English +ERROR_DEVICE_NOT_AVAILABLE - The device is not ready for use. +. + +MessageId=4320 +Severity=Success +Facility=System +SymbolicName=ERROR_REQUEST_REFUSED +Language=English +ERROR_REQUEST_REFUSED - The operator or administrator has refused the request. +. + +MessageId=4321 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_DRIVE_OBJECT +Language=English +ERROR_INVALID_DRIVE_OBJECT - The drive identifier does not represent a valid drive. +. + +MessageId=4322 +Severity=Success +Facility=System +SymbolicName=ERROR_LIBRARY_FULL +Language=English +ERROR_LIBRARY_FULL - Library is full. No slot is available for use. +. + +MessageId=4323 +Severity=Success +Facility=System +SymbolicName=ERROR_MEDIUM_NOT_ACCESSIBLE +Language=English +ERROR_MEDIUM_NOT_ACCESSIBLE - The transport cannot access the medium. +. + +MessageId=4324 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_LOAD_MEDIUM +Language=English +ERROR_UNABLE_TO_LOAD_MEDIUM - Unable to load the medium into the drive. +. + +MessageId=4325 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_INVENTORY_DRIVE +Language=English +ERROR_UNABLE_TO_INVENTORY_DRIVE - Unable to retrieve status about the drive. +. + +MessageId=4326 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_INVENTORY_SLOT +Language=English +ERROR_UNABLE_TO_INVENTORY_SLOT - Unable to retrieve status about the slot. +. + +MessageId=4327 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_INVENTORY_TRANSPORT +Language=English +ERROR_UNABLE_TO_INVENTORY_TRANSPORT - Unable to retrieve status about the transport. +. + +MessageId=4328 +Severity=Success +Facility=System +SymbolicName=ERROR_TRANSPORT_FULL +Language=English +ERROR_TRANSPORT_FULL - Cannot use the transport because it is already in use. +. + +MessageId=4329 +Severity=Success +Facility=System +SymbolicName=ERROR_CONTROLLING_IEPORT +Language=English +ERROR_CONTROLLING_IEPORT - Unable to open or close the inject/eject port. +. + +MessageId=4330 +Severity=Success +Facility=System +SymbolicName=ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA +Language=English +ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA - Unable to eject the media because it is in a drive. +. + +MessageId=4331 +Severity=Success +Facility=System +SymbolicName=ERROR_CLEANER_SLOT_SET +Language=English +ERROR_CLEANER_SLOT_SET - A cleaner slot is already reserved. +. + +MessageId=4332 +Severity=Success +Facility=System +SymbolicName=ERROR_CLEANER_SLOT_NOT_SET +Language=English +ERROR_CLEANER_SLOT_NOT_SET - A cleaner slot is not reserved. +. + +MessageId=4333 +Severity=Success +Facility=System +SymbolicName=ERROR_CLEANER_CARTRIDGE_SPENT +Language=English +ERROR_CLEANER_CARTRIDGE_SPENT - The cleaner cartridge has performed the maximum number of drive cleanings. +. + +MessageId=4334 +Severity=Success +Facility=System +SymbolicName=ERROR_UNEXPECTED_OMID +Language=English +ERROR_UNEXPECTED_OMID - Unexpected on-medium identifier. +. + +MessageId=4335 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_DELETE_LAST_ITEM +Language=English +ERROR_CANT_DELETE_LAST_ITEM - The last remaining item in this group or resource cannot be deleted. +. + +MessageId=4336 +Severity=Success +Facility=System +SymbolicName=ERROR_MESSAGE_EXCEEDS_MAX_SIZE +Language=English +ERROR_MESSAGE_EXCEEDS_MAX_SIZE - The message provided exceeds the maximum size allowed for this parameter. +. + +MessageId=4337 +Severity=Success +Facility=System +SymbolicName=ERROR_VOLUME_CONTAINS_SYS_FILES +Language=English +ERROR_VOLUME_CONTAINS_SYS_FILES - The volume contains system or paging files. +. + +MessageId=4338 +Severity=Success +Facility=System +SymbolicName=ERROR_INDIGENOUS_TYPE +Language=English +ERROR_INDIGENOUS_TYPE - The media type cannot be removed from this library since at least one drive in the library reports it can support this media type. +. + +MessageId=4339 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_SUPPORTING_DRIVES +Language=English +ERROR_NO_SUPPORTING_DRIVES - This offline media cannot be mounted on this system since no enabled drives are present which can be used. +. + +MessageId=4340 +Severity=Success +Facility=System +SymbolicName=ERROR_CLEANER_CARTRIDGE_INSTALLED +Language=English +ERROR_CLEANER_CARTRIDGE_INSTALLED - A cleaner cartridge is present in the tape library. +. + +MessageId=4350 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_OFFLINE +Language=English +ERROR_FILE_OFFLINE - The remote storage service was not able to recall the file. +. + +MessageId=4351 +Severity=Success +Facility=System +SymbolicName=ERROR_REMOTE_STORAGE_NOT_ACTIVE +Language=English +ERROR_REMOTE_STORAGE_NOT_ACTIVE - The remote storage service is not operational at this time. +. + +MessageId=4352 +Severity=Success +Facility=System +SymbolicName=ERROR_REMOTE_STORAGE_MEDIA_ERROR +Language=English +ERROR_REMOTE_STORAGE_MEDIA_ERROR - The remote storage service encountered a media error. +. + +MessageId=4390 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_A_REPARSE_POINT +Language=English +ERROR_NOT_A_REPARSE_POINT - The file or directory is not a reparse point. +. + +MessageId=4391 +Severity=Success +Facility=System +SymbolicName=ERROR_REPARSE_ATTRIBUTE_CONFLICT +Language=English +ERROR_REPARSE_ATTRIBUTE_CONFLICT - The reparse point attribute cannot be set because it conflicts with an existing attribute. +. + +MessageId=4392 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_REPARSE_DATA +Language=English +ERROR_INVALID_REPARSE_DATA - The data present in the reparse point buffer is invalid. +. + +MessageId=4393 +Severity=Success +Facility=System +SymbolicName=ERROR_REPARSE_TAG_INVALID +Language=English +ERROR_REPARSE_TAG_INVALID - The tag present in the reparse point buffer is invalid. +. + +MessageId=4394 +Severity=Success +Facility=System +SymbolicName=ERROR_REPARSE_TAG_MISMATCH +Language=English +ERROR_REPARSE_TAG_MISMATCH - There is a mismatch between the tag specified in the request and the tag present in the reparse point. +. + +MessageId=4500 +Severity=Success +Facility=System +SymbolicName=ERROR_VOLUME_NOT_SIS_ENABLED +Language=English +ERROR_VOLUME_NOT_SIS_ENABLED - Single Instance Storage is not available on this volume. +. + +MessageId=5001 +Severity=Success +Facility=System +SymbolicName=ERROR_DEPENDENT_RESOURCE_EXISTS +Language=English +ERROR_DEPENDENT_RESOURCE_EXISTS - The cluster resource cannot be moved to another group because other resources are dependent on it. +. + +MessageId=5002 +Severity=Success +Facility=System +SymbolicName=ERROR_DEPENDENCY_NOT_FOUND +Language=English +ERROR_DEPENDENCY_NOT_FOUND - The cluster resource dependency cannot be found. +. + +MessageId=5003 +Severity=Success +Facility=System +SymbolicName=ERROR_DEPENDENCY_ALREADY_EXISTS +Language=English +ERROR_DEPENDENCY_ALREADY_EXISTS - The cluster resource cannot be made dependent on the specified resource because it is already dependent. +. + +MessageId=5004 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_NOT_ONLINE +Language=English +ERROR_RESOURCE_NOT_ONLINE - The cluster resource is not online. +. + +MessageId=5005 +Severity=Success +Facility=System +SymbolicName=ERROR_HOST_NODE_NOT_AVAILABLE +Language=English +ERROR_HOST_NODE_NOT_AVAILABLE - A cluster node is not available for this operation. +. + +MessageId=5006 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_NOT_AVAILABLE +Language=English +ERROR_RESOURCE_NOT_AVAILABLE - The cluster resource is not available. +. + +MessageId=5007 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_NOT_FOUND +Language=English +ERROR_RESOURCE_NOT_FOUND - The cluster resource could not be found. +. + +MessageId=5008 +Severity=Success +Facility=System +SymbolicName=ERROR_SHUTDOWN_CLUSTER +Language=English +ERROR_SHUTDOWN_CLUSTER - The cluster is being shut down. +. + +MessageId=5009 +Severity=Success +Facility=System +SymbolicName=ERROR_CANT_EVICT_ACTIVE_NODE +Language=English +ERROR_CANT_EVICT_ACTIVE_NODE - A cluster node cannot be evicted from the cluster unless the node is down. +. + +MessageId=5010 +Severity=Success +Facility=System +SymbolicName=ERROR_OBJECT_ALREADY_EXISTS +Language=English +ERROR_OBJECT_ALREADY_EXISTS - The object already exists. +. + +MessageId=5011 +Severity=Success +Facility=System +SymbolicName=ERROR_OBJECT_IN_LIST +Language=English +ERROR_OBJECT_IN_LIST - The object is already in the list. +. + +MessageId=5012 +Severity=Success +Facility=System +SymbolicName=ERROR_GROUP_NOT_AVAILABLE +Language=English +ERROR_GROUP_NOT_AVAILABLE - The cluster group is not available for any new requests. +. + +MessageId=5013 +Severity=Success +Facility=System +SymbolicName=ERROR_GROUP_NOT_FOUND +Language=English +ERROR_GROUP_NOT_FOUND - The cluster group could not be found. +. + +MessageId=5014 +Severity=Success +Facility=System +SymbolicName=ERROR_GROUP_NOT_ONLINE +Language=English +ERROR_GROUP_NOT_ONLINE - The operation could not be completed because the cluster group is not online. +. + +MessageId=5015 +Severity=Success +Facility=System +SymbolicName=ERROR_HOST_NODE_NOT_RESOURCE_OWNER +Language=English +ERROR_HOST_NODE_NOT_RESOURCE_OWNER - The cluster node is not the owner of the resource. +. + +MessageId=5016 +Severity=Success +Facility=System +SymbolicName=ERROR_HOST_NODE_NOT_GROUP_OWNER +Language=English +ERROR_HOST_NODE_NOT_GROUP_OWNER - The cluster node is not the owner of the group. +. + +MessageId=5017 +Severity=Success +Facility=System +SymbolicName=ERROR_RESMON_CREATE_FAILED +Language=English +ERROR_RESMON_CREATE_FAILED - The cluster resource could not be created in the specified resource monitor. +. + +MessageId=5018 +Severity=Success +Facility=System +SymbolicName=ERROR_RESMON_ONLINE_FAILED +Language=English +ERROR_RESMON_ONLINE_FAILED - The cluster resource could not be brought online by the resource monitor. +. + +MessageId=5019 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_ONLINE +Language=English +ERROR_RESOURCE_ONLINE - The operation could not be completed because the cluster resource is online. +. + +MessageId=5020 +Severity=Success +Facility=System +SymbolicName=ERROR_QUORUM_RESOURCE +Language=English +ERROR_QUORUM_RESOURCE - The cluster resource could not be deleted or brought offline because it is the quorum resource. +. + +MessageId=5021 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_QUORUM_CAPABLE +Language=English +ERROR_NOT_QUORUM_CAPABLE - The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource. +. + +MessageId=5022 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_SHUTTING_DOWN +Language=English +ERROR_CLUSTER_SHUTTING_DOWN - The cluster software is shutting down. +. + +MessageId=5023 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_STATE +Language=English +ERROR_INVALID_STATE - The group or resource is not in the correct state to perform the requested operation. +. + +MessageId=5024 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_PROPERTIES_STORED +Language=English +ERROR_RESOURCE_PROPERTIES_STORED - The properties were stored but not all changes will take effect until the next time the resource is brought online. +. + +MessageId=5025 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_QUORUM_CLASS +Language=English +ERROR_NOT_QUORUM_CLASS - The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class. +. + +MessageId=5026 +Severity=Success +Facility=System +SymbolicName=ERROR_CORE_RESOURCE +Language=English +ERROR_CORE_RESOURCE - The cluster resource could not be deleted since it is a core resource. +. + +MessageId=5027 +Severity=Success +Facility=System +SymbolicName=ERROR_QUORUM_RESOURCE_ONLINE_FAILED +Language=English +ERROR_QUORUM_RESOURCE_ONLINE_FAILED - The quorum resource failed to come online. +. + +MessageId=5028 +Severity=Success +Facility=System +SymbolicName=ERROR_QUORUMLOG_OPEN_FAILED +Language=English +ERROR_QUORUMLOG_OPEN_FAILED - The quorum log could not be created or mounted successfully. +. + +MessageId=5029 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTERLOG_CORRUPT +Language=English +ERROR_CLUSTERLOG_CORRUPT - The cluster log is corrupt. +. + +MessageId=5030 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE +Language=English +ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE - The record could not be written to the cluster log since it exceeds the maximum size. +. + +MessageId=5031 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE +Language=English +ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE - The cluster log exceeds its maximum size. +. + +MessageId=5032 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND +Language=English +ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND - No checkpoint record was found in the cluster log. +. + +MessageId=5033 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE +Language=English +ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE - The minimum required disk space needed for logging is not available. +. + +MessageId=5034 +Severity=Success +Facility=System +SymbolicName=ERROR_QUORUM_OWNER_ALIVE +Language=English +ERROR_QUORUM_OWNER_ALIVE - The cluster node failed to take control of the quorum resource because the resource is owned by another active node. +. + +MessageId=5035 +Severity=Success +Facility=System +SymbolicName=ERROR_NETWORK_NOT_AVAILABLE +Language=English +ERROR_NETWORK_NOT_AVAILABLE - A cluster network is not available for this operation. +. + +MessageId=5036 +Severity=Success +Facility=System +SymbolicName=ERROR_NODE_NOT_AVAILABLE +Language=English +ERROR_NODE_NOT_AVAILABLE - A cluster node is not available for this operation. +. + +MessageId=5037 +Severity=Success +Facility=System +SymbolicName=ERROR_ALL_NODES_NOT_AVAILABLE +Language=English +ERROR_ALL_NODES_NOT_AVAILABLE - All cluster nodes must be running to perform this operation. +. + +MessageId=5038 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_FAILED +Language=English +ERROR_RESOURCE_FAILED - A cluster resource failed. +. + +MessageId=5039 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_INVALID_NODE +Language=English +ERROR_CLUSTER_INVALID_NODE - The cluster node is not valid. +. + +MessageId=5040 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_EXISTS +Language=English +ERROR_CLUSTER_NODE_EXISTS - The cluster node already exists. +. + +MessageId=5041 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_JOIN_IN_PROGRESS +Language=English +ERROR_CLUSTER_JOIN_IN_PROGRESS - A node is in the process of joining the cluster. +. + +MessageId=5042 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_NOT_FOUND +Language=English +ERROR_CLUSTER_NODE_NOT_FOUND - The cluster node was not found. +. + +MessageId=5043 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND +Language=English +ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND - The cluster local node information was not found. +. + +MessageId=5044 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_EXISTS +Language=English +ERROR_CLUSTER_NETWORK_EXISTS - The cluster network already exists. +. + +MessageId=5045 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_NOT_FOUND +Language=English +ERROR_CLUSTER_NETWORK_NOT_FOUND - The cluster network was not found. +. + +MessageId=5046 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETINTERFACE_EXISTS +Language=English +ERROR_CLUSTER_NETINTERFACE_EXISTS - The cluster network interface already exists. +. + +MessageId=5047 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETINTERFACE_NOT_FOUND +Language=English +ERROR_CLUSTER_NETINTERFACE_NOT_FOUND - The cluster network interface was not found. +. + +MessageId=5048 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_INVALID_REQUEST +Language=English +ERROR_CLUSTER_INVALID_REQUEST - The cluster request is not valid for this object. +. + +MessageId=5049 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_INVALID_NETWORK_PROVIDER +Language=English +ERROR_CLUSTER_INVALID_NETWORK_PROVIDER - The cluster network provider is not valid. +. + +MessageId=5050 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_DOWN +Language=English +ERROR_CLUSTER_NODE_DOWN - The cluster node is down. +. + +MessageId=5051 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_UNREACHABLE +Language=English +ERROR_CLUSTER_NODE_UNREACHABLE - The cluster node is not reachable. +. + +MessageId=5052 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_NOT_MEMBER +Language=English +ERROR_CLUSTER_NODE_NOT_MEMBER - The cluster node is not a member of the cluster. +. + +MessageId=5053 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS +Language=English +ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS - A cluster join operation is not in progress. +. + +MessageId=5054 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_INVALID_NETWORK +Language=English +ERROR_CLUSTER_INVALID_NETWORK - The cluster network is not valid. +. + +MessageId=5056 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_UP +Language=English +ERROR_CLUSTER_NODE_UP - The cluster node is up. +. + +MessageId=5057 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_IPADDR_IN_USE +Language=English +ERROR_CLUSTER_IPADDR_IN_USE - The cluster IP address is already in use. +. + +MessageId=5058 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_NOT_PAUSED +Language=English +ERROR_CLUSTER_NODE_NOT_PAUSED - The cluster node is not paused. +. + +MessageId=5059 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NO_SECURITY_CONTEXT +Language=English +ERROR_CLUSTER_NO_SECURITY_CONTEXT - No cluster security context is available. +. + +MessageId=5060 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_NOT_INTERNAL +Language=English +ERROR_CLUSTER_NETWORK_NOT_INTERNAL - The cluster network is not configured for internal cluster communication. +. + +MessageId=5061 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_ALREADY_UP +Language=English +ERROR_CLUSTER_NODE_ALREADY_UP - The cluster node is already up. +. + +MessageId=5062 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_ALREADY_DOWN +Language=English +ERROR_CLUSTER_NODE_ALREADY_DOWN - The cluster node is already down. +. + +MessageId=5063 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_ALREADY_ONLINE +Language=English +ERROR_CLUSTER_NETWORK_ALREADY_ONLINE - The cluster network is already online. +. + +MessageId=5064 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE +Language=English +ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE - The cluster network is already offline. +. + +MessageId=5065 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_ALREADY_MEMBER +Language=English +ERROR_CLUSTER_NODE_ALREADY_MEMBER - The cluster node is already a member of the cluster. +. + +MessageId=5066 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_LAST_INTERNAL_NETWORK +Language=English +ERROR_CLUSTER_LAST_INTERNAL_NETWORK - The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network. +. + +MessageId=5067 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS +Language=English +ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS - One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network. +. + +MessageId=5068 +Severity=Success +Facility=System +SymbolicName=ERROR_INVALID_OPERATION_ON_QUORUM +Language=English +ERROR_INVALID_OPERATION_ON_QUORUM - This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list. +. + +MessageId=5069 +Severity=Success +Facility=System +SymbolicName=ERROR_DEPENDENCY_NOT_ALLOWED +Language=English +ERROR_DEPENDENCY_NOT_ALLOWED - The cluster quorum resource is not allowed to have any dependencies. +. + +MessageId=5070 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_PAUSED +Language=English +ERROR_CLUSTER_NODE_PAUSED - The cluster node is paused. +. + +MessageId=5071 +Severity=Success +Facility=System +SymbolicName=ERROR_NODE_CANT_HOST_RESOURCE +Language=English +ERROR_NODE_CANT_HOST_RESOURCE - The cluster resource cannot be brought online. The owner node cannot run this resource. +. + +MessageId=5072 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_NOT_READY +Language=English +ERROR_CLUSTER_NODE_NOT_READY - The cluster node is not ready to perform the requested operation. +. + +MessageId=5073 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_SHUTTING_DOWN +Language=English +ERROR_CLUSTER_NODE_SHUTTING_DOWN - The cluster node is shutting down. +. + +MessageId=5074 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_JOIN_ABORTED +Language=English +ERROR_CLUSTER_JOIN_ABORTED - The cluster join operation was aborted. +. + +MessageId=5075 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_INCOMPATIBLE_VERSIONS +Language=English +ERROR_CLUSTER_INCOMPATIBLE_VERSIONS - The cluster join operation failed due to incompatible software versions between the joining node and its sponsor. +. + +MessageId=5076 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED +Language=English +ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED - This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor. +. + +MessageId=5077 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED +Language=English +ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED - The system configuration changed during the cluster join or form operation. The join or form operation was aborted. +. + +MessageId=5078 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND +Language=English +ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND - The specified resource type was not found. +. + +MessageId=5079 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED +Language=English +ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED - The specified node does not support a resource of this type. This may be due to version inconsistencies or due to the absence of the resource DLL on this node. +. + +MessageId=5080 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_RESNAME_NOT_FOUND +Language=English +ERROR_CLUSTER_RESNAME_NOT_FOUND - The specified resource name is supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL. +. + +MessageId=5081 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED +Language=English +ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED - No authentication package could be registered with the RPC server. +. + +MessageId=5082 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST +Language=English +ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST - You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group. +. + +MessageId=5083 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_DATABASE_SEQMISMATCH +Language=English +ERROR_CLUSTER_DATABASE_SEQMISMATCH - The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join. +. + +MessageId=5084 +Severity=Success +Facility=System +SymbolicName=ERROR_RESMON_INVALID_STATE +Language=English +ERROR_RESMON_INVALID_STATE - The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state. +. + +MessageId=5085 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_GUM_NOT_LOCKER +Language=English +ERROR_CLUSTER_GUM_NOT_LOCKER - A non locker code got a request to reserve the lock for making global updates. +. + +MessageId=5086 +Severity=Success +Facility=System +SymbolicName=ERROR_QUORUM_DISK_NOT_FOUND +Language=English +ERROR_QUORUM_DISK_NOT_FOUND - The quorum disk could not be located by the cluster service. +. + +MessageId=5087 +Severity=Success +Facility=System +SymbolicName=ERROR_DATABASE_BACKUP_CORRUPT +Language=English +ERROR_DATABASE_BACKUP_CORRUPT - The backup up cluster database is possibly corrupt. +. + +MessageId=5088 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT +Language=English +ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT - A DFS root already exists in this cluster node. +. + +MessageId=5089 +Severity=Success +Facility=System +SymbolicName=ERROR_RESOURCE_PROPERTY_UNCHANGEABLE +Language=English +ERROR_RESOURCE_PROPERTY_UNCHANGEABLE - An attempt to modify a resource property failed because it conflicts with another existing property. +. + +MessageId=5890 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE +Language=English +ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE - An operation was attempted that is incompatible with the current membership state of the node. +. + +MessageId=5891 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_QUORUMLOG_NOT_FOUND +Language=English +ERROR_CLUSTER_QUORUMLOG_NOT_FOUND - The quorum resource does not contain the quorum log. +. + +MessageId=5892 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_MEMBERSHIP_HALT +Language=English +ERROR_CLUSTER_MEMBERSHIP_HALT - The membership engine requested shutdown of the cluster service on this node. +. + +MessageId=5893 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_INSTANCE_ID_MISMATCH +Language=English +ERROR_CLUSTER_INSTANCE_ID_MISMATCH - The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node. +. + +MessageId=5894 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP +Language=English +ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP - A matching network for the specified IP address could not be found. Please also specify a subnet mask and a cluster network. +. + +MessageId=5895 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH +Language=English +ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH - The actual data type of the property did not match the expected data type of the property. +. + +MessageId=5896 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP +Language=English +ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP - The cluster node was evicted from the cluster successfully, but the node was not cleaned up. Extended status information explaining why the node was not cleaned up is available. +. + +MessageId=5897 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_PARAMETER_MISMATCH +Language=English +ERROR_CLUSTER_PARAMETER_MISMATCH - Two or more parameter values specified for a resource's properties are in conflict. +. + +MessageId=5898 +Severity=Success +Facility=System +SymbolicName=ERROR_NODE_CANNOT_BE_CLUSTERED +Language=English +ERROR_NODE_CANNOT_BE_CLUSTERED - This computer cannot be made a member of a cluster. +. + +MessageId=5899 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_WRONG_OS_VERSION +Language=English +ERROR_CLUSTER_WRONG_OS_VERSION - This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed. +. + +MessageId=5900 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME +Language=English +ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME - A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster. +. + +MessageId=5901 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSCFG_ALREADY_COMMITTED +Language=English +ERROR_CLUSCFG_ALREADY_COMMITTED - The cluster configuration action has already been committed. +. + +MessageId=5902 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSCFG_ROLLBACK_FAILED +Language=English +ERROR_CLUSCFG_ROLLBACK_FAILED - The cluster configuration action could not be rolled back. +. + +MessageId=5903 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT +Language=English +ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT - The drive letter assigned to a system disk on one node conflicted with the driver letter assigned to a disk on another node. +. + +MessageId=5904 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_OLD_VERSION +Language=English +ERROR_CLUSTER_OLD_VERSION - One or more nodes in the cluster are running a version of Windows that does not support this operation. +. + +MessageId=5905 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME +Language=English +ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME - The name of the corresponding computer account doesn't match the Network Name for this resource. +. + +MessageId=5906 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_NO_NET_ADAPTERS +Language=English +ERROR_CLUSTER_NO_NET_ADAPTERS - No network adapters are available. +. + +MessageId=5907 +Severity=Success +Facility=System +SymbolicName=ERROR_CLUSTER_POISONED +Language=English +ERROR_CLUSTER_POISONED - The cluster node has been poisoned. +. + +MessageId=6000 +Severity=Success +Facility=System +SymbolicName=ERROR_ENCRYPTION_FAILED +Language=English +ERROR_ENCRYPTION_FAILED - The specified file could not be encrypted. +. + +MessageId=6001 +Severity=Success +Facility=System +SymbolicName=ERROR_DECRYPTION_FAILED +Language=English +ERROR_DECRYPTION_FAILED - The specified file could not be decrypted. +. + +MessageId=6002 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_ENCRYPTED +Language=English +ERROR_FILE_ENCRYPTED - The specified file is encrypted and the user does not have the ability to decrypt it. +. + +MessageId=6003 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_RECOVERY_POLICY +Language=English +ERROR_NO_RECOVERY_POLICY - There is no valid encryption recovery policy configured for this system. +. + +MessageId=6004 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_EFS +Language=English +ERROR_NO_EFS - The required encryption driver is not loaded for this system. +. + +MessageId=6005 +Severity=Success +Facility=System +SymbolicName=ERROR_WRONG_EFS +Language=English +ERROR_WRONG_EFS - The file was encrypted with a different encryption driver than is currently loaded. +. + +MessageId=6006 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_USER_KEYS +Language=English +ERROR_NO_USER_KEYS - There are no EFS keys defined for the user. +. + +MessageId=6007 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_NOT_ENCRYPTED +Language=English +ERROR_FILE_NOT_ENCRYPTED - The specified file is not encrypted. +. + +MessageId=6008 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_EXPORT_FORMAT +Language=English +ERROR_NOT_EXPORT_FORMAT - The specified file is not in the defined EFS export format. +. + +MessageId=6009 +Severity=Success +Facility=System +SymbolicName=ERROR_FILE_READ_ONLY +Language=English +ERROR_FILE_READ_ONLY - The specified file is read only. +. + +MessageId=6010 +Severity=Success +Facility=System +SymbolicName=ERROR_DIR_EFS_DISALLOWED +Language=English +ERROR_DIR_EFS_DISALLOWED - The directory has been disabled for encryption. +. + +MessageId=6011 +Severity=Success +Facility=System +SymbolicName=ERROR_EFS_SERVER_NOT_TRUSTED +Language=English +ERROR_EFS_SERVER_NOT_TRUSTED - The server is not trusted for remote encryption operation. +. + +MessageId=6012 +Severity=Success +Facility=System +SymbolicName=ERROR_BAD_RECOVERY_POLICY +Language=English +ERROR_BAD_RECOVERY_POLICY - Recovery policy configured for this system contains invalid recovery certificate. +. + +MessageId=6013 +Severity=Success +Facility=System +SymbolicName=ERROR_EFS_ALG_BLOB_TOO_BIG +Language=English +ERROR_EFS_ALG_BLOB_TOO_BIG - The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file. +. + +MessageId=6014 +Severity=Success +Facility=System +SymbolicName=ERROR_VOLUME_NOT_SUPPORT_EFS +Language=English +ERROR_VOLUME_NOT_SUPPORT_EFS - The disk partition does not support file encryption. +. + +MessageId=6015 +Severity=Success +Facility=System +SymbolicName=ERROR_EFS_DISABLED +Language=English +ERROR_EFS_DISABLED - This machine is disabled for file encryption. +. + +MessageId=6016 +Severity=Success +Facility=System +SymbolicName=ERROR_EFS_VERSION_NOT_SUPPORT +Language=English +ERROR_EFS_VERSION_NOT_SUPPORT - A newer system is required to decrypt this encrypted file. +. + +MessageId=6118 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_BROWSER_SERVERS_FOUND +Language=English +ERROR_NO_BROWSER_SERVERS_FOUND - The list of servers for this workgroup is not currently available. +. + +MessageId=6200 +Severity=Success +Facility=System +SymbolicName=SCHED_E_SERVICE_NOT_LOCALSYSTEM +Language=English +SCHED_E_SERVICE_NOT_LOCALSYSTEM - The Task Scheduler service must be configured to run in the System account to function properly. Individual tasks may be configured to run in other accounts. +. + +MessageId=7001 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WINSTATION_NAME_INVALID +Language=English +ERROR_CTX_WINSTATION_NAME_INVALID - The specified session name is invalid. +. + +MessageId=7002 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_INVALID_PD +Language=English +ERROR_CTX_INVALID_PD - The specified protocol driver is invalid. +. + +MessageId=7003 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_PD_NOT_FOUND +Language=English +ERROR_CTX_PD_NOT_FOUND - The specified protocol driver was not found in the system path. +. + +MessageId=7004 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WD_NOT_FOUND +Language=English +ERROR_CTX_WD_NOT_FOUND - The specified terminal connection driver was not found in the system path. +. + +MessageId=7005 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY +Language=English +ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY - A registry key for event logging could not be created for this session. +. + +MessageId=7006 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SERVICE_NAME_COLLISION +Language=English +ERROR_CTX_SERVICE_NAME_COLLISION - A service with the same name already exists on the system. +. + +MessageId=7007 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CLOSE_PENDING +Language=English +ERROR_CTX_CLOSE_PENDING - A close operation is pending on the session. +. + +MessageId=7008 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_NO_OUTBUF +Language=English +ERROR_CTX_NO_OUTBUF - There are no free output buffers available. +. + +MessageId=7009 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_INF_NOT_FOUND +Language=English +ERROR_CTX_MODEM_INF_NOT_FOUND - The MODEM.INF file was not found. +. + +MessageId=7010 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_INVALID_MODEMNAME +Language=English +ERROR_CTX_INVALID_MODEMNAME - The modem name was not found in MODEM.INF. +. + +MessageId=7011 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_RESPONSE_ERROR +Language=English +ERROR_CTX_MODEM_RESPONSE_ERROR - The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem. +. + +MessageId=7012 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_RESPONSE_TIMEOUT +Language=English +ERROR_CTX_MODEM_RESPONSE_TIMEOUT - The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on. +. + +MessageId=7013 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_RESPONSE_NO_CARRIER +Language=English +ERROR_CTX_MODEM_RESPONSE_NO_CARRIER - Carrier detect has failed or carrier has been dropped due to disconnect. +. + +MessageId=7014 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE +Language=English +ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE - Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional. +. + +MessageId=7015 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_RESPONSE_BUSY +Language=English +ERROR_CTX_MODEM_RESPONSE_BUSY - Busy signal detected at remote site on callback. +. + +MessageId=7016 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_MODEM_RESPONSE_VOICE +Language=English +ERROR_CTX_MODEM_RESPONSE_VOICE - Voice detected at remote site on callback. +. + +MessageId=7017 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_TD_ERROR +Language=English +ERROR_CTX_TD_ERROR - Transport driver error +. + +MessageId=7022 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WINSTATION_NOT_FOUND +Language=English +ERROR_CTX_WINSTATION_NOT_FOUND - The specified session cannot be found. +. + +MessageId=7023 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WINSTATION_ALREADY_EXISTS +Language=English +ERROR_CTX_WINSTATION_ALREADY_EXISTS - The specified session name is already in use. +. + +MessageId=7024 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WINSTATION_BUSY +Language=English +ERROR_CTX_WINSTATION_BUSY - The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation. +. + +MessageId=7025 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_BAD_VIDEO_MODE +Language=English +ERROR_CTX_BAD_VIDEO_MODE - An attempt has been made to connect to a session whose video mode is not supported by the current client. +. + +MessageId=7035 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_GRAPHICS_INVALID +Language=English +ERROR_CTX_GRAPHICS_INVALID - The application attempted to enable DOS graphics mode. DOS graphics mode is not supported. +. + +MessageId=7037 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_LOGON_DISABLED +Language=English +ERROR_CTX_LOGON_DISABLED - Your interactive logon privilege has been disabled. Please contact your administrator. +. + +MessageId=7038 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_NOT_CONSOLE +Language=English +ERROR_CTX_NOT_CONSOLE - The requested operation can be performed only on the system console. This is most often the result of a driver or system DLL requiring direct console access. +. + +MessageId=7040 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CLIENT_QUERY_TIMEOUT +Language=English +ERROR_CTX_CLIENT_QUERY_TIMEOUT - The client failed to respond to the server connect message. +. + +MessageId=7041 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CONSOLE_DISCONNECT +Language=English +ERROR_CTX_CONSOLE_DISCONNECT - Disconnecting the console session is not supported. +. + +MessageId=7042 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CONSOLE_CONNECT +Language=English +ERROR_CTX_CONSOLE_CONNECT - Reconnecting a disconnected session to the console is not supported. +. + +MessageId=7044 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SHADOW_DENIED +Language=English +ERROR_CTX_SHADOW_DENIED - The request to control another session remotely was denied. +. + +MessageId=7045 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WINSTATION_ACCESS_DENIED +Language=English +ERROR_CTX_WINSTATION_ACCESS_DENIED - The requested session access is denied. +. + +MessageId=7049 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_INVALID_WD +Language=English +ERROR_CTX_INVALID_WD - The specified terminal connection driver is invalid. +. + +MessageId=7050 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SHADOW_INVALID +Language=English +ERROR_CTX_SHADOW_INVALID - The requested session cannot be controlled remotely. This may be because the session is disconnected or does not currently have a user logged on. +. + +MessageId=7051 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SHADOW_DISABLED +Language=English +ERROR_CTX_SHADOW_DISABLED - The requested session is not configured to allow remote control. +. + +MessageId=7052 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CLIENT_LICENSE_IN_USE +Language=English +ERROR_CTX_CLIENT_LICENSE_IN_USE - Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user. Please call your system administrator to obtain a unique license number. +. + +MessageId=7053 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CLIENT_LICENSE_NOT_SET +Language=English +ERROR_CTX_CLIENT_LICENSE_NOT_SET - Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client. Please contact your system administrator. +. + +MessageId=7054 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_LICENSE_NOT_AVAILABLE +Language=English +ERROR_CTX_LICENSE_NOT_AVAILABLE - The system has reached its licensed logon limit. Please try again later. +. + +MessageId=7055 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_LICENSE_CLIENT_INVALID +Language=English +ERROR_CTX_LICENSE_CLIENT_INVALID - The client you are using is not licensed to use this system. Your logon request is denied. +. + +MessageId=7056 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_LICENSE_EXPIRED +Language=English +ERROR_CTX_LICENSE_EXPIRED - The system license has expired. Your logon request is denied. +. + +MessageId=7057 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SHADOW_NOT_RUNNING +Language=English +ERROR_CTX_SHADOW_NOT_RUNNING - Remote control could not be terminated because the specified session is not currently being remotely controlled. +. + +MessageId=7058 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE +Language=English +ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE - The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported. +. + +MessageId=7059 +Severity=Success +Facility=System +SymbolicName=ERROR_ACTIVATION_COUNT_EXCEEDED +Language=English +ERROR_ACTIVATION_COUNT_EXCEEDED - Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared. +. + +MessageId=7060 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_WINSTATIONS_DISABLED +Language=English +ERROR_CTX_WINSTATIONS_DISABLED - Remote logins are currently disabled. +. + +MessageId=7061 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED +Language=English +ERROR_CTX_ENCRYPTION_LEVEL_REQUIRED - You do not have the proper encryption level to access this Session. +. + +MessageId=7062 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_SESSION_IN_USE +Language=English +ERROR_CTX_SESSION_IN_USE - The user %s\\%s is currently logged on to this computer. Only the current user or an administrator can log on to this computer. +. + +MessageId=7063 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_NO_FORCE_LOGOFF +Language=English +ERROR_CTX_NO_FORCE_LOGOFF - The user %s\\%s is already logged on to the console of this computer. You do not have permission to log in at this time. To resolve this issue, contact %s\\%s and have them log off. +. + +MessageId=7064 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_ACCOUNT_RESTRICTION +Language=English +ERROR_CTX_ACCOUNT_RESTRICTION - Unable to log you on because of an account restriction. +. + +MessageId=7065 +Severity=Success +Facility=System +SymbolicName=ERROR_RDP_PROTOCOL_ERROR +Language=English +ERROR_RDP_PROTOCOL_ERROR - The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client. +. + +MessageId=7066 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CDM_CONNECT +Language=English +ERROR_CTX_CDM_CONNECT - The Client Drive Mapping Service Has Connected on Terminal Connection. +. + +MessageId=7067 +Severity=Success +Facility=System +SymbolicName=ERROR_CTX_CDM_DISCONNECT +Language=English +ERROR_CTX_CDM_DISCONNECT - The Client Drive Mapping Service Has Disconnected on Terminal Connection. +. + +MessageId=8001 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_INVALID_API_SEQUENCE +Language=English +FRS_ERR_INVALID_API_SEQUENCE - The file replication service API was called incorrectly. +. + +MessageId=8002 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_STARTING_SERVICE +Language=English +FRS_ERR_STARTING_SERVICE - The file replication service cannot be started. +. + +MessageId=8003 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_STOPPING_SERVICE +Language=English +FRS_ERR_STOPPING_SERVICE - The file replication service cannot be stopped. +. + +MessageId=8004 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_INTERNAL_API +Language=English +FRS_ERR_INTERNAL_API - The file replication service API terminated the request. The event log may have more information. +. + +MessageId=8005 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_INTERNAL +Language=English +FRS_ERR_INTERNAL - The file replication service terminated the request. The event log may have more information. +. + +MessageId=8006 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_SERVICE_COMM +Language=English +FRS_ERR_SERVICE_COMM - The file replication service cannot be contacted. The event log may have more information. +. + +MessageId=8007 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_INSUFFICIENT_PRIV +Language=English +FRS_ERR_INSUFFICIENT_PRIV - The file replication service cannot satisfy the request because the user has insufficient privileges. The event log may have more information. +. + +MessageId=8008 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_AUTHENTICATION +Language=English +FRS_ERR_AUTHENTICATION - The file replication service cannot satisfy the request because authenticated RPC is not available. The event log may have more information. +. + +MessageId=8009 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_PARENT_INSUFFICIENT_PRIV +Language=English +FRS_ERR_PARENT_INSUFFICIENT_PRIV - The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller. The event log may have more information. +. + +MessageId=8010 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_PARENT_AUTHENTICATION +Language=English +FRS_ERR_PARENT_AUTHENTICATION - The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller. The event log may have more information. +. + +MessageId=8011 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_CHILD_TO_PARENT_COMM +Language=English +FRS_ERR_CHILD_TO_PARENT_COMM - The file replication service cannot communicate with the file replication service on the domain controller. The event log may have more information. +. + +MessageId=8012 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_PARENT_TO_CHILD_COMM +Language=English +FRS_ERR_PARENT_TO_CHILD_COMM - The file replication service on the domain controller cannot communicate with the file replication service on this computer. The event log may have more information. +. + +MessageId=8013 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_SYSVOL_POPULATE +Language=English +FRS_ERR_SYSVOL_POPULATE - The file replication service cannot populate the system volume because of an internal error. The event log may have more information. +. + +MessageId=8014 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_SYSVOL_POPULATE_TIMEOUT +Language=English +FRS_ERR_SYSVOL_POPULATE_TIMEOUT - The file replication service cannot populate the system volume because of an internal timeout. The event log may have more information. +. + +MessageId=8015 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_SYSVOL_IS_BUSY +Language=English +FRS_ERR_SYSVOL_IS_BUSY - The file replication service cannot process the request. The system volume is busy with a previous request. +. + +MessageId=8016 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_SYSVOL_DEMOTE +Language=English +FRS_ERR_SYSVOL_DEMOTE - The file replication service cannot stop replicating the system volume because of an internal error. The event log may have more information. +. + +MessageId=8017 +Severity=Success +Facility=System +SymbolicName=FRS_ERR_INVALID_SERVICE_PARAMETER +Language=English +FRS_ERR_INVALID_SERVICE_PARAMETER - The file replication service detected an invalid parameter. +. + +MessageId=8200 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_INSTALLED +Language=English +ERROR_DS_NOT_INSTALLED - An error occurred while installing the directory service. For more information, see the event log. +. + +MessageId=8201 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY +Language=English +ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY - The directory service evaluated group memberships locally. +. + +MessageId=8202 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_ATTRIBUTE_OR_VALUE +Language=English +ERROR_DS_NO_ATTRIBUTE_OR_VALUE - The specified directory service attribute or value does not exist. +. + +MessageId=8203 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_ATTRIBUTE_SYNTAX +Language=English +ERROR_DS_INVALID_ATTRIBUTE_SYNTAX - The attribute syntax specified to the directory service is invalid. +. + +MessageId=8204 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED +Language=English +ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED - The attribute type specified to the directory service is not defined. +. + +MessageId=8205 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS +Language=English +ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS - The specified directory service attribute or value already exists. +. + +MessageId=8206 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BUSY +Language=English +ERROR_DS_BUSY - The directory service is busy. +. + +MessageId=8207 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNAVAILABLE +Language=English +ERROR_DS_UNAVAILABLE - The directory service is unavailable. +. + +MessageId=8208 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_RIDS_ALLOCATED +Language=English +ERROR_DS_NO_RIDS_ALLOCATED - The directory service was unable to allocate a relative identifier. +. + +MessageId=8209 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_MORE_RIDS +Language=English +ERROR_DS_NO_MORE_RIDS - The directory service has exhausted the pool of relative identifiers. +. + +MessageId=8210 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INCORRECT_ROLE_OWNER +Language=English +ERROR_DS_INCORRECT_ROLE_OWNER - The requested operation could not be performed because the directory service is not the master for that type of operation. +. + +MessageId=8211 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_RIDMGR_INIT_ERROR +Language=English +ERROR_DS_RIDMGR_INIT_ERROR - The directory service was unable to initialize the subsystem that allocates relative identifiers. +. + +MessageId=8212 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_CLASS_VIOLATION +Language=English +ERROR_DS_OBJ_CLASS_VIOLATION - The requested operation did not satisfy one or more constraints associated with the class of the object. +. + +MessageId=8213 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_ON_NON_LEAF +Language=English +ERROR_DS_CANT_ON_NON_LEAF - The directory service can perform the requested operation only on a leaf object. +. + +MessageId=8214 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_ON_RDN +Language=English +ERROR_DS_CANT_ON_RDN - The directory service cannot perform the requested operation on the RDN attribute of an object. +. + +MessageId=8215 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOD_OBJ_CLASS +Language=English +ERROR_DS_CANT_MOD_OBJ_CLASS - The directory service detected an attempt to modify the object class of an object. +. + +MessageId=8216 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CROSS_DOM_MOVE_ERROR +Language=English +ERROR_DS_CROSS_DOM_MOVE_ERROR - The requested cross-domain move operation could not be performed. +. + +MessageId=8217 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GC_NOT_AVAILABLE +Language=English +ERROR_DS_GC_NOT_AVAILABLE - Unable to contact the global catalog server. +. + +MessageId=8218 +Severity=Success +Facility=System +SymbolicName=ERROR_SHARED_POLICY +Language=English +ERROR_SHARED_POLICY - The policy object is shared and can only be modified at the root. +. + +MessageId=8219 +Severity=Success +Facility=System +SymbolicName=ERROR_POLICY_OBJECT_NOT_FOUND +Language=English +ERROR_POLICY_OBJECT_NOT_FOUND - The policy object does not exist. +. + +MessageId=8220 +Severity=Success +Facility=System +SymbolicName=ERROR_POLICY_ONLY_IN_DS +Language=English +ERROR_POLICY_ONLY_IN_DS - The requested policy information is only in the directory service. +. + +MessageId=8221 +Severity=Success +Facility=System +SymbolicName=ERROR_PROMOTION_ACTIVE +Language=English +ERROR_PROMOTION_ACTIVE - A domain controller promotion is currently active. +. + +MessageId=8222 +Severity=Success +Facility=System +SymbolicName=ERROR_NO_PROMOTION_ACTIVE +Language=English +ERROR_NO_PROMOTION_ACTIVE - A domain controller promotion is not currently active +. + +MessageId=8224 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OPERATIONS_ERROR +Language=English +ERROR_DS_OPERATIONS_ERROR - An operations error occurred. +. + +MessageId=8225 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_PROTOCOL_ERROR +Language=English +ERROR_DS_PROTOCOL_ERROR - A protocol error occurred. +. + +MessageId=8226 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_TIMELIMIT_EXCEEDED +Language=English +ERROR_DS_TIMELIMIT_EXCEEDED - The time limit for this request was exceeded. +. + +MessageId=8227 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SIZELIMIT_EXCEEDED +Language=English +ERROR_DS_SIZELIMIT_EXCEEDED - The size limit for this request was exceeded. +. + +MessageId=8228 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ADMIN_LIMIT_EXCEEDED +Language=English +ERROR_DS_ADMIN_LIMIT_EXCEEDED - The administrative limit for this request was exceeded. +. + +MessageId=8229 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COMPARE_FALSE +Language=English +ERROR_DS_COMPARE_FALSE - The compare response was false. +. + +MessageId=8230 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COMPARE_TRUE +Language=English +ERROR_DS_COMPARE_TRUE - The compare response was true. +. + +MessageId=8231 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_AUTH_METHOD_NOT_SUPPORTED +Language=English +ERROR_DS_AUTH_METHOD_NOT_SUPPORTED - The requested authentication method is not supported by the server. +. + +MessageId=8232 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_STRONG_AUTH_REQUIRED +Language=English +ERROR_DS_STRONG_AUTH_REQUIRED - A more secure authentication method is required for this server. +. + +MessageId=8233 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INAPPROPRIATE_AUTH +Language=English +ERROR_DS_INAPPROPRIATE_AUTH - Inappropriate authentication. +. + +MessageId=8234 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_AUTH_UNKNOWN +Language=English +ERROR_DS_AUTH_UNKNOWN - The authentication mechanism is unknown. +. + +MessageId=8235 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REFERRAL +Language=English +ERROR_DS_REFERRAL - A referral was returned from the server. +. + +MessageId=8236 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNAVAILABLE_CRIT_EXTENSION +Language=English +ERROR_DS_UNAVAILABLE_CRIT_EXTENSION - The server does not support the requested critical extension. +. + +MessageId=8237 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CONFIDENTIALITY_REQUIRED +Language=English +ERROR_DS_CONFIDENTIALITY_REQUIRED - This request requires a secure connection. +. + +MessageId=8238 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INAPPROPRIATE_MATCHING +Language=English +ERROR_DS_INAPPROPRIATE_MATCHING - Inappropriate matching. +. + +MessageId=8239 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CONSTRAINT_VIOLATION +Language=English +ERROR_DS_CONSTRAINT_VIOLATION - A constraint violation occurred. +. + +MessageId=8240 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_SUCH_OBJECT +Language=English +ERROR_DS_NO_SUCH_OBJECT - There is no such object on the server. +. + +MessageId=8241 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ALIAS_PROBLEM +Language=English +ERROR_DS_ALIAS_PROBLEM - There is an alias problem. +. + +MessageId=8242 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_DN_SYNTAX +Language=English +ERROR_DS_INVALID_DN_SYNTAX - An invalid dn syntax has been specified. +. + +MessageId=8243 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_IS_LEAF +Language=English +ERROR_DS_IS_LEAF - The object is a leaf object. +. + +MessageId=8244 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ALIAS_DEREF_PROBLEM +Language=English +ERROR_DS_ALIAS_DEREF_PROBLEM - There is an alias dereferencing problem. +. + +MessageId=8245 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNWILLING_TO_PERFORM +Language=English +ERROR_DS_UNWILLING_TO_PERFORM - The server is unwilling to process the request. +. + +MessageId=8246 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LOOP_DETECT +Language=English +ERROR_DS_LOOP_DETECT - A loop has been detected. +. + +MessageId=8247 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAMING_VIOLATION +Language=English +ERROR_DS_NAMING_VIOLATION - There is a naming violation. +. + +MessageId=8248 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJECT_RESULTS_TOO_LARGE +Language=English +ERROR_DS_OBJECT_RESULTS_TOO_LARGE - The result set is too large. +. + +MessageId=8249 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_AFFECTS_MULTIPLE_DSAS +Language=English +ERROR_DS_AFFECTS_MULTIPLE_DSAS - The operation affects multiple DSAs +. + +MessageId=8250 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SERVER_DOWN +Language=English +ERROR_DS_SERVER_DOWN - The server is not operational. +. + +MessageId=8251 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LOCAL_ERROR +Language=English +ERROR_DS_LOCAL_ERROR - A local error has occurred. +. + +MessageId=8252 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ENCODING_ERROR +Language=English +ERROR_DS_ENCODING_ERROR - An encoding error has occurred. +. + +MessageId=8253 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DECODING_ERROR +Language=English +ERROR_DS_DECODING_ERROR - A decoding error has occurred. +. + +MessageId=8254 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_FILTER_UNKNOWN +Language=English +ERROR_DS_FILTER_UNKNOWN - The search filter cannot be recognized. +. + +MessageId=8255 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_PARAM_ERROR +Language=English +ERROR_DS_PARAM_ERROR - One or more parameters are illegal. +. + +MessageId=8256 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_SUPPORTED +Language=English +ERROR_DS_NOT_SUPPORTED - The specified method is not supported. +. + +MessageId=8257 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_RESULTS_RETURNED +Language=English +ERROR_DS_NO_RESULTS_RETURNED - No results were returned. +. + +MessageId=8258 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CONTROL_NOT_FOUND +Language=English +ERROR_DS_CONTROL_NOT_FOUND - The specified control is not supported by the server. +. + +MessageId=8259 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CLIENT_LOOP +Language=English +ERROR_DS_CLIENT_LOOP - A referral loop was detected by the client. +. + +MessageId=8260 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REFERRAL_LIMIT_EXCEEDED +Language=English +ERROR_DS_REFERRAL_LIMIT_EXCEEDED - The preset referral limit was exceeded. +. + +MessageId=8261 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SORT_CONTROL_MISSING +Language=English +ERROR_DS_SORT_CONTROL_MISSING - The search requires a SORT control. +. + +MessageId=8262 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OFFSET_RANGE_ERROR +Language=English +ERROR_DS_OFFSET_RANGE_ERROR - The search results exceed the offset range specified. +. + +MessageId=8301 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ROOT_MUST_BE_NC +Language=English +ERROR_DS_ROOT_MUST_BE_NC - The root object must be the head of a naming context. The root object cannot have an instantiated parent. +. + +MessageId=8302 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ADD_REPLICA_INHIBITED +Language=English +ERROR_DS_ADD_REPLICA_INHIBITED - The add replica operation cannot be performed. The naming context must be writeable in order to create the replica. +. + +MessageId=8303 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_NOT_DEF_IN_SCHEMA +Language=English +ERROR_DS_ATT_NOT_DEF_IN_SCHEMA - A reference to an attribute that is not defined in the schema occurred. +. + +MessageId=8304 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MAX_OBJ_SIZE_EXCEEDED +Language=English +ERROR_DS_MAX_OBJ_SIZE_EXCEEDED - The maximum size of an object has been exceeded. +. + +MessageId=8305 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_STRING_NAME_EXISTS +Language=English +ERROR_DS_OBJ_STRING_NAME_EXISTS - An attempt was made to add an object to the directory with a name that is already in use. +. + +MessageId=8306 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA +Language=English +ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA - An attempt was made to add an object of a class that does not have an RDN defined in the schema. +. + +MessageId=8307 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_RDN_DOESNT_MATCH_SCHEMA +Language=English +ERROR_DS_RDN_DOESNT_MATCH_SCHEMA - An attempt was made to add an object using an RDN that is not the RDN defined in the schema. +. + +MessageId=8308 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_REQUESTED_ATTS_FOUND +Language=English +ERROR_DS_NO_REQUESTED_ATTS_FOUND - None of the requested attributes were found on the objects. +. + +MessageId=8309 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_USER_BUFFER_TO_SMALL +Language=English +ERROR_DS_USER_BUFFER_TO_SMALL - The user buffer is too small. +. + +MessageId=8310 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_IS_NOT_ON_OBJ +Language=English +ERROR_DS_ATT_IS_NOT_ON_OBJ - The attribute specified in the operation is not present on the object. +. + +MessageId=8311 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ILLEGAL_MOD_OPERATION +Language=English +ERROR_DS_ILLEGAL_MOD_OPERATION - Illegal modify operation. Some aspect of the modification is not permitted. +. + +MessageId=8312 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_TOO_LARGE +Language=English +ERROR_DS_OBJ_TOO_LARGE - The specified object is too large. +. + +MessageId=8313 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BAD_INSTANCE_TYPE +Language=English +ERROR_DS_BAD_INSTANCE_TYPE - The specified instance type is not valid. +. + +MessageId=8314 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MASTERDSA_REQUIRED +Language=English +ERROR_DS_MASTERDSA_REQUIRED - The operation must be performed at a master DSA. +. + +MessageId=8315 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJECT_CLASS_REQUIRED +Language=English +ERROR_DS_OBJECT_CLASS_REQUIRED - The object class attribute must be specified. +. + +MessageId=8316 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MISSING_REQUIRED_ATT +Language=English +ERROR_DS_MISSING_REQUIRED_ATT - A required attribute is missing. +. + +MessageId=8317 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_NOT_DEF_FOR_CLASS +Language=English +ERROR_DS_ATT_NOT_DEF_FOR_CLASS - An attempt was made to modify an object to include an attribute that is not legal for its class +. + +MessageId=8318 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_ALREADY_EXISTS +Language=English +ERROR_DS_ATT_ALREADY_EXISTS - The specified attribute is already present on the object. +. + +MessageId=8320 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_ADD_ATT_VALUES +Language=English +ERROR_DS_CANT_ADD_ATT_VALUES - The specified attribute is not present, or has no values. +. + +MessageId=8321 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SINGLE_VALUE_CONSTRAINT +Language=English +ERROR_DS_SINGLE_VALUE_CONSTRAINT - Multiple values were specified for an attribute that can have only one value. +. + +MessageId=8322 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_RANGE_CONSTRAINT +Language=English +ERROR_DS_RANGE_CONSTRAINT - A value for the attribute was not in the acceptable range of values. +. + +MessageId=8323 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_VAL_ALREADY_EXISTS +Language=English +ERROR_DS_ATT_VAL_ALREADY_EXISTS - The specified value already exists. +. + +MessageId=8324 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_REM_MISSING_ATT +Language=English +ERROR_DS_CANT_REM_MISSING_ATT - The attribute cannot be removed because it is not present on the object. +. + +MessageId=8325 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_REM_MISSING_ATT_VAL +Language=English +ERROR_DS_CANT_REM_MISSING_ATT_VAL - The attribute value cannot be removed because it is not present on the object. +. + +MessageId=8326 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ROOT_CANT_BE_SUBREF +Language=English +ERROR_DS_ROOT_CANT_BE_SUBREF - The specified root object cannot be a subref. +. + +MessageId=8327 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_CHAINING +Language=English +ERROR_DS_NO_CHAINING - Chaining is not permitted. +. + +MessageId=8328 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_CHAINED_EVAL +Language=English +ERROR_DS_NO_CHAINED_EVAL - Chained evaluation is not permitted. +. + +MessageId=8329 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_PARENT_OBJECT +Language=English +ERROR_DS_NO_PARENT_OBJECT - The operation could not be performed because the object's parent is either uninstantiated or deleted. +. + +MessageId=8330 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_PARENT_IS_AN_ALIAS +Language=English +ERROR_DS_PARENT_IS_AN_ALIAS - Having a parent that is an alias is not permitted. Aliases are leaf objects. +. + +MessageId=8331 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MIX_MASTER_AND_REPS +Language=English +ERROR_DS_CANT_MIX_MASTER_AND_REPS - The object and parent must be of the same type, either both masters or both replicas. +. + +MessageId=8332 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CHILDREN_EXIST +Language=English +ERROR_DS_CHILDREN_EXIST - The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object. +. + +MessageId=8333 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_NOT_FOUND +Language=English +ERROR_DS_OBJ_NOT_FOUND - Directory object not found. +. + +MessageId=8334 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ALIASED_OBJ_MISSING +Language=English +ERROR_DS_ALIASED_OBJ_MISSING - The aliased object is missing. +. + +MessageId=8335 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BAD_NAME_SYNTAX +Language=English +ERROR_DS_BAD_NAME_SYNTAX - The object name has bad syntax. +. + +MessageId=8336 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ALIAS_POINTS_TO_ALIAS +Language=English +ERROR_DS_ALIAS_POINTS_TO_ALIAS - It is not permitted for an alias to refer to another alias. +. + +MessageId=8337 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DEREF_ALIAS +Language=English +ERROR_DS_CANT_DEREF_ALIAS - The alias cannot be dereferenced. +. + +MessageId=8338 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OUT_OF_SCOPE +Language=English +ERROR_DS_OUT_OF_SCOPE - The operation is out of scope. +. + +MessageId=8339 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJECT_BEING_REMOVED +Language=English +ERROR_DS_OBJECT_BEING_REMOVED - The operation cannot continue because the object is in the process of being removed. +. + +MessageId=8340 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DELETE_DSA_OBJ +Language=English +ERROR_DS_CANT_DELETE_DSA_OBJ - The DSA object cannot be deleted. +. + +MessageId=8341 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GENERIC_ERROR +Language=English +ERROR_DS_GENERIC_ERROR - A directory service error has occurred. +. + +MessageId=8342 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DSA_MUST_BE_INT_MASTER +Language=English +ERROR_DS_DSA_MUST_BE_INT_MASTER - The operation can only be performed on an internal master DSA object. +. + +MessageId=8343 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CLASS_NOT_DSA +Language=English +ERROR_DS_CLASS_NOT_DSA - The object must be of class DSA. +. + +MessageId=8344 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INSUFF_ACCESS_RIGHTS +Language=English +ERROR_DS_INSUFF_ACCESS_RIGHTS - Insufficient access rights to perform the operation. +. + +MessageId=8345 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ILLEGAL_SUPERIOR +Language=English +ERROR_DS_ILLEGAL_SUPERIOR - The object cannot be added because the parent is not on the list of possible superiors. +. + +MessageId=8346 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATTRIBUTE_OWNED_BY_SAM +Language=English +ERROR_DS_ATTRIBUTE_OWNED_BY_SAM - Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM). +. + +MessageId=8347 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_TOO_MANY_PARTS +Language=English +ERROR_DS_NAME_TOO_MANY_PARTS - The name has too many parts. +. + +MessageId=8348 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_TOO_LONG +Language=English +ERROR_DS_NAME_TOO_LONG - The name is too long. +. + +MessageId=8349 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_VALUE_TOO_LONG +Language=English +ERROR_DS_NAME_VALUE_TOO_LONG - The name value is too long. +. + +MessageId=8350 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_UNPARSEABLE +Language=English +ERROR_DS_NAME_UNPARSEABLE - The directory service encountered an error parsing a name. +. + +MessageId=8351 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_TYPE_UNKNOWN +Language=English +ERROR_DS_NAME_TYPE_UNKNOWN - The directory service cannot get the attribute type for a name. +. + +MessageId=8352 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_AN_OBJECT +Language=English +ERROR_DS_NOT_AN_OBJECT - The name does not identify an object; the name identifies a phantom. +. + +MessageId=8353 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SEC_DESC_TOO_SHORT +Language=English +ERROR_DS_SEC_DESC_TOO_SHORT - The security descriptor is too short. +. + +MessageId=8354 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SEC_DESC_INVALID +Language=English +ERROR_DS_SEC_DESC_INVALID - The security descriptor is invalid. +. + +MessageId=8355 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_DELETED_NAME +Language=English +ERROR_DS_NO_DELETED_NAME - Failed to create name for deleted object. +. + +MessageId=8356 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SUBREF_MUST_HAVE_PARENT +Language=English +ERROR_DS_SUBREF_MUST_HAVE_PARENT - The parent of a new subref must exist. +. + +MessageId=8357 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NCNAME_MUST_BE_NC +Language=English +ERROR_DS_NCNAME_MUST_BE_NC - The object must be a naming context. +. + +MessageId=8358 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_ADD_SYSTEM_ONLY +Language=English +ERROR_DS_CANT_ADD_SYSTEM_ONLY - It is not permitted to add an attribute which is owned by the system. +. + +MessageId=8359 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CLASS_MUST_BE_CONCRETE +Language=English +ERROR_DS_CLASS_MUST_BE_CONCRETE - The class of the object must be structural; you cannot instantiate an abstract class. +. + +MessageId=8360 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_DMD +Language=English +ERROR_DS_INVALID_DMD - The schema object could not be found. +. + +MessageId=8361 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_GUID_EXISTS +Language=English +ERROR_DS_OBJ_GUID_EXISTS - A local object with this GUID (dead or alive) already exists. +. + +MessageId=8362 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_ON_BACKLINK +Language=English +ERROR_DS_NOT_ON_BACKLINK - The operation cannot be performed on a back link. +. + +MessageId=8363 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_CROSSREF_FOR_NC +Language=English +ERROR_DS_NO_CROSSREF_FOR_NC - The cross reference for the specified naming context could not be found. +. + +MessageId=8364 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SHUTTING_DOWN +Language=English +ERROR_DS_SHUTTING_DOWN - The operation could not be performed because the directory service is shutting down. +. + +MessageId=8365 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNKNOWN_OPERATION +Language=English +ERROR_DS_UNKNOWN_OPERATION - The directory service request is invalid. +. + +MessageId=8366 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_ROLE_OWNER +Language=English +ERROR_DS_INVALID_ROLE_OWNER - The role owner attribute could not be read. +. + +MessageId=8367 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COULDNT_CONTACT_FSMO +Language=English +ERROR_DS_COULDNT_CONTACT_FSMO - The requested FSMO operation failed. The current FSMO holder could not be reached. +. + +MessageId=8368 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CROSS_NC_DN_RENAME +Language=English +ERROR_DS_CROSS_NC_DN_RENAME - Modification of a DN across a naming context is not permitted. +. + +MessageId=8369 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOD_SYSTEM_ONLY +Language=English +ERROR_DS_CANT_MOD_SYSTEM_ONLY - The attribute cannot be modified because it is owned by the system. +. + +MessageId=8370 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REPLICATOR_ONLY +Language=English +ERROR_DS_REPLICATOR_ONLY - Only the replicator can perform this function. +. + +MessageId=8371 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_CLASS_NOT_DEFINED +Language=English +ERROR_DS_OBJ_CLASS_NOT_DEFINED - The specified class is not defined. +. + +MessageId=8372 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OBJ_CLASS_NOT_SUBCLASS +Language=English +ERROR_DS_OBJ_CLASS_NOT_SUBCLASS - The specified class is not a subclass. +. + +MessageId=8373 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_REFERENCE_INVALID +Language=English +ERROR_DS_NAME_REFERENCE_INVALID - The name reference is invalid. +. + +MessageId=8374 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CROSS_REF_EXISTS +Language=English +ERROR_DS_CROSS_REF_EXISTS - A cross reference already exists. +. + +MessageId=8375 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DEL_MASTER_CROSSREF +Language=English +ERROR_DS_CANT_DEL_MASTER_CROSSREF - It is not permitted to delete a master cross reference. +. + +MessageId=8376 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD +Language=English +ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD - Subtree notifications are only supported on NC heads. +. + +MessageId=8377 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX +Language=English +ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX - Notification filter is too complex. +. + +MessageId=8378 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_RDN +Language=English +ERROR_DS_DUP_RDN - Schema update failed: duplicate RDN. +. + +MessageId=8379 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_OID +Language=English +ERROR_DS_DUP_OID - Schema update failed: duplicate OID +. + +MessageId=8380 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_MAPI_ID +Language=English +ERROR_DS_DUP_MAPI_ID - Schema update failed: duplicate MAPI identifier. +. + +MessageId=8381 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_SCHEMA_ID_GUID +Language=English +ERROR_DS_DUP_SCHEMA_ID_GUID - Schema update failed: duplicate schema-id GUID. +. + +MessageId=8382 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_LDAP_DISPLAY_NAME +Language=English +ERROR_DS_DUP_LDAP_DISPLAY_NAME - Schema update failed: duplicate LDAP display name. +. + +MessageId=8383 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SEMANTIC_ATT_TEST +Language=English +ERROR_DS_SEMANTIC_ATT_TEST - Schema update failed: range-lower less than range upper +. + +MessageId=8384 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SYNTAX_MISMATCH +Language=English +ERROR_DS_SYNTAX_MISMATCH - Schema update failed: syntax mismatch +. + +MessageId=8385 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTS_IN_MUST_HAVE +Language=English +ERROR_DS_EXISTS_IN_MUST_HAVE - Schema deletion failed: attribute is used in must-contain +. + +MessageId=8386 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTS_IN_MAY_HAVE +Language=English +ERROR_DS_EXISTS_IN_MAY_HAVE - Schema deletion failed: attribute is used in may-contain +. + +MessageId=8387 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NONEXISTENT_MAY_HAVE +Language=English +ERROR_DS_NONEXISTENT_MAY_HAVE - Schema update failed: attribute in may-contain does not exist +. + +MessageId=8388 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NONEXISTENT_MUST_HAVE +Language=English +ERROR_DS_NONEXISTENT_MUST_HAVE - Schema update failed: attribute in must-contain does not exist +. + +MessageId=8389 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_AUX_CLS_TEST_FAIL +Language=English +ERROR_DS_AUX_CLS_TEST_FAIL - Schema update failed: class in aux-class list does not exist or is not an auxiliary class +. + +MessageId=8390 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NONEXISTENT_POSS_SUP +Language=English +ERROR_DS_NONEXISTENT_POSS_SUP - Schema update failed: class in poss-superiors does not exist +. + +MessageId=8391 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SUB_CLS_TEST_FAIL +Language=English +ERROR_DS_SUB_CLS_TEST_FAIL - Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules +. + +MessageId=8392 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BAD_RDN_ATT_ID_SYNTAX +Language=English +ERROR_DS_BAD_RDN_ATT_ID_SYNTAX - Schema update failed: Rdn-Att-Id has wrong syntax +. + +MessageId=8393 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTS_IN_AUX_CLS +Language=English +ERROR_DS_EXISTS_IN_AUX_CLS - Schema deletion failed: class is used as auxiliary class +. + +MessageId=8394 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTS_IN_SUB_CLS +Language=English +ERROR_DS_EXISTS_IN_SUB_CLS - Schema deletion failed: class is used as sub class +. + +MessageId=8395 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTS_IN_POSS_SUP +Language=English +ERROR_DS_EXISTS_IN_POSS_SUP - Schema deletion failed: class is used as poss superior +. + +MessageId=8396 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_RECALCSCHEMA_FAILED +Language=English +ERROR_DS_RECALCSCHEMA_FAILED - Schema update failed in recalculating validation cache. +. + +MessageId=8397 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_TREE_DELETE_NOT_FINISHED +Language=English +ERROR_DS_TREE_DELETE_NOT_FINISHED - The tree deletion is not finished. +. + +MessageId=8398 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DELETE +Language=English +ERROR_DS_CANT_DELETE - The requested delete operation could not be performed. +. + +MessageId=8399 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_SCHEMA_REQ_ID +Language=English +ERROR_DS_ATT_SCHEMA_REQ_ID - Cannot read the governs class identifier for the schema record. +. + +MessageId=8400 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BAD_ATT_SCHEMA_SYNTAX +Language=English +ERROR_DS_BAD_ATT_SCHEMA_SYNTAX - The attribute schema has bad syntax. +. + +MessageId=8401 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_CACHE_ATT +Language=English +ERROR_DS_CANT_CACHE_ATT - The attribute could not be cached. +. + +MessageId=8402 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_CACHE_CLASS +Language=English +ERROR_DS_CANT_CACHE_CLASS - The class could not be cached. +. + +MessageId=8403 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_REMOVE_ATT_CACHE +Language=English +ERROR_DS_CANT_REMOVE_ATT_CACHE - The attribute could not be removed from the cache. +. + +MessageId=8404 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_REMOVE_CLASS_CACHE +Language=English +ERROR_DS_CANT_REMOVE_CLASS_CACHE - The class could not be removed from the cache. +. + +MessageId=8405 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_RETRIEVE_DN +Language=English +ERROR_DS_CANT_RETRIEVE_DN - The distinguished name attribute could not be read. +. + +MessageId=8406 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MISSING_SUPREF +Language=English +ERROR_DS_MISSING_SUPREF - No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest. +. + +MessageId=8407 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_RETRIEVE_INSTANCE +Language=English +ERROR_DS_CANT_RETRIEVE_INSTANCE - The instance type attribute could not be retrieved. +. + +MessageId=8408 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CODE_INCONSISTENCY +Language=English +ERROR_DS_CODE_INCONSISTENCY - An internal error has occurred. +. + +MessageId=8409 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DATABASE_ERROR +Language=English +ERROR_DS_DATABASE_ERROR - A database error has occurred. +. + +MessageId=8410 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GOVERNSID_MISSING +Language=English +ERROR_DS_GOVERNSID_MISSING - The attribute GOVERNSID is missing. +. + +MessageId=8411 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MISSING_EXPECTED_ATT +Language=English +ERROR_DS_MISSING_EXPECTED_ATT - An expected attribute is missing. +. + +MessageId=8412 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NCNAME_MISSING_CR_REF +Language=English +ERROR_DS_NCNAME_MISSING_CR_REF - The specified naming context is missing a cross reference. +. + +MessageId=8413 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SECURITY_CHECKING_ERROR +Language=English +ERROR_DS_SECURITY_CHECKING_ERROR - A security checking error has occurred. +. + +MessageId=8414 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SCHEMA_NOT_LOADED +Language=English +ERROR_DS_SCHEMA_NOT_LOADED - The schema is not loaded. +. + +MessageId=8415 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SCHEMA_ALLOC_FAILED +Language=English +ERROR_DS_SCHEMA_ALLOC_FAILED - Schema allocation failed. Please check if the machine is running low on memory. +. + +MessageId=8416 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ATT_SCHEMA_REQ_SYNTAX +Language=English +ERROR_DS_ATT_SCHEMA_REQ_SYNTAX - Failed to obtain the required syntax for the attribute schema. +. + +MessageId=8417 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GCVERIFY_ERROR +Language=English +ERROR_DS_GCVERIFY_ERROR - The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available. +. + +MessageId=8418 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SCHEMA_MISMATCH +Language=English +ERROR_DS_DRA_SCHEMA_MISMATCH - The replication operation failed because of a schema mismatch between the servers involved. +. + +MessageId=8419 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_FIND_DSA_OBJ +Language=English +ERROR_DS_CANT_FIND_DSA_OBJ - The DSA object could not be found. +. + +MessageId=8420 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_FIND_EXPECTED_NC +Language=English +ERROR_DS_CANT_FIND_EXPECTED_NC - The naming context could not be found. +. + +MessageId=8421 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_FIND_NC_IN_CACHE +Language=English +ERROR_DS_CANT_FIND_NC_IN_CACHE - The naming context could not be found in the cache. +. + +MessageId=8422 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_RETRIEVE_CHILD +Language=English +ERROR_DS_CANT_RETRIEVE_CHILD - The child object could not be retrieved. +. + +MessageId=8423 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SECURITY_ILLEGAL_MODIFY +Language=English +ERROR_DS_SECURITY_ILLEGAL_MODIFY - The modification was not permitted for security reasons. +. + +MessageId=8424 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_REPLACE_HIDDEN_REC +Language=English +ERROR_DS_CANT_REPLACE_HIDDEN_REC - The operation cannot replace the hidden record. +. + +MessageId=8425 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BAD_HIERARCHY_FILE +Language=English +ERROR_DS_BAD_HIERARCHY_FILE - The hierarchy file is invalid. +. + +MessageId=8426 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED +Language=English +ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED - The attempt to build the hierarchy table failed. +. + +MessageId=8427 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CONFIG_PARAM_MISSING +Language=English +ERROR_DS_CONFIG_PARAM_MISSING - The directory configuration parameter is missing from the registry. +. + +MessageId=8428 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COUNTING_AB_INDICES_FAILED +Language=English +ERROR_DS_COUNTING_AB_INDICES_FAILED - The attempt to count the address book indices failed. +. + +MessageId=8429 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED +Language=English +ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED - The allocation of the hierarchy table failed. +. + +MessageId=8430 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INTERNAL_FAILURE +Language=English +ERROR_DS_INTERNAL_FAILURE - The directory service encountered an internal failure. +. + +MessageId=8431 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNKNOWN_ERROR +Language=English +ERROR_DS_UNKNOWN_ERROR - The directory service encountered an unknown failure. +. + +MessageId=8432 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ROOT_REQUIRES_CLASS_TOP +Language=English +ERROR_DS_ROOT_REQUIRES_CLASS_TOP - A root object requires a class of 'top'. +. + +MessageId=8433 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REFUSING_FSMO_ROLES +Language=English +ERROR_DS_REFUSING_FSMO_ROLES - This directory server is shutting down, and cannot take ownership of new floating single-master operation roles. +. + +MessageId=8434 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MISSING_FSMO_SETTINGS +Language=English +ERROR_DS_MISSING_FSMO_SETTINGS - The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles. +. + +MessageId=8435 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNABLE_TO_SURRENDER_ROLES +Language=English +ERROR_DS_UNABLE_TO_SURRENDER_ROLES - The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers. +. + +MessageId=8436 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_GENERIC +Language=English +ERROR_DS_DRA_GENERIC - The replication operation failed. +. + +MessageId=8437 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_INVALID_PARAMETER +Language=English +ERROR_DS_DRA_INVALID_PARAMETER - An invalid parameter was specified for this replication operation. +. + +MessageId=8438 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_BUSY +Language=English +ERROR_DS_DRA_BUSY - The directory service is too busy to complete the replication operation at this time. +. + +MessageId=8439 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_BAD_DN +Language=English +ERROR_DS_DRA_BAD_DN - The distinguished name specified for this replication operation is invalid. +. + +MessageId=8440 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_BAD_NC +Language=English +ERROR_DS_DRA_BAD_NC - The naming context specified for this replication operation is invalid. +. + +MessageId=8441 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_DN_EXISTS +Language=English +ERROR_DS_DRA_DN_EXISTS - The distinguished name specified for this replication operation already exists. +. + +MessageId=8442 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_INTERNAL_ERROR +Language=English +ERROR_DS_DRA_INTERNAL_ERROR - The replication system encountered an internal error. +. + +MessageId=8443 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_INCONSISTENT_DIT +Language=English +ERROR_DS_DRA_INCONSISTENT_DIT - The replication operation encountered a database inconsistency. +. + +MessageId=8444 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_CONNECTION_FAILED +Language=English +ERROR_DS_DRA_CONNECTION_FAILED - The server specified for this replication operation could not be contacted. +. + +MessageId=8445 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_BAD_INSTANCE_TYPE +Language=English +ERROR_DS_DRA_BAD_INSTANCE_TYPE - The replication operation encountered an object with an invalid instance type. +. + +MessageId=8446 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_OUT_OF_MEM +Language=English +ERROR_DS_DRA_OUT_OF_MEM - The replication operation failed to allocate memory. +. + +MessageId=8447 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_MAIL_PROBLEM +Language=English +ERROR_DS_DRA_MAIL_PROBLEM - The replication operation encountered an error with the mail system. +. + +MessageId=8448 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_REF_ALREADY_EXISTS +Language=English +ERROR_DS_DRA_REF_ALREADY_EXISTS - The replication reference information for the target server already exists. +. + +MessageId=8449 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_REF_NOT_FOUND +Language=English +ERROR_DS_DRA_REF_NOT_FOUND - The replication reference information for the target server does not exist. +. + +MessageId=8450 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_OBJ_IS_REP_SOURCE +Language=English +ERROR_DS_DRA_OBJ_IS_REP_SOURCE - The naming context cannot be removed because it is replicated to another server. +. + +MessageId=8451 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_DB_ERROR +Language=English +ERROR_DS_DRA_DB_ERROR - The replication operation encountered a database error. +. + +MessageId=8452 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_NO_REPLICA +Language=English +ERROR_DS_DRA_NO_REPLICA - The naming context is in the process of being removed or is not replicated from the specified server. +. + +MessageId=8453 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_ACCESS_DENIED +Language=English +ERROR_DS_DRA_ACCESS_DENIED - Replication access was denied. +. + +MessageId=8454 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_NOT_SUPPORTED +Language=English +ERROR_DS_DRA_NOT_SUPPORTED - The requested operation is not supported by this version of the directory service. +. + +MessageId=8455 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_RPC_CANCELLED +Language=English +ERROR_DS_DRA_RPC_CANCELLED - The replication remote procedure call was cancelled. +. + +MessageId=8456 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SOURCE_DISABLED +Language=English +ERROR_DS_DRA_SOURCE_DISABLED - The source server is currently rejecting replication requests. +. + +MessageId=8457 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SINK_DISABLED +Language=English +ERROR_DS_DRA_SINK_DISABLED - The destination server is currently rejecting replication requests. +. + +MessageId=8458 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_NAME_COLLISION +Language=English +ERROR_DS_DRA_NAME_COLLISION - The replication operation failed due to a collision of object names. +. + +MessageId=8459 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SOURCE_REINSTALLED +Language=English +ERROR_DS_DRA_SOURCE_REINSTALLED - The replication source has been reinstalled. +. + +MessageId=8460 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_MISSING_PARENT +Language=English +ERROR_DS_DRA_MISSING_PARENT - The replication operation failed because a required parent object is missing. +. + +MessageId=8461 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_PREEMPTED +Language=English +ERROR_DS_DRA_PREEMPTED - The replication operation was preempted. +. + +MessageId=8462 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_ABANDON_SYNC +Language=English +ERROR_DS_DRA_ABANDON_SYNC - The replication synchronization attempt was abandoned because of a lack of updates. +. + +MessageId=8463 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SHUTDOWN +Language=English +ERROR_DS_DRA_SHUTDOWN - The replication operation was terminated because the system is shutting down. +. + +MessageId=8464 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET +Language=English +ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET - Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of the source partial attribute set. +. + +MessageId=8465 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA +Language=English +ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA - The replication synchronization attempt failed because a master replica attempted to sync from a partial replica. +. + +MessageId=8466 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_EXTN_CONNECTION_FAILED +Language=English +ERROR_DS_DRA_EXTN_CONNECTION_FAILED - The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation. +. + +MessageId=8467 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INSTALL_SCHEMA_MISMATCH +Language=English +ERROR_DS_INSTALL_SCHEMA_MISMATCH - The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer. +. + +MessageId=8468 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_LINK_ID +Language=English +ERROR_DS_DUP_LINK_ID - Schema update failed: An attribute with the same link identifier already exists. +. + +MessageId=8469 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_RESOLVING +Language=English +ERROR_DS_NAME_ERROR_RESOLVING - Name translation: Generic processing error. +. + +MessageId=8470 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_NOT_FOUND +Language=English +ERROR_DS_NAME_ERROR_NOT_FOUND - Name translation: Could not find the name or insufficient right to see name. +. + +MessageId=8471 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_NOT_UNIQUE +Language=English +ERROR_DS_NAME_ERROR_NOT_UNIQUE - Name translation: Input name mapped to more than one output name. +. + +MessageId=8472 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_NO_MAPPING +Language=English +ERROR_DS_NAME_ERROR_NO_MAPPING - Name translation: Input name found, but not the associated output format. +. + +MessageId=8473 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_DOMAIN_ONLY +Language=English +ERROR_DS_NAME_ERROR_DOMAIN_ONLY - Name translation: Unable to resolve completely, only the domain was found. +. + +MessageId=8474 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING +Language=English +ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING - Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire. +. + +MessageId=8475 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CONSTRUCTED_ATT_MOD +Language=English +ERROR_DS_CONSTRUCTED_ATT_MOD - Modification of a constructed attribute is not allowed. +. + +MessageId=8476 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_WRONG_OM_OBJ_CLASS +Language=English +ERROR_DS_WRONG_OM_OBJ_CLASS - The OM-Object-Class specified is incorrect for an attribute with the specified syntax. +. + +MessageId=8477 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_REPL_PENDING +Language=English +ERROR_DS_DRA_REPL_PENDING - The replication request has been posted; waiting for reply. +. + +MessageId=8478 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DS_REQUIRED +Language=English +ERROR_DS_DS_REQUIRED - The requested operation requires a directory service, and none was available. +. + +MessageId=8479 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_LDAP_DISPLAY_NAME +Language=English +ERROR_DS_INVALID_LDAP_DISPLAY_NAME - The LDAP display name of the class or attribute contains non-ASCII characters. +. + +MessageId=8480 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NON_BASE_SEARCH +Language=English +ERROR_DS_NON_BASE_SEARCH - The requested search operation is only supported for base searches. +. + +MessageId=8481 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_RETRIEVE_ATTS +Language=English +ERROR_DS_CANT_RETRIEVE_ATTS - The search failed to retrieve attributes from the database. +. + +MessageId=8482 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_BACKLINK_WITHOUT_LINK +Language=English +ERROR_DS_BACKLINK_WITHOUT_LINK - The schema update operation tried to add a backward link attribute that has no corresponding forward link. +. + +MessageId=8483 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EPOCH_MISMATCH +Language=English +ERROR_DS_EPOCH_MISMATCH - Source and destination of a cross domain move do not agree on the object's epoch number. Either source or destination does not have the latest version of the object. +. + +MessageId=8484 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_NAME_MISMATCH +Language=English +ERROR_DS_SRC_NAME_MISMATCH - Source and destination of a cross domain move do not agree on the object's current name. Either source or destination does not have the latest version of the object. +. + +MessageId=8485 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_AND_DST_NC_IDENTICAL +Language=English +ERROR_DS_SRC_AND_DST_NC_IDENTICAL - Source and destination of a cross domain move operation are identical. Caller should use local move operation instead of cross domain move operation. +. + +MessageId=8486 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DST_NC_MISMATCH +Language=English +ERROR_DS_DST_NC_MISMATCH - Source and destination for a cross domain move are not in agreement on the naming contexts in the forest. Either source or destination does not have the latest version of the Partitions container. +. + +MessageId=8487 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC +Language=English +ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC - Destination of a cross domain move is not authoritative for the destination naming context. +. + +MessageId=8488 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_GUID_MISMATCH +Language=English +ERROR_DS_SRC_GUID_MISMATCH - Source and destination of a cross domain move do not agree on the identity of the source object. Either source or destination does not have the latest version of the source object. +. + +MessageId=8489 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOVE_DELETED_OBJECT +Language=English +ERROR_DS_CANT_MOVE_DELETED_OBJECT - Object being moved across domains is already known to be deleted by the destination server. The source server does not have the latest version of the source object. +. + +MessageId=8490 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_PDC_OPERATION_IN_PROGRESS +Language=English +ERROR_DS_PDC_OPERATION_IN_PROGRESS - Another operation, which requires exclusive access to the PDC PSMO, is already in progress. +. + +MessageId=8491 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD +Language=English +ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD - A cross domain move operation failed such that the two versions of the moved object exist - one each in the source and destination domains. The destination object needs to be removed to restore the system to a consistent state. +. + +MessageId=8492 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION +Language=English +ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION - This object may not be moved across domain boundaries either because cross domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move. +. + +MessageId=8493 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS +Language=English +ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS - Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group. Remove the object from any account group memberships and retry. +. + +MessageId=8494 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NC_MUST_HAVE_NC_PARENT +Language=English +ERROR_DS_NC_MUST_HAVE_NC_PARENT - A naming context head must be the immediate child of another naming context head, not of an interior node. +. + +MessageId=8495 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE +Language=English +ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE - The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context. Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters) +. + +MessageId=8496 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DST_DOMAIN_NOT_NATIVE +Language=English +ERROR_DS_DST_DOMAIN_NOT_NATIVE - Destination domain must be in native mode. +. + +MessageId=8497 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER +Language=English +ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER - The operation cannot be performed because the server does not have an infrastructure container in the domain of interest. +. + +MessageId=8498 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOVE_ACCOUNT_GROUP +Language=English +ERROR_DS_CANT_MOVE_ACCOUNT_GROUP - Cross-domain move of non-empty account groups is not allowed. +. + +MessageId=8499 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOVE_RESOURCE_GROUP +Language=English +ERROR_DS_CANT_MOVE_RESOURCE_GROUP - Cross-domain move of non-empty resource groups is not allowed. +. + +MessageId=8500 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_SEARCH_FLAG +Language=English +ERROR_DS_INVALID_SEARCH_FLAG - The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings. +. + +MessageId=8501 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_TREE_DELETE_ABOVE_NC +Language=English +ERROR_DS_NO_TREE_DELETE_ABOVE_NC - Tree deletions starting at an object which has an NC head as a descendant are not allowed. +. + +MessageId=8502 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE +Language=English +ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE - The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use. +. + +MessageId=8503 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE +Language=English +ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE - The directory service failed to identify the list of objects to delete while attempting a tree deletion. +. + +MessageId=8504 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SAM_INIT_FAILURE +Language=English +ERROR_DS_SAM_INIT_FAILURE - Security Accounts Manager initialization failed because of the following error: %1. +Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information. +. + +MessageId=8505 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SENSITIVE_GROUP_VIOLATION +Language=English +ERROR_DS_SENSITIVE_GROUP_VIOLATION - Only an administrator can modify the membership list of an administrative group. +. + +MessageId=8506 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOD_PRIMARYGROUPID +Language=English +ERROR_DS_CANT_MOD_PRIMARYGROUPID - Cannot change the primary group ID of a domain controller account. +. + +MessageId=8507 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD +Language=English +ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD - An attempt is made to modify the base schema. +. + +MessageId=8508 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NONSAFE_SCHEMA_CHANGE +Language=English +ERROR_DS_NONSAFE_SCHEMA_CHANGE - Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed. +. + +MessageId=8509 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SCHEMA_UPDATE_DISALLOWED +Language=English +ERROR_DS_SCHEMA_UPDATE_DISALLOWED - Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner. +. + +MessageId=8510 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_CREATE_UNDER_SCHEMA +Language=English +ERROR_DS_CANT_CREATE_UNDER_SCHEMA - An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container. +. + +MessageId=8511 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INSTALL_NO_SRC_SCH_VERSION +Language=English +ERROR_DS_INSTALL_NO_SRC_SCH_VERSION - The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it. +. + +MessageId=8512 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE +Language=English +ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE - The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory. +. + +MessageId=8513 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_GROUP_TYPE +Language=English +ERROR_DS_INVALID_GROUP_TYPE - The specified group type is invalid. +. + +MessageId=8514 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN +Language=English +ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN - Cannot nest global groups in a mixed domain if the group is security-enabled. +. + +MessageId=8515 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN +Language=English +ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN - Cannot nest local groups in a mixed domain if the group is security-enabled. +. + +MessageId=8516 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER +Language=English +ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER - A global group cannot have a local group as a member. +. + +MessageId=8517 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER +Language=English +ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER - A global group cannot have a universal group as a member. +. + +MessageId=8518 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER +Language=English +ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER - A universal group cannot have a local group as a member. +. + +MessageId=8519 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER +Language=English +ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER - A global group cannot have a cross-domain member. +. + +MessageId=8520 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER +Language=English +ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER - A local group cannot have another cross-domain local group as a member. +. + +MessageId=8521 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_HAVE_PRIMARY_MEMBERS +Language=English +ERROR_DS_HAVE_PRIMARY_MEMBERS - A group with primary members cannot change to a security-disabled group. +. + +MessageId=8522 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_STRING_SD_CONVERSION_FAILED +Language=English +ERROR_DS_STRING_SD_CONVERSION_FAILED - The schema cache load failed to convert the string default SD on a class-schema object. +. + +MessageId=8523 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAMING_MASTER_GC +Language=English +ERROR_DS_NAMING_MASTER_GC - Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers) +. + +MessageId=8524 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LOOKUP_FAILURE +Language=English +ERROR_DS_LOOKUP_FAILURE - The DSA operation is unable to proceed because of a DNS lookup failure. +. + +MessageId=8525 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_COULDNT_UPDATE_SPNS +Language=English +ERROR_DS_COULDNT_UPDATE_SPNS - While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync. +. + +MessageId=8526 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_RETRIEVE_SD +Language=English +ERROR_DS_CANT_RETRIEVE_SD - The Security Descriptor attribute could not be read. +. + +MessageId=8527 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_KEY_NOT_UNIQUE +Language=English +ERROR_DS_KEY_NOT_UNIQUE - The object requested was not found, but an object with that key was found. +. + +MessageId=8528 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_WRONG_LINKED_ATT_SYNTAX +Language=English +ERROR_DS_WRONG_LINKED_ATT_SYNTAX - The syntax of the linked attributed being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1. +. + +MessageId=8529 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD +Language=English +ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD - Security Account Manager needs to get the boot password. +. + +MessageId=8530 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY +Language=English +ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY - Security Account Manager needs to get the boot key from floppy disk. +. + +MessageId=8531 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_START +Language=English +ERROR_DS_CANT_START - Directory Service cannot start. +. + +MessageId=8532 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INIT_FAILURE +Language=English +ERROR_DS_INIT_FAILURE - Directory Services could not start. +. + +MessageId=8533 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION +Language=English +ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION - The connection between client and server requires packet privacy or better. +. + +MessageId=8534 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SOURCE_DOMAIN_IN_FOREST +Language=English +ERROR_DS_SOURCE_DOMAIN_IN_FOREST - The source domain may not be in the same forest as destination. +. + +MessageId=8535 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST +Language=English +ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST - The destination domain must be in the forest. +. + +MessageId=8536 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED +Language=English +ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED - The operation requires that destination domain auditing be enabled. +. + +MessageId=8537 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN +Language=English +ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN - The operation couldn't locate a DC for the source domain. +. + +MessageId=8538 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER +Language=English +ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER - The source object must be a group or user. +. + +MessageId=8539 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_SID_EXISTS_IN_FOREST +Language=English +ERROR_DS_SRC_SID_EXISTS_IN_FOREST - The source object's SID already exists in destination forest. +. + +MessageId=8540 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH +Language=English +ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH - The source and destination object must be of the same type. +. + +MessageId=8541 +Severity=Success +Facility=System +SymbolicName=ERROR_SAM_INIT_FAILURE +Language=English +ERROR_SAM_INIT_FAILURE - Security Accounts Manager initialization failed because of the following error: %1. +Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information. +. + +MessageId=8542 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SCHEMA_INFO_SHIP +Language=English +ERROR_DS_DRA_SCHEMA_INFO_SHIP - Schema information could not be included in the replication request. +. + +MessageId=8543 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_SCHEMA_CONFLICT +Language=English +ERROR_DS_DRA_SCHEMA_CONFLICT - The replication operation could not be completed due to a schema incompatibility. +. + +MessageId=8544 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_EARLIER_SCHEMA_CONLICT +Language=English +ERROR_DS_DRA_EARLIER_SCHEMA_CONLICT - The replication operation could not be completed due to a previous schema incompatibility. +. + +MessageId=8545 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_OBJ_NC_MISMATCH +Language=English +ERROR_DS_DRA_OBJ_NC_MISMATCH - The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation. +. + +MessageId=8546 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NC_STILL_HAS_DSAS +Language=English +ERROR_DS_NC_STILL_HAS_DSAS - The requested domain could not be deleted because there exist domain controllers that still host this domain. +. + +MessageId=8547 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GC_REQUIRED +Language=English +ERROR_DS_GC_REQUIRED - The requested operation can be performed only on a global catalog server. +. + +MessageId=8548 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY +Language=English +ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY - A local group can only be a member of other local groups in the same domain. +. + +MessageId=8549 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS +Language=English +ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS - Foreign security principals cannot be members of universal groups. +. + +MessageId=8550 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_ADD_TO_GC +Language=English +ERROR_DS_CANT_ADD_TO_GC - The attribute is not allowed to be replicated to the GC because of security reasons. +. + +MessageId=8551 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_CHECKPOINT_WITH_PDC +Language=English +ERROR_DS_NO_CHECKPOINT_WITH_PDC - The checkpoint with the PDC could not be taken because there are too many modifications being processed currently. +. + +MessageId=8552 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SOURCE_AUDITING_NOT_ENABLED +Language=English +ERROR_DS_SOURCE_AUDITING_NOT_ENABLED - The operation requires that source domain auditing be enabled. +. + +MessageId=8553 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC +Language=English +ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC - Security principal objects can only be created inside domain naming contexts. +. + +MessageId=8554 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_NAME_FOR_SPN +Language=English +ERROR_DS_INVALID_NAME_FOR_SPN - A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format. +. + +MessageId=8555 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS +Language=English +ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS - A Filter was passed that uses constructed attributes. +. + +MessageId=8556 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_UNICODEPWD_NOT_IN_QUOTES +Language=English +ERROR_DS_UNICODEPWD_NOT_IN_QUOTES - The unicodePwd attribute value must be enclosed in double quotes. +. + +MessageId=8557 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED +Language=English +ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED - Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased. +. + +MessageId=8558 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MUST_BE_RUN_ON_DST_DC +Language=English +ERROR_DS_MUST_BE_RUN_ON_DST_DC - For security reasons, the operation must be run on the destination DC. +. + +MessageId=8559 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER +Language=English +ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER - For security reasons, the source DC must be NT4SP4 or greater. +. + +MessageId=8560 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ +Language=English +ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ - Critical Directory Service System objects cannot be deleted during tree delete operations. The tree delete may have been partially performed. +. + +MessageId=8561 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INIT_FAILURE_CONSOLE +Language=English +ERROR_DS_INIT_FAILURE_CONSOLE - Directory Services could not start because of the following error: %1. +Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. +. + +MessageId=8562 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SAM_INIT_FAILURE_CONSOLE +Language=English +ERROR_DS_SAM_INIT_FAILURE_CONSOLE - Security Accounts Manager initialization failed because of the following error: %1. +Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further. +. + +MessageId=8563 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_FOREST_VERSION_TOO_HIGH +Language=English +ERROR_DS_FOREST_VERSION_TOO_HIGH - The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest. +. + +MessageId=8564 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DOMAIN_VERSION_TOO_HIGH +Language=English +ERROR_DS_DOMAIN_VERSION_TOO_HIGH - The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain. +. + +MessageId=8565 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_FOREST_VERSION_TOO_LOW +Language=English +ERROR_DS_FOREST_VERSION_TOO_LOW - This version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest. +. + +MessageId=8566 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DOMAIN_VERSION_TOO_LOW +Language=English +ERROR_DS_DOMAIN_VERSION_TOO_LOW - This version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain. +. + +MessageId=8567 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INCOMPATIBLE_VERSION +Language=English +ERROR_DS_INCOMPATIBLE_VERSION - The version of the operating system installed on this server is incompatible with the functional level of the domain or forest. +. + +MessageId=8568 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LOW_DSA_VERSION +Language=English +ERROR_DS_LOW_DSA_VERSION - The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level. +. + +MessageId=8569 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN +Language=English +ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN - The forest functional level cannot be raised to the requested level since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode before you can raise the forest functional level. +. + +MessageId=8570 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_SUPPORTED_SORT_ORDER +Language=English +ERROR_DS_NOT_SUPPORTED_SORT_ORDER - The sort order requested is not supported. +. + +MessageId=8571 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_NOT_UNIQUE +Language=English +ERROR_DS_NAME_NOT_UNIQUE - The requested name already exists as a unique identifier. +. + +MessageId=8572 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 +Language=English +ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4 - The machine account was created pre-NT4. The account needs to be recreated. +. + +MessageId=8573 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_OUT_OF_VERSION_STORE +Language=English +ERROR_DS_OUT_OF_VERSION_STORE - The database is out of version store. +. + +MessageId=8574 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INCOMPATIBLE_CONTROLS_USED +Language=English +ERROR_DS_INCOMPATIBLE_CONTROLS_USED - Unable to continue operation because multiple conflicting controls were used. +. + +MessageId=8575 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_REF_DOMAIN +Language=English +ERROR_DS_NO_REF_DOMAIN - Unable to find a valid security descriptor reference domain for this partition. +. + +MessageId=8576 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_RESERVED_LINK_ID +Language=English +ERROR_DS_RESERVED_LINK_ID - Schema update failed: The link identifier is reserved. +. + +MessageId=8577 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LINK_ID_NOT_AVAILABLE +Language=English +ERROR_DS_LINK_ID_NOT_AVAILABLE - Schema update failed: There are no link identifiers available. +. + +MessageId=8578 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER +Language=English +ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER - An account group cannot have a universal group as a member. +. + +MessageId=8579 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE +Language=English +ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE - Rename or move operations on naming context heads or read-only objects are not allowed. +. + +MessageId=8580 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC +Language=English +ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC - Move operations on objects in the schema naming context are not allowed. +. + +MessageId=8581 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG +Language=English +ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG - A system flag has been set on the object and does not allow the object to be moved or renamed. +. + +MessageId=8582 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_MODIFYDN_WRONG_GRANDPARENT +Language=English +ERROR_DS_MODIFYDN_WRONG_GRANDPARENT - This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers. +. + +MessageId=8583 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NAME_ERROR_TRUST_REFERRAL +Language=English +ERROR_DS_NAME_ERROR_TRUST_REFERRAL - Unable to resolve completely, a referral to another forest is generated. +. + +MessageId=8584 +Severity=Success +Facility=System +SymbolicName=ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER +Language=English +ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER - The requested action is not supported on standard server. +. + +MessageId=8585 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD +Language=English +ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD - Could not access a partition of the Active Directory located on a remote server. Make sure at least one server is running for the partition in question. +. + +MessageId=8586 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 +Language=English +ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2 - The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context. Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master. +. + +MessageId=8587 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_THREAD_LIMIT_EXCEEDED +Language=English +ERROR_DS_THREAD_LIMIT_EXCEEDED - The thread limit for this request was exceeded. +. + +MessageId=8588 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NOT_CLOSEST +Language=English +ERROR_DS_NOT_CLOSEST - The Global catalog server is not in the closet site. +. + +MessageId=8589 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF +Language=English +ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF - The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute. +. + +MessageId=8590 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_SINGLE_USER_MODE_FAILED +Language=English +ERROR_DS_SINGLE_USER_MODE_FAILED - The Directory Service failed to enter single user mode. +. + +MessageId=8591 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NTDSCRIPT_SYNTAX_ERROR +Language=English +ERROR_DS_NTDSCRIPT_SYNTAX_ERROR - The Directory Service cannot parse the script because of a syntax error. +. + +MessageId=8592 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NTDSCRIPT_PROCESS_ERROR +Language=English +ERROR_DS_NTDSCRIPT_PROCESS_ERROR - The Directory Service cannot process the script because of an error. +. + +MessageId=8593 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DIFFERENT_REPL_EPOCHS +Language=English +ERROR_DS_DIFFERENT_REPL_EPOCHS - The directory service cannot perform the requested operation because the servers involved are of different replication epochs (which is usually related to a domain rename that is in progress). +. + +MessageId=8594 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRS_EXTENSIONS_CHANGED +Language=English +ERROR_DS_DRS_EXTENSIONS_CHANGED - The directory service binding must be renegotiated due to a change in the server extensions information. +. + +MessageId=8595 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR +Language=English +ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR - Operation not allowed on a disabled cross ref. +. + +MessageId=8596 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_NO_MSDS_INTID +Language=English +ERROR_DS_NO_MSDS_INTID - Schema update failed: No values for msDS-IntId are available. +. + +MessageId=8597 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUP_MSDS_INTID +Language=English +ERROR_DS_DUP_MSDS_INTID - Schema update failed: Duplicate msDS-IntId. Retry the operation. +. + +MessageId=8598 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTS_IN_RDNATTID +Language=English +ERROR_DS_EXISTS_IN_RDNATTID - Schema deletion failed: attribute is used in rDNAttID. +. + +MessageId=8599 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_AUTHORIZATION_FAILED +Language=English +ERROR_DS_AUTHORIZATION_FAILED - The directory service failed to authorize the request. +. + +MessageId=8600 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INVALID_SCRIPT +Language=English +ERROR_DS_INVALID_SCRIPT - The Directory Service cannot process the script because it is invalid. +. + +MessageId=8601 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REMOTE_CROSSREF_OP_FAILED +Language=English +ERROR_DS_REMOTE_CROSSREF_OP_FAILED - The remote create cross reference operation failed on the Domain Naming Master FSMO. The operation's error is in the extended data. +. + +MessageId=8602 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CROSS_REF_BUSY +Language=English +ERROR_DS_CROSS_REF_BUSY - A cross reference is in use locally with the same name. +. + +MessageId=8603 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN +Language=English +ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN - The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest. +. + +MessageId=8604 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC +Language=English +ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC - Writeable NCs prevent this DC from demoting. +. + +MessageId=8605 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DUPLICATE_ID_FOUND +Language=English +ERROR_DS_DUPLICATE_ID_FOUND - The requested object has a non-unique identifier and cannot be retrieved. +. + +MessageId=8606 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT +Language=English +ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT - Insufficient attributes were given to create an object. This object may not exist because it may have been deleted and already garbage collected. +. + +MessageId=8607 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_GROUP_CONVERSION_ERROR +Language=English +ERROR_DS_GROUP_CONVERSION_ERROR - The group cannot be converted due to attribute restrictions on the requested group type. +. + +MessageId=8608 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOVE_APP_BASIC_GROUP +Language=English +ERROR_DS_CANT_MOVE_APP_BASIC_GROUP - Cross-domain move of non-empty basic application groups is not allowed. +. + +MessageId=8609 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_CANT_MOVE_APP_QUERY_GROUP +Language=English +ERROR_DS_CANT_MOVE_APP_QUERY_GROUP - Cross-domain move on non-empty query based application groups is not allowed. +. + +MessageId=8610 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_ROLE_NOT_VERIFIED +Language=English +ERROR_DS_ROLE_NOT_VERIFIED - The role owner could not be verified because replication of its partition has not occurred recently. +. + +MessageId=8611 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL +Language=English +ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL - The target container for a redirection of a well-known object container cannot already be a special container. +. + +MessageId=8612 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DOMAIN_RENAME_IN_PROGRESS +Language=English +ERROR_DS_DOMAIN_RENAME_IN_PROGRESS - The Directory Service cannot perform the requested operation because a domain rename operation is in progress. +. + +MessageId=8613 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_EXISTING_AD_CHILD_NC +Language=English +ERROR_DS_EXISTING_AD_CHILD_NC - The Active Directory detected an Active Directory child partition below the requested new partition name. The Active Directory's partition hierarchy must be created in a top-down method. +. + +MessageId=8614 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_REPL_LIFETIME_EXCEEDED +Language=English +ERROR_DS_REPL_LIFETIME_EXCEEDED - The Active Directory cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime. +. + +MessageId=8615 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER +Language=English +ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER - The requested operation is not allowed on an object under the system container. +. + +MessageId=8616 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_LDAP_SEND_QUEUE_FULL +Language=English +ERROR_DS_LDAP_SEND_QUEUE_FULL - The LDAP servers network send queue has filled up because the client is not processing the results of it's requests fast enough. No more requests will be processed until the client catches up. If the client does not catch up then it will be disconnected. +. + +MessageId=8617 +Severity=Success +Facility=System +SymbolicName=ERROR_DS_DRA_OUT_SCHEDULE_WINDOW +Language=English +ERROR_DS_DRA_OUT_SCHEDULE_WINDOW - The scheduled replication did not take place because the system was too busy to execute the request within the schedule window. The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency. +. + +MessageId=9001 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_FORMAT_ERROR +Language=English +DNS_ERROR_RCODE_FORMAT_ERROR - DNS server unable to interpret format. +. + +MessageId=9002 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_SERVER_FAILURE +Language=English +DNS_ERROR_RCODE_SERVER_FAILURE - DNS server failure. +. + +MessageId=9003 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_NAME_ERROR +Language=English +DNS_ERROR_RCODE_NAME_ERROR - DNS name does not exist. +. + +MessageId=9004 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_NOT_IMPLEMENTED +Language=English +DNS_ERROR_RCODE_NOT_IMPLEMENTED - DNS request not supported by name server. +. + +MessageId=9005 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_REFUSED +Language=English +DNS_ERROR_RCODE_REFUSED - DNS operation refused. +. + +MessageId=9006 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_YXDOMAIN +Language=English +DNS_ERROR_RCODE_YXDOMAIN - DNS name that ought not exist, does exist. +. + +MessageId=9007 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_YXRRSET +Language=English +DNS_ERROR_RCODE_YXRRSET - DNS RR set that ought not exist, does exist. +. + +MessageId=9008 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_NXRRSET +Language=English +DNS_ERROR_RCODE_NXRRSET - DNS RR set that ought to exist, does not exist. +. + +MessageId=9009 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_NOTAUTH +Language=English +DNS_ERROR_RCODE_NOTAUTH - DNS server not authoritative for zone. +. + +MessageId=9010 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_NOTZONE +Language=English +DNS_ERROR_RCODE_NOTZONE - DNS name in update or prereq is not in zone. +. + +MessageId=9016 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_BADSIG +Language=English +DNS_ERROR_RCODE_BADSIG - DNS signature failed to verify. +. + +MessageId=9017 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_BADKEY +Language=English +DNS_ERROR_RCODE_BADKEY - DNS bad key. +. + +MessageId=9018 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE_BADTIME +Language=English +DNS_ERROR_RCODE_BADTIME - DNS signature validity expired. +. + +MessageId=9501 +Severity=Success +Facility=System +SymbolicName=DNS_INFO_NO_RECORDS +Language=English +DNS_INFO_NO_RECORDS - No records found for given DNS query. +. + +MessageId=9502 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_BAD_PACKET +Language=English +DNS_ERROR_BAD_PACKET - Bad DNS packet. +. + +MessageId=9503 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NO_PACKET +Language=English +DNS_ERROR_NO_PACKET - No DNS packet. +. + +MessageId=9504 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RCODE +Language=English +DNS_ERROR_RCODE - DNS error, check rcode. +. + +MessageId=9505 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_UNSECURE_PACKET +Language=English +DNS_ERROR_UNSECURE_PACKET - Unsecured DNS packet. +. + +MessageId=9551 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_TYPE +Language=English +DNS_ERROR_INVALID_TYPE - Invalid DNS type. +. + +MessageId=9552 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_IP_ADDRESS +Language=English +DNS_ERROR_INVALID_IP_ADDRESS - Invalid IP address. +. + +MessageId=9553 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_PROPERTY +Language=English +DNS_ERROR_INVALID_PROPERTY - Invalid property. +. + +MessageId=9554 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_TRY_AGAIN_LATER +Language=English +DNS_ERROR_TRY_AGAIN_LATER - Try DNS operation again later. +. + +MessageId=9555 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NOT_UNIQUE +Language=English +DNS_ERROR_NOT_UNIQUE - Record for given name and type is not unique. +. + +MessageId=9556 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NON_RFC_NAME +Language=English +DNS_ERROR_NON_RFC_NAME - DNS name does not comply with RFC specifications. +. + +MessageId=9557 +Severity=Success +Facility=System +SymbolicName=DNS_STATUS_FQDN +Language=English +DNS_STATUS_FQDN - DNS name is a fully-qualified DNS name. +. + +MessageId=9558 +Severity=Success +Facility=System +SymbolicName=DNS_STATUS_DOTTED_NAME +Language=English +DNS_STATUS_DOTTED_NAME - DNS name is dotted (multi-label). +. + +MessageId=9559 +Severity=Success +Facility=System +SymbolicName=DNS_STATUS_SINGLE_PART_NAME +Language=English +DNS_STATUS_SINGLE_PART_NAME - DNS name is a single-part name. +. + +MessageId=9560 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_NAME_CHAR +Language=English +DNS_ERROR_INVALID_NAME_CHAR - DSN name contains an invalid character. +. + +MessageId=9561 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NUMERIC_NAME +Language=English +DNS_ERROR_NUMERIC_NAME - DNS name is entirely numeric. +. + +MessageId=9562 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER +Language=English +DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER - The operation requested is not permitted on a DNS root server. +. + +MessageId=9563 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION +Language=English +DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION - The record could not be created because this part of the DNS namespace has been delegated to another server. +. + +MessageId=9564 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_CANNOT_FIND_ROOT_HINTS +Language=English +DNS_ERROR_CANNOT_FIND_ROOT_HINTS - The DNS server could not find a set of root hints. +. + +MessageId=9565 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INCONSISTENT_ROOT_HINTS +Language=English +DNS_ERROR_INCONSISTENT_ROOT_HINTS - The DNS server found root hints but they were not consistent across all adapters. +. + +MessageId=9601 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_DOES_NOT_EXIST +Language=English +DNS_ERROR_ZONE_DOES_NOT_EXIST - DNS zone does not exist. +. + +MessageId=9602 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NO_ZONE_INFO +Language=English +DNS_ERROR_NO_ZONE_INFO - DNS zone information not available. +. + +MessageId=9603 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_ZONE_OPERATION +Language=English +DNS_ERROR_INVALID_ZONE_OPERATION - Invalid operation for DNS zone. +. + +MessageId=9604 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_CONFIGURATION_ERROR +Language=English +DNS_ERROR_ZONE_CONFIGURATION_ERROR - Invalid DNS zone configuration. +. + +MessageId=9605 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_HAS_NO_SOA_RECORD +Language=English +DNS_ERROR_ZONE_HAS_NO_SOA_RECORD - DNS zone has no start of authority (SOA) record. +. + +MessageId=9606 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_HAS_NO_NS_RECORDS +Language=English +DNS_ERROR_ZONE_HAS_NO_NS_RECORDS - DNS zone has no name server (NS) record. +. + +MessageId=9607 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_LOCKED +Language=English +DNS_ERROR_ZONE_LOCKED - DNS zone is locked. +. + +MessageId=9608 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_CREATION_FAILED +Language=English +DNS_ERROR_ZONE_CREATION_FAILED - DNS zone creation failed. +. + +MessageId=9609 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_ALREADY_EXISTS +Language=English +DNS_ERROR_ZONE_ALREADY_EXISTS - DNS zone already exists. +. + +MessageId=9610 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_AUTOZONE_ALREADY_EXISTS +Language=English +DNS_ERROR_AUTOZONE_ALREADY_EXISTS - DNS automatic zone already exists. +. + +MessageId=9611 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_ZONE_TYPE +Language=English +DNS_ERROR_INVALID_ZONE_TYPE - Invalid DNS zone type. +. + +MessageId=9612 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP +Language=English +DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP - Secondary DNS zone requires master IP address. +. + +MessageId=9613 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_NOT_SECONDARY +Language=English +DNS_ERROR_ZONE_NOT_SECONDARY - DNS zone not secondary. +. + +MessageId=9614 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NEED_SECONDARY_ADDRESSES +Language=English +DNS_ERROR_NEED_SECONDARY_ADDRESSES - Need secondary IP address. +. + +MessageId=9615 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_WINS_INIT_FAILED +Language=English +DNS_ERROR_WINS_INIT_FAILED - WINS initialization failed. +. + +MessageId=9616 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NEED_WINS_SERVERS +Language=English +DNS_ERROR_NEED_WINS_SERVERS - Need WINS servers. +. + +MessageId=9617 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NBSTAT_INIT_FAILED +Language=English +DNS_ERROR_NBSTAT_INIT_FAILED - NBTSTAT initialization call failed. +. + +MessageId=9618 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_SOA_DELETE_INVALID +Language=English +DNS_ERROR_SOA_DELETE_INVALID - Invalid delete of start of authority (SOA) +. + +MessageId=9619 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_FORWARDER_ALREADY_EXISTS +Language=English +DNS_ERROR_FORWARDER_ALREADY_EXISTS - A conditional forwarding zone already exists for that name. +. + +MessageId=9620 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_REQUIRES_MASTER_IP +Language=English +DNS_ERROR_ZONE_REQUIRES_MASTER_IP - This zone must be configured with one or more master DNS server IP addresses. +. + +MessageId=9621 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_ZONE_IS_SHUTDOWN +Language=English +DNS_ERROR_ZONE_IS_SHUTDOWN - The operation cannot be performed because this zone is shutdown. +. + +MessageId=9651 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_PRIMARY_REQUIRES_DATAFILE +Language=English +DNS_ERROR_PRIMARY_REQUIRES_DATAFILE - Primary DNS zone requires datafile. +. + +MessageId=9652 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_INVALID_DATAFILE_NAME +Language=English +DNS_ERROR_INVALID_DATAFILE_NAME - Invalid datafile name for DNS zone. +. + +MessageId=9653 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DATAFILE_OPEN_FAILURE +Language=English +DNS_ERROR_DATAFILE_OPEN_FAILURE - Failed to open datafile for DNS zone. +. + +MessageId=9654 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_FILE_WRITEBACK_FAILED +Language=English +DNS_ERROR_FILE_WRITEBACK_FAILED - Failed to write datafile for DNS zone. +. + +MessageId=9655 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DATAFILE_PARSING +Language=English +DNS_ERROR_DATAFILE_PARSING - Failure while reading datafile for DNS zone. +. + +MessageId=9701 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RECORD_DOES_NOT_EXIST +Language=English +DNS_ERROR_RECORD_DOES_NOT_EXIST - DNS record does not exist. +. + +MessageId=9702 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RECORD_FORMAT +Language=English +DNS_ERROR_RECORD_FORMAT - DNS record format error. +. + +MessageId=9703 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NODE_CREATION_FAILED +Language=English +DNS_ERROR_NODE_CREATION_FAILED - Node creation failure in DNS. +. + +MessageId=9704 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_UNKNOWN_RECORD_TYPE +Language=English +DNS_ERROR_UNKNOWN_RECORD_TYPE - Unknown DNS record type. +. + +MessageId=9705 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RECORD_TIMED_OUT +Language=English +DNS_ERROR_RECORD_TIMED_OUT - DNS record timed out. +. + +MessageId=9706 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NAME_NOT_IN_ZONE +Language=English +DNS_ERROR_NAME_NOT_IN_ZONE - Name not in DNS zone. +. + +MessageId=9707 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_CNAME_LOOP +Language=English +DNS_ERROR_CNAME_LOOP - CNAME loop detected. +. + +MessageId=9708 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NODE_IS_CNAME +Language=English +DNS_ERROR_NODE_IS_CNAME - Node is a CNAME DNS record. +. + +MessageId=9709 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_CNAME_COLLISION +Language=English +DNS_ERROR_CNAME_COLLISION - A CNAME record already exists for given name. +. + +MessageId=9710 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT +Language=English +DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT - Record only at DNS zone root. +. + +MessageId=9711 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_RECORD_ALREADY_EXISTS +Language=English +DNS_ERROR_RECORD_ALREADY_EXISTS - DNS record already exists. +. + +MessageId=9712 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_SECONDARY_DATA +Language=English +DNS_ERROR_SECONDARY_DATA - Secondary DNS zone data error. +. + +MessageId=9713 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NO_CREATE_CACHE_DATA +Language=English +DNS_ERROR_NO_CREATE_CACHE_DATA - Could not create DNS cache data. +. + +MessageId=9714 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NAME_DOES_NOT_EXIST +Language=English +DNS_ERROR_NAME_DOES_NOT_EXIST - DNS name does not exist. +. + +MessageId=9715 +Severity=Success +Facility=System +SymbolicName=DNS_WARNING_PTR_CREATE_FAILED +Language=English +DNS_WARNING_PTR_CREATE_FAILED - Could not create pointer (PTR) record. +. + +MessageId=9716 +Severity=Success +Facility=System +SymbolicName=DNS_WARNING_DOMAIN_UNDELETED +Language=English +DNS_WARNING_DOMAIN_UNDELETED - DNS domain was undeleted. +. + +MessageId=9717 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DS_UNAVAILABLE +Language=English +DNS_ERROR_DS_UNAVAILABLE - The directory service is unavailable. +. + +MessageId=9718 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DS_ZONE_ALREADY_EXISTS +Language=English +DNS_ERROR_DS_ZONE_ALREADY_EXISTS - DNS zone already exists in the directory service. +. + +MessageId=9719 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE +Language=English +DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE - DNS server not creating or reading the boot file for the directory service integrated DNS zone. +. + +MessageId=9751 +Severity=Success +Facility=System +SymbolicName=DNS_INFO_AXFR_COMPLETE +Language=English +DNS_INFO_AXFR_COMPLETE - DNS AXFR (zone transfer) complete. +. + +MessageId=9752 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_AXFR +Language=English +DNS_ERROR_AXFR - DNS zone transfer failed. +. + +MessageId=9753 +Severity=Success +Facility=System +SymbolicName=DNS_INFO_ADDED_LOCAL_WINS +Language=English +DNS_INFO_ADDED_LOCAL_WINS - Added local WINS server. +. + +MessageId=9801 +Severity=Success +Facility=System +SymbolicName=DNS_STATUS_CONTINUE_NEEDED +Language=English +DNS_STATUS_CONTINUE_NEEDED - Secure update call needs to continue update request. +. + +MessageId=9851 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NO_TCPIP +Language=English +DNS_ERROR_NO_TCPIP - TCP/IP network protocol not installed. +. + +MessageId=9852 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_NO_DNS_SERVERS +Language=English +DNS_ERROR_NO_DNS_SERVERS - No DNS servers configured for local system. +. + +MessageId=9901 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DP_DOES_NOT_EXIST +Language=English +DNS_ERROR_DP_DOES_NOT_EXIST - The specified directory partition does not exist. +. + +MessageId=9902 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DP_ALREADY_EXISTS +Language=English +DNS_ERROR_DP_ALREADY_EXISTS - The specified directory partition already exists. +. + +MessageId=9903 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DP_NOT_ENLISTED +Language=English +DNS_ERROR_DP_NOT_ENLISTED - The DNS server is not enlisted in the specified directory partition. +. + +MessageId=9904 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DP_ALREADY_ENLISTED +Language=English +DNS_ERROR_DP_ALREADY_ENLISTED - The DNS server is already enlisted in the specified directory partition. +. + +MessageId=9905 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DP_NOT_AVAILABLE +Language=English +DNS_ERROR_DP_NOT_AVAILABLE - The directory partition is not available at this time. Please wait a few minutes and try again. +. + +MessageId=9906 +Severity=Success +Facility=System +SymbolicName=DNS_ERROR_DP_FSMO_ERROR +Language=English +DNS_ERROR_DP_FSMO_ERROR - The application directory partition operation failed. The domain controller holding the domain naming master role is down or unable to service the request or is not running Windows Server 2003. +. + +MessageId=10004 +Severity=Success +Facility=System +SymbolicName=WSAEINTR +Language=English +WSAEINTR - A blocking operation was interrupted by a call to WSACancelBlockingCall. +. + +MessageId=10009 +Severity=Success +Facility=System +SymbolicName=WSAEBADF +Language=English +WSAEBADF - The file handle supplied is not valid. +. + +MessageId=10013 +Severity=Success +Facility=System +SymbolicName=WSAEACCES +Language=English +WSAEACCES - An attempt was made to access a socket in a way forbidden by its access permissions. +. + +MessageId=10014 +Severity=Success +Facility=System +SymbolicName=WSAEFAULT +Language=English +WSAEFAULT - The system detected an invalid pointer address in attempting to use a pointer argument in a call. +. + +MessageId=10022 +Severity=Success +Facility=System +SymbolicName=WSAEINVAL +Language=English +WSAEINVAL - An invalid argument was supplied. +. + +MessageId=10024 +Severity=Success +Facility=System +SymbolicName=WSAEMFILE +Language=English +WSAEMFILE - Too many open sockets. +. + +MessageId=10035 +Severity=Success +Facility=System +SymbolicName=WSAEWOULDBLOCK +Language=English +WSAEWOULDBLOCK - A non-blocking socket operation could not be completed immediately. +. + +MessageId=10036 +Severity=Success +Facility=System +SymbolicName=WSAEINPROGRESS +Language=English +WSAEINPROGRESS - A blocking operation is currently executing. +. + +MessageId=10037 +Severity=Success +Facility=System +SymbolicName=WSAEALREADY +Language=English +WSAEALREADY - An operation was attempted on a non-blocking socket that already had an operation in progress. +. + +MessageId=10038 +Severity=Success +Facility=System +SymbolicName=WSAENOTSOCK +Language=English +WSAENOTSOCK - An operation was attempted on something that is not a socket. +. + +MessageId=10039 +Severity=Success +Facility=System +SymbolicName=WSAEDESTADDRREQ +Language=English +WSAEDESTADDRREQ - A required address was omitted from an operation on a socket. +. + +MessageId=10040 +Severity=Success +Facility=System +SymbolicName=WSAEMSGSIZE +Language=English +WSAEMSGSIZE - A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself. +. + +MessageId=10041 +Severity=Success +Facility=System +SymbolicName=WSAEPROTOTYPE +Language=English +WSAEPROTOTYPE - A protocol was specified in the socket function call that does not support the semantics of the socket type requested. +. + +MessageId=10042 +Severity=Success +Facility=System +SymbolicName=WSAENOPROTOOPT +Language=English +WSAENOPROTOOPT - An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call. +. + +MessageId=10043 +Severity=Success +Facility=System +SymbolicName=WSAEPROTONOSUPPORT +Language=English +WSAEPROTONOSUPPORT - The requested protocol has not been configured into the system, or no implementation for it exists. +. + +MessageId=10044 +Severity=Success +Facility=System +SymbolicName=WSAESOCKTNOSUPPORT +Language=English +WSAESOCKTNOSUPPORT - The support for the specified socket type does not exist in this address family. +. + +MessageId=10045 +Severity=Success +Facility=System +SymbolicName=WSAEOPNOTSUPP +Language=English +WSAEOPNOTSUPP - The attempted operation is not supported for the type of object referenced. +. + +MessageId=10046 +Severity=Success +Facility=System +SymbolicName=WSAEPFNOSUPPORT +Language=English +WSAEPFNOSUPPORT - The protocol family has not been configured into the system or no implementation for it exists. +. + +MessageId=10047 +Severity=Success +Facility=System +SymbolicName=WSAEAFNOSUPPORT +Language=English +WSAEAFNOSUPPORT - An address incompatible with the requested protocol was used. +. + +MessageId=10048 +Severity=Success +Facility=System +SymbolicName=WSAEADDRINUSE +Language=English +WSAEADDRINUSE - Only one usage of each socket address (protocol/network address/port) is normally permitted. +. + +MessageId=10049 +Severity=Success +Facility=System +SymbolicName=WSAEADDRNOTAVAIL +Language=English +WSAEADDRNOTAVAIL - The requested address is not valid in its context. +. + +MessageId=10050 +Severity=Success +Facility=System +SymbolicName=WSAENETDOWN +Language=English +WSAENETDOWN - A socket operation encountered a dead network. +. + +MessageId=10051 +Severity=Success +Facility=System +SymbolicName=WSAENETUNREACH +Language=English +WSAENETUNREACH - A socket operation was attempted to an unreachable network. +. + +MessageId=10052 +Severity=Success +Facility=System +SymbolicName=WSAENETRESET +Language=English +WSAENETRESET - The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress. +. + +MessageId=10053 +Severity=Success +Facility=System +SymbolicName=WSAECONNABORTED +Language=English +WSAECONNABORTED - An established connection was aborted by the software in your host machine. +. + +MessageId=10054 +Severity=Success +Facility=System +SymbolicName=WSAECONNRESET +Language=English +WSAECONNRESET - An existing connection was forcibly closed by the remote host. +. + +MessageId=10055 +Severity=Success +Facility=System +SymbolicName=WSAENOBUFS +Language=English +WSAENOBUFS - An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. +. + +MessageId=10056 +Severity=Success +Facility=System +SymbolicName=WSAEISCONN +Language=English +WSAEISCONN - A connect request was made on an already connected socket. +. + +MessageId=10057 +Severity=Success +Facility=System +SymbolicName=WSAENOTCONN +Language=English +WSAENOTCONN - A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied. +. + +MessageId=10058 +Severity=Success +Facility=System +SymbolicName=WSAESHUTDOWN +Language=English +WSAESHUTDOWN - A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call. +. + +MessageId=10059 +Severity=Success +Facility=System +SymbolicName=WSAETOOMANYREFS +Language=English +WSAETOOMANYREFS - Too many references to some kernel object. +. + +MessageId=10060 +Severity=Success +Facility=System +SymbolicName=WSAETIMEDOUT +Language=English +WSAETIMEDOUT - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. +. + +MessageId=10061 +Severity=Success +Facility=System +SymbolicName=WSAECONNREFUSED +Language=English +WSAECONNREFUSED - No connection could be made because the target machine actively refused it. +. + +MessageId=10062 +Severity=Success +Facility=System +SymbolicName=WSAELOOP +Language=English +WSAELOOP - Cannot translate name. +. + +MessageId=10063 +Severity=Success +Facility=System +SymbolicName=WSAENAMETOOLONG +Language=English +WSAENAMETOOLONG - Name component or name was too long. +. + +MessageId=10064 +Severity=Success +Facility=System +SymbolicName=WSAEHOSTDOWN +Language=English +WSAEHOSTDOWN - A socket operation failed because the destination host was down. +. + +MessageId=10065 +Severity=Success +Facility=System +SymbolicName=WSAEHOSTUNREACH +Language=English +WSAEHOSTUNREACH - A socket operation was attempted to an unreachable host. +. + +MessageId=10066 +Severity=Success +Facility=System +SymbolicName=WSAENOTEMPTY +Language=English +WSAENOTEMPTY - Cannot remove a directory that is not empty. +. + +MessageId=10067 +Severity=Success +Facility=System +SymbolicName=WSAEPROCLIM +Language=English +WSAEPROCLIM - A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously. +. + +MessageId=10068 +Severity=Success +Facility=System +SymbolicName=WSAEUSERS +Language=English +WSAEUSERS - Ran out of quota. +. + +MessageId=10069 +Severity=Success +Facility=System +SymbolicName=WSAEDQUOT +Language=English +WSAEDQUOT - Ran out of disk quota. +. + +MessageId=10070 +Severity=Success +Facility=System +SymbolicName=WSAESTALE +Language=English +WSAESTALE - File handle reference is no longer available. +. + +MessageId=10071 +Severity=Success +Facility=System +SymbolicName=WSAEREMOTE +Language=English +WSAEREMOTE - Item is not available locally. +. + +MessageId=10091 +Severity=Success +Facility=System +SymbolicName=WSASYSNOTREADY +Language=English +WSASYSNOTREADY - WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable. +. + +MessageId=10092 +Severity=Success +Facility=System +SymbolicName=WSAVERNOTSUPPORTED +Language=English +WSAVERNOTSUPPORTED - The Windows Sockets version requested is not supported. +. + +MessageId=10093 +Severity=Success +Facility=System +SymbolicName=WSANOTINITIALISED +Language=English +WSANOTINITIALISED - Either the application has not called WSAStartup, or WSAStartup failed. +. + +MessageId=10101 +Severity=Success +Facility=System +SymbolicName=WSAEDISCON +Language=English +WSAEDISCON - Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence. +. + +MessageId=10102 +Severity=Success +Facility=System +SymbolicName=WSAENOMORE +Language=English +WSAENOMORE - No more results can be returned by WSALookupServiceNext. +. + +MessageId=10103 +Severity=Success +Facility=System +SymbolicName=WSAECANCELLED +Language=English +WSAECANCELLED - A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. +. + +MessageId=10104 +Severity=Success +Facility=System +SymbolicName=WSAEINVALIDPROCTABLE +Language=English +WSAEINVALIDPROCTABLE - The procedure call table is invalid. +. + +MessageId=10105 +Severity=Success +Facility=System +SymbolicName=WSAEINVALIDPROVIDER +Language=English +WSAEINVALIDPROVIDER - The requested service provider is invalid. +. + +MessageId=10106 +Severity=Success +Facility=System +SymbolicName=WSAEPROVIDERFAILEDINIT +Language=English +WSAEPROVIDERFAILEDINIT - The requested service provider could not be loaded or initialized. +. + +MessageId=10107 +Severity=Success +Facility=System +SymbolicName=WSASYSCALLFAILURE +Language=English +WSASYSCALLFAILURE - A system call that should never fail has failed. +. + +MessageId=10108 +Severity=Success +Facility=System +SymbolicName=WSASERVICE_NOT_FOUND +Language=English +WSASERVICE_NOT_FOUND - No such service is known. The service cannot be found in the specified name space. +. + +MessageId=10109 +Severity=Success +Facility=System +SymbolicName=WSATYPE_NOT_FOUND +Language=English +WSATYPE_NOT_FOUND - The specified class was not found. +. + +MessageId=10110 +Severity=Success +Facility=System +SymbolicName=WSA_E_NO_MORE +Language=English +WSA_E_NO_MORE - No more results can be returned by WSALookupServiceNext. +. + +MessageId=10111 +Severity=Success +Facility=System +SymbolicName=WSA_E_CANCELLED +Language=English +WSA_E_CANCELLED - A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled. +. + +MessageId=10112 +Severity=Success +Facility=System +SymbolicName=WSAEREFUSED +Language=English +WSAEREFUSED - A database query failed because it was actively refused. +. + +MessageId=11001 +Severity=Success +Facility=System +SymbolicName=WSAHOST_NOT_FOUND +Language=English +WSAHOST_NOT_FOUND - No such host is known. +. + +MessageId=11002 +Severity=Success +Facility=System +SymbolicName=WSATRY_AGAIN +Language=English +WSATRY_AGAIN - This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server. +. + +MessageId=11003 +Severity=Success +Facility=System +SymbolicName=WSANO_RECOVERY +Language=English +WSANO_RECOVERY - A non-recoverable error occurred during a database lookup. +. + +MessageId=11004 +Severity=Success +Facility=System +SymbolicName=WSANO_DATA +Language=English +WSANO_DATA - The requested name is valid, but no data of the requested type was found. +. + +MessageId=11005 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_RECEIVERS +Language=English +WSA_QOS_RECEIVERS - At least one reserve has arrived. +. + +MessageId=11006 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_SENDERS +Language=English +WSA_QOS_SENDERS - At least one path has arrived. +. + +MessageId=11007 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_NO_SENDERS +Language=English +WSA_QOS_NO_SENDERS - There are no senders. +. + +MessageId=11008 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_NO_RECEIVERS +Language=English +WSA_QOS_NO_RECEIVERS - There are no receivers. +. + +MessageId=11009 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_REQUEST_CONFIRMED +Language=English +WSA_QOS_REQUEST_CONFIRMED - Reserve has been confirmed. +. + +MessageId=11010 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_ADMISSION_FAILURE +Language=English +WSA_QOS_ADMISSION_FAILURE - Error due to lack of resources. +. + +MessageId=11011 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_POLICY_FAILURE +Language=English +WSA_QOS_POLICY_FAILURE - Rejected for administrative reasons - bad credentials. +. + +MessageId=11012 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_BAD_STYLE +Language=English +WSA_QOS_BAD_STYLE - Unknown or conflicting style. +. + +MessageId=11013 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_BAD_OBJECT +Language=English +WSA_QOS_BAD_OBJECT - Problem with some part of the filterspec or providerspecific buffer in general. +. + +MessageId=11014 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_TRAFFIC_CTRL_ERROR +Language=English +WSA_QOS_TRAFFIC_CTRL_ERROR - Problem with some part of the flowspec. +. + +MessageId=11015 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_GENERIC_ERROR +Language=English +WSA_QOS_GENERIC_ERROR - General QOS error. +. + +MessageId=11016 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_ESERVICETYPE +Language=English +WSA_QOS_ESERVICETYPE - An invalid or unrecognized service type was found in the flowspec. +. + +MessageId=11017 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EFLOWSPEC +Language=English +WSA_QOS_EFLOWSPEC - An invalid or inconsistent flowspec was found in the QOS structure. +. + +MessageId=11018 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EPROVSPECBUF +Language=English +WSA_QOS_EPROVSPECBUF - Invalid QOS provider-specific buffer. +. + +MessageId=11019 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EFILTERSTYLE +Language=English +WSA_QOS_EFILTERSTYLE - An invalid QOS filter style was used. +. + +MessageId=11020 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EFILTERTYPE +Language=English +WSA_QOS_EFILTERTYPE - An invalid QOS filter type was used. +. + +MessageId=11021 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EFILTERCOUNT +Language=English +WSA_QOS_EFILTERCOUNT - An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR. +. + +MessageId=11022 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EOBJLENGTH +Language=English +WSA_QOS_EOBJLENGTH - An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer. +. + +MessageId=11023 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EFLOWCOUNT +Language=English +WSA_QOS_EFLOWCOUNT - An incorrect number of flow descriptors was specified in the QOS structure. +. + +MessageId=11024 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EUNKNOWNPSOBJ +Language=English +WSA_QOS_EUNKNOWNPSOBJ - An unrecognized object was found in the QOS provider-specific buffer. +. + +MessageId=11025 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EPOLICYOBJ +Language=English +WSA_QOS_EPOLICYOBJ - An invalid policy object was found in the QOS provider-specific buffer. +. + +MessageId=11026 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EFLOWDESC +Language=English +WSA_QOS_EFLOWDESC - An invalid QOS flow descriptor was found in the flow descriptor list. +. + +MessageId=11027 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EPSFLOWSPEC +Language=English +WSA_QOS_EPSFLOWSPEC - An invalid or inconsistent flowspec was found in the QOS provider-specific buffer. +. + +MessageId=11028 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_EPSFILTERSPEC +Language=English +WSA_QOS_EPSFILTERSPEC - An invalid FILTERSPEC was found in the QOS provider-specific buffer. +. + +MessageId=11029 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_ESDMODEOBJ +Language=English +WSA_QOS_ESDMODEOBJ - An invalid shape discard mode object was found in the QOS provider-specific buffer. +. + +MessageId=11030 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_ESHAPERATEOBJ +Language=English +WSA_QOS_ESHAPERATEOBJ - An invalid shaping rate object was found in the QOS provider-specific buffer. +. + +MessageId=11031 +Severity=Success +Facility=System +SymbolicName=WSA_QOS_RESERVED_PETYPE +Language=English +WSA_QOS_RESERVED_PETYPE - A reserved policy element was found in the QOS provider-specific buffer. +. + +MessageId=12000 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_IO_COMPLETE +Language=English +ERROR_FLT_IO_COMPLETE - The IO was completed by a filter. +. + +MessageId=12001 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_BUFFER_TOO_SMALL +Language=English +ERROR_FLT_BUFFER_TOO_SMALL - The buffer is too small to contain the entry. No information has been written to the buffer. +. + +MessageId=12002 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_NO_HANDLER_DEFINED +Language=English +ERROR_FLT_NO_HANDLER_DEFINED - A handler was not defined by the filter for this operation. +. + +MessageId=12003 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_CONTEXT_ALREADY_DEFINED +Language=English +ERROR_FLT_CONTEXT_ALREADY_DEFINED - A context is already defined for this object. +. + +MessageId=12004 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST +Language=English +ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST - Asynchronous requests are not valid for this operation. +. + +MessageId=12005 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_DISALLOW_FAST_IO +Language=English +ERROR_FLT_DISALLOW_FAST_IO - Disallow the Fast IO path for this operation. +. + +MessageId=12006 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INVALID_NAME_REQUEST +Language=English +ERROR_FLT_INVALID_NAME_REQUEST - An invalid name request was made. The name requested cannot be retrieved at this time. +. + +MessageId=12007 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_NOT_SAFE_TO_POST_OPERATION +Language=English +ERROR_FLT_NOT_SAFE_TO_POST_OPERATION - Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock. +. + +MessageId=12008 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_NOT_INITIALIZED +Language=English +ERROR_FLT_NOT_INITIALIZED - The Filter Manager was not initialized when a filter tried to register. Make sure that the Filter Manager is getting loaded as a driver. +. + +MessageId=12009 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_FILTER_NOT_READY +Language=English +ERROR_FLT_FILTER_NOT_READY - The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called). +. + +MessageId=12010 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_POST_OPERATION_CLEANUP +Language=English +ERROR_FLT_POST_OPERATION_CLEANUP - The filter must cleanup any operation specific context at this time because it is being removed from the system before the operation is completed by the lower drivers. +. + +MessageId=12011 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INTERNAL_ERROR +Language=English +ERROR_FLT_INTERNAL_ERROR - The Filter Manager had an internal error from which it cannot recover, therefore the operation has been failed. This is usually the result of a filter returning an invalid value from a pre-operation callback. +. + +MessageId=12012 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_DELETING_OBJECT +Language=English +ERROR_FLT_DELETING_OBJECT - The object specified for this action is in the process of being deleted, therefore the action requested cannot be completed at this time. +. + +MessageId=12013 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_MUST_BE_NONPAGED_POOL +Language=English +ERROR_FLT_MUST_BE_NONPAGED_POOL - Non-paged pool must be used for this type of context. +. + +MessageId=12014 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_DUPLICATE_ENTRY +Language=English +ERROR_FLT_DUPLICATE_ENTRY - A duplicate handler definition has been provided for an operation. +. + +MessageId=12015 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_CBDQ_DISABLED +Language=English +ERROR_FLT_CBDQ_DISABLED - The callback data queue has been disabled. +. + +MessageId=12016 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_DO_NOT_ATTACH +Language=English +ERROR_FLT_DO_NOT_ATTACH - Do not attach the filter to the volume at this time. +. + +MessageId=12017 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_DO_NOT_DETACH +Language=English +ERROR_FLT_DO_NOT_DETACH - Do not detach the filter from the volume at this time. +. + +MessageId=12018 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INSTANCE_ALTITUDE_COLLISION +Language=English +ERROR_FLT_INSTANCE_ALTITUDE_COLLISION - An instance already exists at this altitude on the volume specified. +. + +MessageId=12019 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INSTANCE_NAME_COLLISION +Language=English +ERROR_FLT_INSTANCE_NAME_COLLISION - An instance already exists with this name on the volume specified. +. + +MessageId=12020 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_FILTER_NOT_FOUND +Language=English +ERROR_FLT_FILTER_NOT_FOUND - The system could not find the filter specified. +. + +MessageId=12021 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_VOLUME_NOT_FOUND +Language=English +ERROR_FLT_VOLUME_NOT_FOUND - The system could not find the volume specified. +. + +MessageId=12022 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INSTANCE_NOT_FOUND +Language=English +ERROR_FLT_INSTANCE_NOT_FOUND - The system could not find the instance specified. +. + +MessageId=12023 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND +Language=English +ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND - No registered context allocation definition was found for the given request. +. + +MessageId=12024 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_INVALID_CONTEXT_REGISTRATION +Language=English +ERROR_FLT_INVALID_CONTEXT_REGISTRATION - An invalid parameter was specified during context registration. +. + +MessageId=12025 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_NAME_CACHE_MISS +Language=English +ERROR_FLT_NAME_CACHE_MISS - The name requested was not found in Filter Manager's name cache and could not be retrieved from the file system. +. + +MessageId=12026 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_NO_DEVICE_OBJECT +Language=English +ERROR_FLT_NO_DEVICE_OBJECT - The requested device object does not exist for the given volume. +. + +MessageId=12027 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_VOLUME_ALREADY_MOUNTED +Language=English +ERROR_FLT_VOLUME_ALREADY_MOUNTED - The specified volume is already mounted. +. + +MessageId=12028 +Severity=Success +Facility=System +SymbolicName=ERROR_FLT_NO_WAITER_FOR_REPLY +Language=English +ERROR_FLT_NO_WAITER_FOR_REPLY - No waiter is present for the filter's reply to this message. +. + +MessageId=13000 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_QM_POLICY_EXISTS +Language=English +ERROR_IPSEC_QM_POLICY_EXISTS - The specified quick mode policy already exists. +. + +MessageId=13001 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_QM_POLICY_NOT_FOUND +Language=English +ERROR_IPSEC_QM_POLICY_NOT_FOUND - The specified quick mode policy was not found. +. + +MessageId=13002 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_QM_POLICY_IN_USE +Language=English +ERROR_IPSEC_QM_POLICY_IN_USE - The specified quick mode policy is being used. +. + +MessageId=13003 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_POLICY_EXISTS +Language=English +ERROR_IPSEC_MM_POLICY_EXISTS - The specified main mode policy already exists. +. + +MessageId=13004 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_POLICY_NOT_FOUND +Language=English +ERROR_IPSEC_MM_POLICY_NOT_FOUND - The specified main mode policy was not found. +. + +MessageId=13005 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_POLICY_IN_USE +Language=English +ERROR_IPSEC_MM_POLICY_IN_USE - The specified main mode policy is being used. +. + +MessageId=13006 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_FILTER_EXISTS +Language=English +ERROR_IPSEC_MM_FILTER_EXISTS - The specified main mode filter already exists. +. + +MessageId=13007 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_FILTER_NOT_FOUND +Language=English +ERROR_IPSEC_MM_FILTER_NOT_FOUND - The specified main mode filter was not found. +. + +MessageId=13008 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_TRANSPORT_FILTER_EXISTS +Language=English +ERROR_IPSEC_TRANSPORT_FILTER_EXISTS - The specified transport mode filter already exists. +. + +MessageId=13009 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND +Language=English +ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND - The specified transport mode filter does not exist. +. + +MessageId=13010 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_AUTH_EXISTS +Language=English +ERROR_IPSEC_MM_AUTH_EXISTS - The specified main mode authentication list exists. +. + +MessageId=13011 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_AUTH_NOT_FOUND +Language=English +ERROR_IPSEC_MM_AUTH_NOT_FOUND - The specified main mode authentication list was not found. +. + +MessageId=13012 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_AUTH_IN_USE +Language=English +ERROR_IPSEC_MM_AUTH_IN_USE - The specified quick mode policy is being used. +. + +MessageId=13013 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND +Language=English +ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND - The specified main mode policy was not found. +. + +MessageId=13014 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND +Language=English +ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND - The specified quick mode policy was not found. +. + +MessageId=13015 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND +Language=English +ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND - The manifest file contains one or more syntax errors. +. + +MessageId=13016 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_TUNNEL_FILTER_EXISTS +Language=English +ERROR_IPSEC_TUNNEL_FILTER_EXISTS - The application attempted to activate a disabled activation context. +. + +MessageId=13017 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND +Language=English +ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND - The requested lookup key was not found in any active activation context. +. + +MessageId=13018 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_FILTER_PENDING_DELETION +Language=English +ERROR_IPSEC_MM_FILTER_PENDING_DELETION - The Main Mode filter is pending deletion. +. + +MessageId=13019 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION +Language=English +ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION - The transport filter is pending deletion. +. + +MessageId=13020 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION +Language=English +ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION - The tunnel filter is pending deletion. +. + +MessageId=13021 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_POLICY_PENDING_DELETION +Language=English +ERROR_IPSEC_MM_POLICY_PENDING_DELETION - The Main Mode policy is pending deletion. +. + +MessageId=13022 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_MM_AUTH_PENDING_DELETION +Language=English +ERROR_IPSEC_MM_AUTH_PENDING_DELETION - The Main Mode authentication bundle is pending deletion. +. + +MessageId=13023 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_QM_POLICY_PENDING_DELETION +Language=English +ERROR_IPSEC_QM_POLICY_PENDING_DELETION - The Quick Mode policy is pending deletion. +. + +MessageId=13024 +Severity=Success +Facility=System +SymbolicName=WARNING_IPSEC_MM_POLICY_PRUNED +Language=English +WARNING_IPSEC_MM_POLICY_PRUNED - The Main Mode policy was successfully added, but some of the requested offers are not supported. +. + +MessageId=13025 +Severity=Success +Facility=System +SymbolicName=WARNING_IPSEC_QM_POLICY_PRUNED +Language=English +WARNING_IPSEC_QM_POLICY_PRUNED - The Quick Mode policy was successfully added, but some of the requested offers are not supported. +. + +MessageId=13801 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_AUTH_FAIL +Language=English +ERROR_IPSEC_IKE_AUTH_FAIL - IKE authentication credentials are unacceptable. +. + +MessageId=13802 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_ATTRIB_FAIL +Language=English +ERROR_IPSEC_IKE_ATTRIB_FAIL - IKE security attributes are unacceptable. +. + +MessageId=13803 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NEGOTIATION_PENDING +Language=English +ERROR_IPSEC_IKE_NEGOTIATION_PENDING - IKE Negotiation in progress. +. + +MessageId=13804 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR +Language=English +ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR - General processing error. +. + +MessageId=13805 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_TIMED_OUT +Language=English +ERROR_IPSEC_IKE_TIMED_OUT - Negotiation timed out. +. + +MessageId=13806 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NO_CERT +Language=English +ERROR_IPSEC_IKE_NO_CERT - IKE failed to find valid machine certificate. +. + +MessageId=13807 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_SA_DELETED +Language=English +ERROR_IPSEC_IKE_SA_DELETED - IKE SA deleted by peer before establishment completed. +. + +MessageId=13808 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_SA_REAPED +Language=English +ERROR_IPSEC_IKE_SA_REAPED - IKE SA deleted before establishment completed. +. + +MessageId=13809 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_MM_ACQUIRE_DROP +Language=English +ERROR_IPSEC_IKE_MM_ACQUIRE_DROP - Negotiation request sat in Queue too long. +. + +MessageId=13810 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_QM_ACQUIRE_DROP +Language=English +ERROR_IPSEC_IKE_QM_ACQUIRE_DROP - Negotiation request sat in Queue too long. +. + +MessageId=13811 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_QUEUE_DROP_MM +Language=English +ERROR_IPSEC_IKE_QUEUE_DROP_MM - Negotiation request sat in Queue too long. +. + +MessageId=13812 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM +Language=English +ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM - Negotiation request sat in Queue too long. +. + +MessageId=13813 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_DROP_NO_RESPONSE +Language=English +ERROR_IPSEC_IKE_DROP_NO_RESPONSE - No response from peer. +. + +MessageId=13814 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_MM_DELAY_DROP +Language=English +ERROR_IPSEC_IKE_MM_DELAY_DROP - Negotiation took too long. +. + +MessageId=13815 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_QM_DELAY_DROP +Language=English +ERROR_IPSEC_IKE_QM_DELAY_DROP - Negotiation took too long. +. + +MessageId=13816 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_ERROR +Language=English +ERROR_IPSEC_IKE_ERROR - Unknown error occurred. +. + +MessageId=13817 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_CRL_FAILED +Language=English +ERROR_IPSEC_IKE_CRL_FAILED - Certificate Revocation Check failed. +. + +MessageId=13818 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_KEY_USAGE +Language=English +ERROR_IPSEC_IKE_INVALID_KEY_USAGE - Invalid certificate key usage. +. + +MessageId=13819 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_CERT_TYPE +Language=English +ERROR_IPSEC_IKE_INVALID_CERT_TYPE - Invalid certificate type. +. + +MessageId=13820 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NO_PRIVATE_KEY +Language=English +ERROR_IPSEC_IKE_NO_PRIVATE_KEY - No private key associated with machine certificate. +. + +MessageId=13822 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_DH_FAIL +Language=English +ERROR_IPSEC_IKE_DH_FAIL - Failure in Diffie-Hellman computation. +. + +MessageId=13824 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_HEADER +Language=English +ERROR_IPSEC_IKE_INVALID_HEADER - Invalid header. +. + +MessageId=13825 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NO_POLICY +Language=English +ERROR_IPSEC_IKE_NO_POLICY - No policy configured. +. + +MessageId=13826 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_SIGNATURE +Language=English +ERROR_IPSEC_IKE_INVALID_SIGNATURE - Failed to verify signature. +. + +MessageId=13827 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_KERBEROS_ERROR +Language=English +ERROR_IPSEC_IKE_KERBEROS_ERROR - Failed to authenticate using Kerberos. +. + +MessageId=13828 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NO_PUBLIC_KEY +Language=English +ERROR_IPSEC_IKE_NO_PUBLIC_KEY - Peer's certificate did not have a public key. +. + +MessageId=13829 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR - Error processing error payload. +. + +MessageId=13830 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_SA +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_SA - Error processing SA payload. +. + +MessageId=13831 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_PROP +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_PROP - Error processing Proposal payload. +. + +MessageId=13832 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_TRANS +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_TRANS - Error processing Transform payload. +. + +MessageId=13833 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_KE +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_KE - Error processing KE payload. +. + +MessageId=13834 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_ID +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_ID - Error processing ID payload. +. + +MessageId=13835 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_CERT +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_CERT - Error processing Cert payload. +. + +MessageId=13836 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ - Error processing Certificate Request payload. +. + +MessageId=13837 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_HASH +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_HASH - Error processing Hash payload. +. + +MessageId=13838 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_SIG +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_SIG - Error processing Signature payload. +. + +MessageId=13839 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_NONCE +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_NONCE - Error processing Nonce payload. +. + +MessageId=13840 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY - Error processing Notify payload. +. + +MessageId=13841 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_DELETE +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_DELETE - Error processing Delete Payload. +. + +MessageId=13842 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR +Language=English +ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR - Error processing VendorId payload. +. + +MessageId=13843 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_PAYLOAD +Language=English +ERROR_IPSEC_IKE_INVALID_PAYLOAD - Invalid payload received. +. + +MessageId=13844 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_LOAD_SOFT_SA +Language=English +ERROR_IPSEC_IKE_LOAD_SOFT_SA - Soft SA loaded. +. + +MessageId=13845 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN +Language=English +ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN - Soft SA torn down. +. + +MessageId=13846 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_COOKIE +Language=English +ERROR_IPSEC_IKE_INVALID_COOKIE - Invalid cookie received.. +. + +MessageId=13847 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NO_PEER_CERT +Language=English +ERROR_IPSEC_IKE_NO_PEER_CERT - Peer failed to send valid machine certificate. +. + +MessageId=13848 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_PEER_CRL_FAILED +Language=English +ERROR_IPSEC_IKE_PEER_CRL_FAILED - Certification Revocation check of peer's certificate failed. +. + +MessageId=13849 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_POLICY_CHANGE +Language=English +ERROR_IPSEC_IKE_POLICY_CHANGE - New policy invalidated SAs formed with old policy. +. + +MessageId=13850 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NO_MM_POLICY +Language=English +ERROR_IPSEC_IKE_NO_MM_POLICY - There is no available Main Mode IKE policy. +. + +MessageId=13851 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NOTCBPRIV +Language=English +ERROR_IPSEC_IKE_NOTCBPRIV - Failed to enabled TCB privilege. +. + +MessageId=13852 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_SECLOADFAIL +Language=English +ERROR_IPSEC_IKE_SECLOADFAIL - Failed to load SECURITY.DLL. +. + +MessageId=13853 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_FAILSSPINIT +Language=English +ERROR_IPSEC_IKE_FAILSSPINIT - Failed to obtain security function table dispatch address from SSPI. +. + +MessageId=13854 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_FAILQUERYSSP +Language=English +ERROR_IPSEC_IKE_FAILQUERYSSP - Failed to query Kerberos package to obtain max token size. +. + +MessageId=13855 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_SRVACQFAIL +Language=English +ERROR_IPSEC_IKE_SRVACQFAIL - Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service. Kerberos authentication will not function. The most likely reason for this is lack of domain membership. This is normal if your computer is a member of a workgroup. +. + +MessageId=13856 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_SRVQUERYCRED +Language=English +ERROR_IPSEC_IKE_SRVQUERYCRED - Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes). +. + +MessageId=13857 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_GETSPIFAIL +Language=English +ERROR_IPSEC_IKE_GETSPIFAIL - Failed to obtain new SPI for the inbound SA from IPSec driver. The most common cause for this is that the driver does not have the correct filter. Check your policy to verify the filters. +. + +MessageId=13858 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_FILTER +Language=English +ERROR_IPSEC_IKE_INVALID_FILTER - Given filter is invalid. +. + +MessageId=13859 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_OUT_OF_MEMORY +Language=English +ERROR_IPSEC_IKE_OUT_OF_MEMORY - Memory allocation failed. +. + +MessageId=13860 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED +Language=English +ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED - Failed to add Security Association to IPSec Driver. The most common cause for this is if the IKE negotiation took too long to complete. If the problem persists, reduce the load on the faulting machine. +. + +MessageId=13861 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_POLICY +Language=English +ERROR_IPSEC_IKE_INVALID_POLICY - Invalid policy. +. + +MessageId=13862 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_UNKNOWN_DOI +Language=English +ERROR_IPSEC_IKE_UNKNOWN_DOI - Invalid DOI. +. + +MessageId=13863 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_SITUATION +Language=English +ERROR_IPSEC_IKE_INVALID_SITUATION - Invalid situation. +. + +MessageId=13864 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_DH_FAILURE +Language=English +ERROR_IPSEC_IKE_DH_FAILURE - Diffie-Hellman failure. +. + +MessageId=13865 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_GROUP +Language=English +ERROR_IPSEC_IKE_INVALID_GROUP - Invalid Diffie-Hellman group. +. + +MessageId=13866 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_ENCRYPT +Language=English +ERROR_IPSEC_IKE_ENCRYPT - Error encrypting payload. +. + +MessageId=13867 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_DECRYPT +Language=English +ERROR_IPSEC_IKE_DECRYPT - Error decrypting payload. +. + +MessageId=13868 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_POLICY_MATCH +Language=English +ERROR_IPSEC_IKE_POLICY_MATCH - Policy match error. +. + +MessageId=13869 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_UNSUPPORTED_ID +Language=English +ERROR_IPSEC_IKE_UNSUPPORTED_ID - Unsupported ID. +. + +MessageId=13870 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_HASH +Language=English +ERROR_IPSEC_IKE_INVALID_HASH - Hash verification failed. +. + +MessageId=13871 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_HASH_ALG +Language=English +ERROR_IPSEC_IKE_INVALID_HASH_ALG - Invalid hash algorithm. +. + +MessageId=13872 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_HASH_SIZE +Language=English +ERROR_IPSEC_IKE_INVALID_HASH_SIZE - Invalid hash size. +. + +MessageId=13873 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG +Language=English +ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG - Invalid encryption algorithm. +. + +MessageId=13874 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_AUTH_ALG +Language=English +ERROR_IPSEC_IKE_INVALID_AUTH_ALG - Invalid authentication algorithm. +. + +MessageId=13875 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_SIG +Language=English +ERROR_IPSEC_IKE_INVALID_SIG - Invalid certificate signature. +. + +MessageId=13876 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_LOAD_FAILED +Language=English +ERROR_IPSEC_IKE_LOAD_FAILED - Load failed. +. + +MessageId=13877 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_RPC_DELETE +Language=English +ERROR_IPSEC_IKE_RPC_DELETE - Deleted via RPC call. +. + +MessageId=13878 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_BENIGN_REINIT +Language=English +ERROR_IPSEC_IKE_BENIGN_REINIT - Temporary state created to perform reinit. This is not a real failure. +. + +MessageId=13879 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY +Language=English +ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY - The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value. Please fix the policy on the peer machine. +. + +MessageId=13881 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN +Language=English +ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN - Key length in certificate is too small for configured security requirements. +. + +MessageId=13882 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_MM_LIMIT +Language=English +ERROR_IPSEC_IKE_MM_LIMIT - Max number of established MM SAs to peer exceeded. +. + +MessageId=13883 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NEGOTIATION_DISABLED +Language=English +ERROR_IPSEC_IKE_NEGOTIATION_DISABLED - IKE received a policy that disables negotiation. +. + +MessageId=13884 +Severity=Success +Facility=System +SymbolicName=ERROR_IPSEC_IKE_NEG_STATUS_END +Language=English +ERROR_IPSEC_IKE_NEG_STATUS_END - ERROR_IPSEC_IKE_NEG_STATUS_END +. + +MessageId=14000 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_SECTION_NOT_FOUND +Language=English +ERROR_SXS_SECTION_NOT_FOUND - The requested section was not present in the activation context. +. + +MessageId=14001 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_CANT_GEN_ACTCTX +Language=English +ERROR_SXS_CANT_GEN_ACTCTX - This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. +. + +MessageId=14002 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_ACTCTXDATA_FORMAT +Language=English +ERROR_SXS_INVALID_ACTCTXDATA_FORMAT - The application binding data format is invalid. +. + +MessageId=14003 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_ASSEMBLY_NOT_FOUND +Language=English +ERROR_SXS_ASSEMBLY_NOT_FOUND - The referenced assembly is not installed on your system. +. + +MessageId=14004 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_MANIFEST_FORMAT_ERROR +Language=English +ERROR_SXS_MANIFEST_FORMAT_ERROR - The manifest file does not begin with the required tag and format information. +. + +MessageId=14005 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_MANIFEST_PARSE_ERROR +Language=English +ERROR_SXS_MANIFEST_PARSE_ERROR - The manifest file contains one or more syntax errors. +. + +MessageId=14006 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_ACTIVATION_CONTEXT_DISABLED +Language=English +ERROR_SXS_ACTIVATION_CONTEXT_DISABLED - The application attempted to activate a disabled activation context. +. + +MessageId=14007 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_KEY_NOT_FOUND +Language=English +ERROR_SXS_KEY_NOT_FOUND - The requested lookup key was not found in any active activation context. +. + +MessageId=14008 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_VERSION_CONFLICT +Language=English +ERROR_SXS_VERSION_CONFLICT - A component version required by the application conflicts with another component version already active. +. + +MessageId=14009 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_WRONG_SECTION_TYPE +Language=English +ERROR_SXS_WRONG_SECTION_TYPE - The type requested activation context section does not match the query API used. +. + +MessageId=14010 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_THREAD_QUERIES_DISABLED +Language=English +ERROR_SXS_THREAD_QUERIES_DISABLED - Lack of system resources has required isolated activation to be disabled for the current thread of execution. +. + +MessageId=14011 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET +Language=English +ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET - An attempt to set the process default activation context failed because the process default activation context was already set. +. + +MessageId=14012 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_UNKNOWN_ENCODING_GROUP +Language=English +ERROR_SXS_UNKNOWN_ENCODING_GROUP - The encoding group identifier specified is not recognized. +. + +MessageId=14013 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_UNKNOWN_ENCODING +Language=English +ERROR_SXS_UNKNOWN_ENCODING - The encoding requested is not recognized. +. + +MessageId=14014 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_XML_NAMESPACE_URI +Language=English +ERROR_SXS_INVALID_XML_NAMESPACE_URI - The manifest contains a reference to an invalid URI. +. + +MessageId=14015 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED +Language=English +ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED - The application manifest contains a reference to a dependent assembly which is not installed. +. + +MessageId=14016 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED +Language=English +ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED - The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed. +. + +MessageId=14017 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE +Language=English +ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE - The manifest contains an attribute for the assembly identity which is not valid. +. + +MessageId=14018 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE +Language=English +ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE - The manifest is missing the required default namespace specification on the assembly element. +. + +MessageId=14019 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE +Language=English +ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE - The manifest has a default namespace specified on the assembly element but its value is not \"urn:schemas-microsoft-com:asm.v1\". +. + +MessageId=14020 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT +Language=English +ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT - The private manifest probe has crossed the reparse-point-associated path. +. + +MessageId=14021 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_DLL_NAME +Language=English +ERROR_SXS_DUPLICATE_DLL_NAME - Two or more components referenced directly or indirectly by the application manifest have files by the same name. +. + +MessageId=14022 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME +Language=English +ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME - Two or more components referenced directly or indirectly by the application manifest have window classes with the same name. +. + +MessageId=14023 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_CLSID +Language=English +ERROR_SXS_DUPLICATE_CLSID - Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs. +. + +MessageId=14024 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_IID +Language=English +ERROR_SXS_DUPLICATE_IID - Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs. +. + +MessageId=14025 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_TLBID +Language=English +ERROR_SXS_DUPLICATE_TLBID - Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs. +. + +MessageId=14026 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_PROGID +Language=English +ERROR_SXS_DUPLICATE_PROGID - Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs. +. + +MessageId=14027 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_DUPLICATE_ASSEMBLY_NAME +Language=English +ERROR_SXS_DUPLICATE_ASSEMBLY_NAME - Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted. +. + +MessageId=14028 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_FILE_HASH_MISMATCH +Language=English +ERROR_SXS_FILE_HASH_MISMATCH - A component's file does not match the verification information present in the component manifest. +. + +MessageId=14029 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_POLICY_PARSE_ERROR +Language=English +ERROR_SXS_POLICY_PARSE_ERROR - The policy manifest contains one or more syntax errors. +. + +MessageId=14030 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MISSINGQUOTE +Language=English +ERROR_SXS_XML_E_MISSINGQUOTE - Manifest Parse Error : A string literal was expected, but no opening quote character was found. +. + +MessageId=14031 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_COMMENTSYNTAX +Language=English +ERROR_SXS_XML_E_COMMENTSYNTAX - Manifest Parse Error : Incorrect syntax was used in a comment. +. + +MessageId=14032 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADSTARTNAMECHAR +Language=English +ERROR_SXS_XML_E_BADSTARTNAMECHAR - Manifest Parse Error : A name was started with an invalid character. +. + +MessageId=14033 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADNAMECHAR +Language=English +ERROR_SXS_XML_E_BADNAMECHAR - Manifest Parse Error : A name contained an invalid character. +. + +MessageId=14034 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADCHARINSTRING +Language=English +ERROR_SXS_XML_E_BADCHARINSTRING - Manifest Parse Error : A string literal contained an invalid character. +. + +MessageId=14035 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_XMLDECLSYNTAX +Language=English +ERROR_SXS_XML_E_XMLDECLSYNTAX - Manifest Parse Error : Invalid syntax for an XML declaration. +. + +MessageId=14036 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADCHARDATA +Language=English +ERROR_SXS_XML_E_BADCHARDATA - Manifest Parse Error : An invalid character was found in text content. +. + +MessageId=14037 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MISSINGWHITESPACE +Language=English +ERROR_SXS_XML_E_MISSINGWHITESPACE - Manifest Parse Error : Required white space was missing. +. + +MessageId=14038 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_EXPECTINGTAGEND +Language=English +ERROR_SXS_XML_E_EXPECTINGTAGEND - Manifest Parse Error : The character '>' was expected. +. + +MessageId=14039 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MISSINGSEMICOLON +Language=English +ERROR_SXS_XML_E_MISSINGSEMICOLON - Manifest Parse Error : A semi colon character was expected. +. + +MessageId=14040 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNBALANCEDPAREN +Language=English +ERROR_SXS_XML_E_UNBALANCEDPAREN - Manifest Parse Error : Unbalanced parentheses. +. + +MessageId=14041 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INTERNALERROR +Language=English +ERROR_SXS_XML_E_INTERNALERROR - Manifest Parse Error : Internal error. +. + +MessageId=14042 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE +Language=English +ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE - Manifest Parse Error : White space is not allowed at this location. +. + +MessageId=14043 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INCOMPLETE_ENCODING +Language=English +ERROR_SXS_XML_E_INCOMPLETE_ENCODING - Manifest Parse Error : End of file reached in invalid state for current encoding. +. + +MessageId=14044 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MISSING_PAREN +Language=English +ERROR_SXS_XML_E_MISSING_PAREN - Manifest Parse Error : Missing parenthesis. +. + +MessageId=14045 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE +Language=English +ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE - Manifest Parse Error : A single or double closing quote character (\' or \") is missing. +. + +MessageId=14046 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MULTIPLE_COLONS +Language=English +ERROR_SXS_XML_E_MULTIPLE_COLONS - Manifest Parse Error : Multiple colons are not allowed in a name. +. + +MessageId=14047 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALID_DECIMAL +Language=English +ERROR_SXS_XML_E_INVALID_DECIMAL - Manifest Parse Error : Invalid character for decimal digit. +. + +MessageId=14048 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALID_HEXIDECIMAL +Language=English +ERROR_SXS_XML_E_INVALID_HEXIDECIMAL - Manifest Parse Error : Invalid character for hexadecimal digit. +. + +MessageId=14049 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALID_UNICODE +Language=English +ERROR_SXS_XML_E_INVALID_UNICODE - Manifest Parse Error : Invalid Unicode character value for this platform. +. + +MessageId=14050 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK +Language=English +ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK - Manifest Parse Error : Expecting white space or '?'. +. + +MessageId=14051 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNEXPECTEDENDTAG +Language=English +ERROR_SXS_XML_E_UNEXPECTEDENDTAG - Manifest Parse Error : End tag was not expected at this location. +. + +MessageId=14052 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDTAG +Language=English +ERROR_SXS_XML_E_UNCLOSEDTAG - Manifest Parse Error : The following tags were not closed: %1. +. + +MessageId=14053 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_DUPLICATEATTRIBUTE +Language=English +ERROR_SXS_XML_E_DUPLICATEATTRIBUTE - Manifest Parse Error : Duplicate attribute. +. + +MessageId=14054 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MULTIPLEROOTS +Language=English +ERROR_SXS_XML_E_MULTIPLEROOTS - Manifest Parse Error : Only one top level element is allowed in an XML document. +. + +MessageId=14055 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALIDATROOTLEVEL +Language=English +ERROR_SXS_XML_E_INVALIDATROOTLEVEL - Manifest Parse Error : Invalid at the top level of the document. +. + +MessageId=14056 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADXMLDECL +Language=English +ERROR_SXS_XML_E_BADXMLDECL - Manifest Parse Error : Invalid XML declaration. +. + +MessageId=14057 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MISSINGROOT +Language=English +ERROR_SXS_XML_E_MISSINGROOT - Manifest Parse Error : XML document must have a top level element. +. + +MessageId=14058 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNEXPECTEDEOF +Language=English +ERROR_SXS_XML_E_UNEXPECTEDEOF - Manifest Parse Error : Unexpected end of file. +. + +MessageId=14059 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADPEREFINSUBSET +Language=English +ERROR_SXS_XML_E_BADPEREFINSUBSET - Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset. +. + +MessageId=14060 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDSTARTTAG +Language=English +ERROR_SXS_XML_E_UNCLOSEDSTARTTAG - Manifest Parse Error : Element was not closed. +. + +MessageId=14061 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDENDTAG +Language=English +ERROR_SXS_XML_E_UNCLOSEDENDTAG - Manifest Parse Error : End element was missing the character '>'. +. + +MessageId=14062 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDSTRING +Language=English +ERROR_SXS_XML_E_UNCLOSEDSTRING - Manifest Parse Error : A string literal was not closed. +. + +MessageId=14063 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDCOMMENT +Language=English +ERROR_SXS_XML_E_UNCLOSEDCOMMENT - Manifest Parse Error : A comment was not closed. +. + +MessageId=14064 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDDECL +Language=English +ERROR_SXS_XML_E_UNCLOSEDDECL - Manifest Parse Error : A declaration was not closed. +. + +MessageId=14065 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNCLOSEDCDATA +Language=English +ERROR_SXS_XML_E_UNCLOSEDCDATA - Manifest Parse Error : A CDATA section was not closed. +. + +MessageId=14066 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_RESERVEDNAMESPACE +Language=English +ERROR_SXS_XML_E_RESERVEDNAMESPACE - Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string \"xml\". +. + +MessageId=14067 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALIDENCODING +Language=English +ERROR_SXS_XML_E_INVALIDENCODING - Manifest Parse Error : System does not support the specified encoding. +. + +MessageId=14068 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALIDSWITCH +Language=English +ERROR_SXS_XML_E_INVALIDSWITCH - Manifest Parse Error : Switch from current encoding to specified encoding not supported. +. + +MessageId=14069 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_BADXMLCASE +Language=English +ERROR_SXS_XML_E_BADXMLCASE - Manifest Parse Error : The name 'xml' is reserved and must be lower case. +. + +MessageId=14070 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALID_STANDALONE +Language=English +ERROR_SXS_XML_E_INVALID_STANDALONE - Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'. +. + +MessageId=14071 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_UNEXPECTED_STANDALONE +Language=English +ERROR_SXS_XML_E_UNEXPECTED_STANDALONE - Manifest Parse Error : The standalone attribute cannot be used in external entities. +. + +MessageId=14072 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_INVALID_VERSION +Language=English +ERROR_SXS_XML_E_INVALID_VERSION - Manifest Parse Error : Invalid version number. +. + +MessageId=14073 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_XML_E_MISSINGEQUALS +Language=English +ERROR_SXS_XML_E_MISSINGEQUALS - Manifest Parse Error : Missing equals sign between attribute and attribute value. +. + +MessageId=14074 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PROTECTION_RECOVERY_FAILED +Language=English +ERROR_SXS_PROTECTION_RECOVERY_FAILED - Assembly Protection Error: Unable to recover the specified assembly. +. + +MessageId=14075 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT +Language=English +ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT - Assembly Protection Error: The public key for an assembly was too short to be allowed. +. + +MessageId=14076 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PROTECTION_CATALOG_NOT_VALID +Language=English +ERROR_SXS_PROTECTION_CATALOG_NOT_VALID - Assembly Protection Error: The catalog for an assembly is not valid, or does not match the assembly's manifest. +. + +MessageId=14077 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_UNTRANSLATABLE_HRESULT +Language=English +ERROR_SXS_UNTRANSLATABLE_HRESULT - An HRESULT could not be translated to a corresponding Win32 error code. +. + +MessageId=14078 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING +Language=English +ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING - Assembly Protection Error: The catalog for an assembly is missing. +. + +MessageId=14079 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE +Language=English +ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE - The supplied assembly identity is missing one or more attributes which must be present in this context. +. + +MessageId=14080 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME +Language=English +ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME - The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names. +. + +MessageId=14081 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_ASSEMBLY_MISSING +Language=English +ERROR_SXS_ASSEMBLY_MISSING - The referenced assembly could not be found. +. + +MessageId=14082 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_CORRUPT_ACTIVATION_STACK +Language=English +ERROR_SXS_CORRUPT_ACTIVATION_STACK - The activation context activation stack for the running thread of execution is corrupt. +. + +MessageId=14083 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_CORRUPTION +Language=English +ERROR_SXS_CORRUPTION - The application isolation metadata for this process or thread has become corrupt. +. + +MessageId=14084 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_EARLY_DEACTIVATION +Language=English +ERROR_SXS_EARLY_DEACTIVATION - The activation context being deactivated is not the most recently activated one. +. + +MessageId=14085 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_DEACTIVATION +Language=English +ERROR_SXS_INVALID_DEACTIVATION - The activation context being deactivated is not active for the current thread of execution. +. + +MessageId=14086 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_MULTIPLE_DEACTIVATION +Language=English +ERROR_SXS_MULTIPLE_DEACTIVATION - The activation context being deactivated has already been deactivated. +. + +MessageId=14087 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_PROCESS_TERMINATION_REQUESTED +Language=English +ERROR_SXS_PROCESS_TERMINATION_REQUESTED - A component used by the isolation facility has requested to terminate the process. +. + +MessageId=14088 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_RELEASE_ACTIVATION_CONTEXT +Language=English +ERROR_SXS_RELEASE_ACTIVATION_CONTEXT - A kernel mode component is releasing a reference on an activation context. +. + +MessageId=14089 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY +Language=English +ERROR_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY - The activation context of system default assembly could not be generated. +. + +MessageId=14090 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE +Language=English +ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE - The value of an attribute in an identity is not within the legal range. +. + +MessageId=14091 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME +Language=English +ERROR_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME - The name of an attribute in an identity is not within the legal range. +. + +MessageId=14092 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE +Language=English +ERROR_SXS_IDENTITY_DUPLICATE_ATTRIBUTE - An identity contains two definitions for the same attribute. +. + +MessageId=14093 +Severity=Success +Facility=System +SymbolicName=ERROR_SXS_IDENTITY_PARSE_ERROR +Language=English +ERROR_SXS_IDENTITY_PARSE_ERROR - The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value. +. + +MessageId=15000 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_INVALID_CHANNEL_PATH +Language=English +ERROR_EVT_INVALID_CHANNEL_PATH - The specified channel path is invalid. See extended error info for more details. +. + +MessageId=15001 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_INVALID_QUERY +Language=English +ERROR_EVT_INVALID_QUERY - The specified query is invalid. See extended error info for more details. +. + +MessageId=15002 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_PUBLISHER_MANIFEST_NOT_FOUND +Language=English +ERROR_EVT_PUBLISHER_MANIFEST_NOT_FOUND - The publisher did indicate they have a manifest/resource but a manifest/resource could not be found. +. + +MessageId=15003 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_PUBLISHER_MANIFEST_NOT_SPECIFIED +Language=English +ERROR_EVT_PUBLISHER_MANIFEST_NOT_SPECIFIED - The publisher does not have a manifest and is performing an operation which requires they have a manifest. +. + +MessageId=15004 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_NO_REGISTERED_TEMPLATE +Language=English +ERROR_EVT_NO_REGISTERED_TEMPLATE - There is no registered template for specified event id. +. + +MessageId=15005 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_EVENT_CHANNEL_MISMATCH +Language=English +ERROR_EVT_EVENT_CHANNEL_MISMATCH - The specified event was declared in the manifest to go a different channel than the one this publisher handle is bound to. +. + +MessageId=15006 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_UNEXPECTED_VALUE_TYPE +Language=English +ERROR_EVT_UNEXPECTED_VALUE_TYPE - The type of a specified substitution value does not match the type expected from the template definition. +. + +MessageId=15007 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_UNEXPECTED_NUM_VALUES +Language=English +ERROR_EVT_UNEXPECTED_NUM_VALUES - The number of specified substitution values does not match the number expected from the template definition. +. + +MessageId=15008 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_CHANNEL_NOT_FOUND +Language=English +ERROR_EVT_CHANNEL_NOT_FOUND - The specified channel could not be found. Check channel configuration. +. + +MessageId=15009 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_MALFORMED_XML_TEXT +Language=English +ERROR_EVT_MALFORMED_XML_TEXT - The specified xml text was not well-formed. See Extended Error for more details. +. + +MessageId=15010 +Severity=Success +Facility=System +SymbolicName=ERROR_EVT_CHANNEL_PATH_TOO_GENERAL +Language=English +ERROR_EVT_CHANNEL_PATH_TOO_GENERAL - The specified channel path selects more than one instance of a channel. The operation requires that only one channel be selected. It may be necessary to scope channel path to version / publicKeyToken to select only one instance. +. + + +MessageId=0x000E +Severity=Warning +Facility=WIN32 +SymbolicName=E_OUTOFMEMORY +Language=English +E_OUTOFMEMORY - Out of memory +. + +MessageId=0x0057 +Severity=Warning +Facility=WIN32 +SymbolicName=E_INVALIDARG +Language=English +E_INVALIDARG - One or more arguments are invalid +. + +MessageId=0x0006 +Severity=Warning +Facility=WIN32 +SymbolicName=E_HANDLE +Language=English +E_POINTER - Invalid handle +. + +MessageId=0x0005 +Severity=Warning +Facility=WIN32 +SymbolicName=E_ACCESSDENIED +Language=English +E_ACCESSDENIED - WIN32 access denied error +. + + +MessageId=0x0000 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_OLEVERB +Language=English +OLE_E_OLEVERB - Invalid OLEVERB structure +. + +MessageId=0x0001 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_ADVF +Language=English +OLE_E_ADVF - Invalid advise flags +. + +MessageId=0x0002 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_ENUM_NOMORE +Language=English +OLE_E_ENUM_NOMORE - Can't enumerate any more, because the associated data is missing +. + +MessageId=0x0003 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_ADVISENOTSUPPORTED +Language=English +OLE_E_ADVISENOTSUPPORTED - This implementation doesn't take advises +. + +MessageId=0x0004 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_NOCONNECTION +Language=English +OLE_E_NOCONNECTION - There is no connection for this connection ID +. + +MessageId=0x0005 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_NOTRUNNING +Language=English +OLE_E_NOTRUNNING - Need to run the object to perform this operation +. + +MessageId=0x0006 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_NOCACHE +Language=English +OLE_E_NOCACHE - There is no cache to operate on +. + +MessageId=0x0007 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_BLANK +Language=English +OLE_E_BLANK - Uninitialized object +. + +MessageId=0x0008 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_CLASSDIFF +Language=English +OLE_E_CLASSDIFF - Linked object's source class has changed +. + +MessageId=0x0009 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_CANT_GETMONIKER +Language=English +OLE_E_CANT_GETMONIKER - Not able to get the moniker of the object +. + +MessageId=0x000A +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_CANT_BINDTOSOURCE +Language=English +OLE_E_CANT_BINDTOSOURCE - Not able to bind to the source +. + +MessageId=0x000B +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_STATIC +Language=English +OLE_E_STATIC - Object is static; operation not allowed +. + +MessageId=0x000C +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_PROMPTSAVECANCELLED +Language=English +OLE_E_PROMPTSAVECANCELLED - User canceled out of save dialog +. + +MessageId=0x000D +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_INVALIDRECT +Language=English +OLE_E_INVALIDRECT - Invalid rectangle +. + +MessageId=0x000E +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_WRONGCOMPOBJ +Language=English +OLE_E_WRONGCOMPOBJ - compobj.dll is too old for the ole2.dll initialized +. + +MessageId=0x000F +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_INVALIDHWND +Language=English +OLE_E_INVALIDHWND - Invalid window handle +. + +MessageId=0x0010 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_NOT_INPLACEACTIVE +Language=English +OLE_E_NOT_INPLACEACTIVE - Object is not in any of the inplace active states +. + +MessageId=0x0011 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_CANTCONVERT +Language=English +OLE_E_CANTCONVERT - Not able to convert object +. + +MessageId=0x0012 +Severity=Warning +Facility=ITF +SymbolicName=OLE_E_NOSTORAGE +Language=English +OLE_E_NOSTORAGE - Not able to perform the operation because object is not given storage yet +. + +MessageId=0x0064 +Severity=Warning +Facility=ITF +SymbolicName=DV_E_FORMATETC +Language=English +DV_E_FORMATETC - Invalid FORMATETC structure +. + +MessageId=0x0065 +Severity=Warning +Facility=ITF +SymbolicName=DV_E_DVTARGETDEVICE +Language=English +DV_E_DVTARGETDEVICE - Invalid DVTARGETDEVICE structure +. + +MessageId=0x0066 +Severity=Warning +Facility=ITF +SymbolicName=DV_E_STGMEDIUM +Language=English +DV_E_STGMEDIUM - Invalid STDGMEDIUM structure +. + +MessageId=0x0067 +Severity=Warning +Facility=ITF +SymbolicName=DV_E_STATDATA +Language=English +DV_E_STATDATA - Invalid STATDATA structure +. + +MessageId=0x0068 +Severity=Warning +Facility=ITF +SymbolicName=DV_E_LINDEX +Language=English +DV_E_LINDEX - Invalid lindex +. + +MessageId=0x0069 +Severity=Warning +Facility=ITF +SymbolicName=DV_E_TYMED +Language=English +DV_E_TYMED - Invalid tymed +. + +MessageId=0x006A +Severity=Warning +Facility=ITF +SymbolicName=DV_E_CLIPFORMAT +Language=English +DV_E_CLIPFORMAT - Invalid clipboard format +. + +MessageId=0x006B +Severity=Warning +Facility=ITF +SymbolicName=DV_E_DVASPECT +Language=English +DV_E_DVASPECT - Invalid aspect(s) +. + +MessageId=0x006C +Severity=Warning +Facility=ITF +SymbolicName=DV_E_DVTARGETDEVICE_SIZE +Language=English +DV_E_DVTARGETDEVICE_SIZE - tdSize parameter of the DVTARGETDEVICE structure is invalid +. + +MessageId=0x006D +Severity=Warning +Facility=ITF +SymbolicName=DV_E_NOIVIEWOBJECT +Language=English +DV_E_NOIVIEWOBJECT - Object doesn't support IViewObject interface +. + +MessageId=0x0100 +Severity=Warning +Facility=ITF +SymbolicName=DRAGDROP_E_NOTREGISTERED +Language=English +DRAGDROP_E_NOTREGISTERED - Trying to revoke a drop target that has not been registered +. + +MessageId=0x0101 +Severity=Warning +Facility=ITF +SymbolicName=DRAGDROP_E_ALREADYREGISTERED +Language=English +DRAGDROP_E_ALREADYREGISTERED - This window has already been registered as a drop target +. + +MessageId=0x0102 +Severity=Warning +Facility=ITF +SymbolicName=DRAGDROP_E_INVALIDHWND +Language=English +DRAGDROP_E_INVALIDHWND - Invalid window handle +. + +MessageId=0x0110 +Severity=Warning +Facility=ITF +SymbolicName=CLASS_E_NOAGGREGATION +Language=English +CLASS_E_NOAGGREGATION - Class does not support aggregation (or class object is remote) +. + +MessageId=0x0111 +Severity=Warning +Facility=ITF +SymbolicName=CLASS_E_CLASSNOTAVAILABLE +Language=English +CLASS_E_CLASSNOTAVAILABLE - ClassFactory cannot supply requested class +. + +MessageId=0x0112 +Severity=Warning +Facility=ITF +SymbolicName=CLASS_E_NOTLICENSED +Language=English +CLASS_E_NOTLICENSED - Class is not licensed for use +. diff --git a/sdk/include/reactos/mc/neteventmsg.mc b/sdk/include/reactos/mc/neteventmsg.mc index cf63e8ddc06..7a3cbb7f79d 100644 --- a/sdk/include/reactos/mc/neteventmsg.mc +++ b/sdk/include/reactos/mc/neteventmsg.mc @@ -1,616 +1,616 @@ -; -; netevent.mc MESSAGE resources for netevent.dll -; - -MessageIdTypedef=DWORD - -SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS - Informational=0x1:STATUS_SEVERITY_INFORMATIONAL - Warning=0x2:STATUS_SEVERITY_WARNING - Error=0x3:STATUS_SEVERITY_ERROR - ) - -FacilityNames=(System=0x0:FACILITY_SYSTEM - ) - -LanguageNames=(English=0x409:MSG00409 - Russian=0x419:MSG00419) - - -; -; message definitions -; - -; Facility=System - -; -; eventlog events 6000-6099 -; - -MessageId=6000 -Severity=Warning -Facility=System -SymbolicName=EVENT_LOG_FULL -Language=English -The %1 log file is full. -. -Language=Russian -Файл журнала "%1" заполнен. -. - -MessageId=6001 -Severity=Warning -Facility=System -SymbolicName=EVENT_LogFileNotOpened -Language=English -The %1 log file cannot be opened. -. -Language=Russian -Файл журнала "%1" не может быть открыт. -. - -MessageId=6002 -Severity=Warning -Facility=System -SymbolicName=EVENT_LogFileCorrupt -Language=English -The %1 log file is corrupted and will be cleared. -. -Language=Russian -Файл журана "%1" поврежден и будет очищен. -. - -MessageId=6003 -Severity=Warning -Facility=System -SymbolicName=EVENT_DefaultLogCorrupt -Language=English -The Application log file could not be opened. %1 will be used as the default log file. -. -Language=Russian -Файл журнала "Приложения" не может быть открыт. "%1" будет использоваться в качестве файла журана по умолчанию. -. - -MessageId=6004 -Severity=Warning -Facility=System -SymbolicName=EVENT_BadDriverPacket -Language=English -A driver packet received from the I/O subsystem was invalid. The data is the packet. -. -Language=Russian -Пакет драйвера, полученный от подсистемы ввода-вывода недопустим. Данные являются пакетом. -. - -MessageId=6005 -Severity=Warning -Facility=System -SymbolicName=EVENT_EventlogStarted -Language=English -The Event log service was started. -. -Language=Russian -Служба журана событий была запущена. -. - -MessageId=6006 -Severity=Warning -Facility=System -SymbolicName=EVENT_EventlogStopped -Language=English -The Event log service was stopped. -. -Language=Russian -Служба журнала событий была остановлена. -. - -MessageId=6007 -Severity=Warning -Facility=System -SymbolicName=TITLE_EventlogMessageBox -Language=English -Eventlog Service %0 -. -Language=Russian -Служба журнала событий %0 -. - -MessageId=6008 -Severity=Warning -Facility=System -SymbolicName=EVENT_EventlogAbnormalShutdown -Language=English -The previous system shutdown at %1 on %2 was unexpected. -. -Language=Russian -Предыдущее завершение работы системы в %1 %2 было неожиданным. -. - -MessageId=6009 -Severity=Warning -Facility=System -SymbolicName=EVENT_EventLogProductInfo -Language=English -ReactOS %1 %2 %3 %4. -. - -MessageId=6010 -Severity=Error -Facility=System -SymbolicName=EVENT_ServiceNoEventLog -Language=English -The %1 service was unable to set up an event source. -. -Language=Russian -Служба "%1" не смогла установить источник события. -. - -MessageId=6011 -Severity=Error -Facility=System -SymbolicName=EVENT_ComputerNameChange -Language=English -The NetBIOS name and DNS host name of this machine have been changed from %1 to %2. -. -Language=Russian -NetBIOS и DNS имена этого компьютера были изменены с "%1" на "%2". -. - -MessageId=6012 -Severity=Error -Facility=System -SymbolicName=EVENT_DNSDomainNameChange -Language=English -The DNS domain assigned to this computer has been changed from %1 to %2. -. -Language=Russian -DNS-домен присвоенный этому компьютеру был изменен с "%1" на "%2". -. - - -; -; system events 6100 - 6199 -; - -MessageId=6100 -Severity=Error -Facility=System -SymbolicName=EVENT_UP_DRIVER_ON_MP -Language=English -A uniprocessor-specific driver was loaded on a multiprocessor system. The driver could not load. -. -Language=Russian -Однопроцессорный драйвер был загружен на многопроцессорной системе. Драйвер не может быть загружен. -. - - -; -; service controller events 7000-7899 -; - -MessageId=7000 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_START_FAILED -Language=English -The %1 service failed to start due to the following error: %n%2 -. -Language=Russian -Службе "%1" не удалось запуститься из-за следующей ошибки: %n%2 -. - -MessageId=7001 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_START_FAILED_II -Language=English -The %1 service depends on the %2 service which failed to start because of the following error: %n%3 -. -Language=Russian -Служба "%1" зависит от службы "%2", которой не удалось запуститься из-за следующей ошибки: %n%3 -. - -MessageId=7002 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_START_FAILED_GROUP -Language=English -The %1 service depends on the %2 group and no member of this group started. -. -Language=Russian -Служба "%1" зависит от группы "%2" и ни один элемент этой группы не запущен. -. - -MessageId=7003 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_START_FAILED_NONE -Language=English -The %1 service depends on the following nonexistent service: %2 -. -Language=Russian -Служба "%1" зависит от следующей несуществующей службы: "%2" -. - -MessageId=7005 -Severity=Error -Facility=System -SymbolicName=EVENT_CALL_TO_FUNCTION_FAILED -Language=English -The %1 call failed with the following error: %n%2 -. -Language=Russian -Вызов "%1" завершился ошибкой: %n%2 -. - -MessageId=7006 -Severity=Error -Facility=System -SymbolicName=EVENT_CALL_TO_FUNCTION_FAILED_II -Language=English -The %1 call failed for %2 with the following error: %n%3 -. - -MessageId=7007 -Severity=Error -Facility=System -SymbolicName=EVENT_REVERTED_TO_LASTKNOWNGOOD -Language=English -The system reverted to its last known good configuration. The system is restarting.... -. - -MessageId=7008 -Severity=Error -Facility=System -SymbolicName=EVENT_BAD_ACCOUNT_NAME -Language=English -No backslash is in the account name. -. - -MessageId=7009 -Severity=Error -Facility=System -SymbolicName=EVENT_CONNECTION_TIMEOUT -Language=English -Timeout (%1 milliseconds) waiting for the %2 service to connect. -. - -MessageId=7010 -Severity=Error -Facility=System -SymbolicName=EVENT_READFILE_TIMEOUT -Language=English -Timeout (%1 milliseconds) waiting for ReadFile. -. - -MessageId=7011 -Severity=Error -Facility=System -SymbolicName=EVENT_TRANSACT_TIMEOUT -Language=English -Timeout (%1 milliseconds) waiting for a transaction response from the %2 service. -. - -MessageId=7012 -Severity=Error -Facility=System -SymbolicName=EVENT_TRANSACT_INVALID -Language=English -Message returned in transaction has incorrect size. -. - -MessageId=7013 -Severity=Error -Facility=System -SymbolicName=EVENT_FIRST_LOGON_FAILED -Language=English -Logon attempt with current password failed with the following error: %n%1 -. - -MessageId=7014 -Severity=Error -Facility=System -SymbolicName=EVENT_SECOND_LOGON_FAILED -Language=English -Second logon attempt with old password also failed with the following error: %n%1 -. - -MessageId=7015 -Severity=Error -Facility=System -SymbolicName=EVENT_INVALID_DRIVER_DEPENDENCY -Language=English -Boot-start or system-start driver (%1) must not depend on a service. -. - -MessageId=7016 -Severity=Error -Facility=System -SymbolicName=EVENT_BAD_SERVICE_STATE -Language=English -The %1 service has reported an invalid current state %2. -. - -MessageId=7017 -Severity=Error -Facility=System -SymbolicName=EVENT_CIRCULAR_DEPENDENCY_DEMAND -Language=English -Detected circular dependencies demand starting %1. -. - -MessageId=7018 -Severity=Error -Facility=System -SymbolicName=EVENT_CIRCULAR_DEPENDENCY_AUTO -Language=English -Detected circular dependencies auto-starting services. -. - -MessageId=7019 -Severity=Error -Facility=System -SymbolicName=EVENT_DEPEND_ON_LATER_SERVICE -Language=English -Circular dependency: The %1 service depends on a service in a group which starts later. -. - -MessageId=7020 -Severity=Error -Facility=System -SymbolicName=EVENT_DEPEND_ON_LATER_GROUP -Language=English -Circular dependency: The %1 service depends on a group which starts later. -. - -MessageId=7021 -Severity=Error -Facility=System -SymbolicName=EVENT_SEVERE_SERVICE_FAILED -Language=English -About to revert to the last known good configuration because the %1 service failed to start. -. - -MessageId=7022 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_START_HUNG -Language=English -The %1 service hung on starting. -. -Language=Russian -Служба "%1" зависла при запуске. -. - -MessageId=7023 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_EXIT_FAILED -Language=English -The %1 service terminated with the following error: %n%2 -. - -MessageId=7024 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_EXIT_FAILED_SPECIFIC -Language=English -The %1 service terminated with service-specific error %2. -. - -MessageId=7025 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_START_AT_BOOT_FAILED -Language=English -At least one service or driver failed during system startup. Use Event Viewer to examine the event log for details. -. - -MessageId=7026 -Severity=Error -Facility=System -SymbolicName=EVENT_BOOT_SYSTEM_DRIVERS_FAILED -Language=English -The following boot-start or system-start driver(s) failed to load: %1 -. - -MessageId=7027 -Severity=Error -Facility=System -SymbolicName=EVENT_RUNNING_LASTKNOWNGOOD -Language=English -ReactOS could not be started as configured. A previous working configuration was used instead. -. - -MessageId=7028 -Severity=Error -Facility=System -SymbolicName=EVENT_TAKE_OWNERSHIP -Language=English -The %1 Registry key denied access to SYSTEM account programs so the Service Control Manager took ownership of the Registry key. -. - -MessageId=7029 -Severity=Error -Facility=System -SymbolicName=TITLE_SC_MESSAGE_BOX -Language=English -Service Control Manager %0 -. - -MessageId=7030 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_NOT_INTERACTIVE -Language=English -The %1 service is marked as an interactive service. However, the system is configured to not allow interactive services. This service may not function properly. -. - -MessageId=7031 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_CRASH -Language=English -The %1 service terminated unexpectedly. It has done this %2 time(s). The following corrective action will be taken in %3 milliseconds: %5. -. - -MessageId=7032 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_RECOVERY_FAILED -Language=English -The Service Control Manager tried to take a corrective action (%2) after the unexpected termination of the %3 service, but this action failed with the following error: %n%4 -. - -MessageId=7033 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_SCESRV_FAILED -Language=English -The Service Control Manager did not initialize successfully. The security -configuration server (scesrv.dll) failed to initialize with error %1. The -system is restarting... -. - -MessageId=7034 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_CRASH_NO_ACTION -Language=English -The %1 service terminated unexpectedly. It has done this %2 time(s). -. -Language=Russian -Служба "%1" неожиданно завершилась. Это произошло %2 раз(а). -. - -MessageId=7035 -Severity=Informational -Facility=System -SymbolicName=EVENT_SERVICE_CONTROL_SUCCESS -Language=English -The %1 service was successfully sent a %2 control. -. -Language=Russian -Служба "%1" успешно отправила "%2". -. - -MessageId=7036 -Severity=Informational -Facility=System -SymbolicName=EVENT_SERVICE_STATUS_SUCCESS -Language=English -The %1 service entered the %2 state. -. -Language=Russian -Служба "%1" перешла в состояние "%2". -. - -MessageId=7037 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_CONFIG_BACKOUT_FAILED -Language=English -The Service Control Manager encountered an error undoing a configuration change -to the %1 service. The service's %2 is currently in an unpredictable state. - -If you do not correct this configuration, you may not be able to restart the %1 -service or may encounter other errors. To ensure that the service is configured -properly, use the Services snap-in in Microsoft Management Console (MMC). -. - -MessageId=7038 -Severity=Error -Facility=System -SymbolicName=EVENT_FIRST_LOGON_FAILED_II -Language=English -The %1 service was unable to log on as %2 with the currently configured -password due to the following error: %n%3%n%nTo ensure that the service is -configured properly, use the Services snap-in in Microsoft Management -Console (MMC). -. - -MessageId=7039 -Severity=Warning -Facility=System -SymbolicName=EVENT_SERVICE_DIFFERENT_PID_CONNECTED -Language=English -A service process other than the one launched by the Service Control Manager -connected when starting the %1 service. The Service Control Manager launched -process %2 and process %3 connected instead.%n%n - -Note that if this service is configured to start under a debugger, this behavior is expected. -. - -MessageId=7040 -Severity=Informational -Facility=System -SymbolicName=EVENT_SERVICE_START_TYPE_CHANGED -Language=English -The start type of the %1 service was changed from %2 to %3. -. -Language=Russian -Тип запуска службы "%1" изменен с "%2" на "%3". -. - -MessageId=7041 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_LOGON_TYPE_NOT_GRANTED -Language=English -The %1 service was unable to log on as %2 with the currently configured password due to the following error:%n -Logon failure: the user has not been granted the requested logon type at this computer.%n%n -Service: %1%n -Domain and account: %2%n%n -This service account does not have the necessary user right "Log on as a service."%n%n -User Action%n%n -Assign "Log on as a service" to the service account on this computer. You can -use Local Security Settings (Secpol.msc) to do this. If this computer is a -node in a cluster, check that this user right is assigned to the Cluster -service account on all nodes in the cluster.%n%n -If you have already assigned this user right to the service account, and the -user right appears to be removed, a Group Policy object associated with this -node might be removing the right. Check with your domain administrator to find -out if this is happening. -. - -MessageId=7042 -Severity=Informational -Facility=System -SymbolicName=EVENT_SERVICE_STOP_SUCCESS_WITH_REASON -Language=English -The %1 service was successfully sent a %2 control.%n%n -The reason specified was: %3 [%4]%n%n -Comment: %5 -. - -MessageId=7043 -Severity=Error -Facility=System -SymbolicName=EVENT_SERVICE_SHUTDOWN_FAILED -Language=English -The %1 service did not shut down properly after receiving a preshutdown control. -. - - -; -; transport events 9000-9499 -; - -MessageId=9004 -Severity=Error -Facility=System -SymbolicName=EVENT_TRANSPORT_REGISTER_FAILED -Language=English -%2 failed to register itself with the NDIS wrapper. -. - -MessageId=9006 -Severity=Error -Facility=System -SymbolicName=EVENT_TRANSPORT_ADAPTER_NOT_FOUND -Language=English -%2 could not find adapter %3. -. -Language=Russian -"%2" не смогла найти адаптер "%3". -. +; +; netevent.mc MESSAGE resources for netevent.dll +; + +MessageIdTypedef=DWORD + +SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS + Informational=0x1:STATUS_SEVERITY_INFORMATIONAL + Warning=0x2:STATUS_SEVERITY_WARNING + Error=0x3:STATUS_SEVERITY_ERROR + ) + +FacilityNames=(System=0x0:FACILITY_SYSTEM + ) + +LanguageNames=(English=0x409:MSG00409 + Russian=0x419:MSG00419) + + +; +; message definitions +; + +; Facility=System + +; +; eventlog events 6000-6099 +; + +MessageId=6000 +Severity=Warning +Facility=System +SymbolicName=EVENT_LOG_FULL +Language=English +The %1 log file is full. +. +Language=Russian +Файл журнала "%1" заполнен. +. + +MessageId=6001 +Severity=Warning +Facility=System +SymbolicName=EVENT_LogFileNotOpened +Language=English +The %1 log file cannot be opened. +. +Language=Russian +Файл журнала "%1" не может быть открыт. +. + +MessageId=6002 +Severity=Warning +Facility=System +SymbolicName=EVENT_LogFileCorrupt +Language=English +The %1 log file is corrupted and will be cleared. +. +Language=Russian +Файл журана "%1" поврежден и будет очищен. +. + +MessageId=6003 +Severity=Warning +Facility=System +SymbolicName=EVENT_DefaultLogCorrupt +Language=English +The Application log file could not be opened. %1 will be used as the default log file. +. +Language=Russian +Файл журнала "Приложения" не может быть открыт. "%1" будет использоваться в качестве файла журана по умолчанию. +. + +MessageId=6004 +Severity=Warning +Facility=System +SymbolicName=EVENT_BadDriverPacket +Language=English +A driver packet received from the I/O subsystem was invalid. The data is the packet. +. +Language=Russian +Пакет драйвера, полученный от подсистемы ввода-вывода недопустим. Данные являются пакетом. +. + +MessageId=6005 +Severity=Warning +Facility=System +SymbolicName=EVENT_EventlogStarted +Language=English +The Event log service was started. +. +Language=Russian +Служба журана событий была запущена. +. + +MessageId=6006 +Severity=Warning +Facility=System +SymbolicName=EVENT_EventlogStopped +Language=English +The Event log service was stopped. +. +Language=Russian +Служба журнала событий была остановлена. +. + +MessageId=6007 +Severity=Warning +Facility=System +SymbolicName=TITLE_EventlogMessageBox +Language=English +Eventlog Service %0 +. +Language=Russian +Служба журнала событий %0 +. + +MessageId=6008 +Severity=Warning +Facility=System +SymbolicName=EVENT_EventlogAbnormalShutdown +Language=English +The previous system shutdown at %1 on %2 was unexpected. +. +Language=Russian +Предыдущее завершение работы системы в %1 %2 было неожиданным. +. + +MessageId=6009 +Severity=Warning +Facility=System +SymbolicName=EVENT_EventLogProductInfo +Language=English +ReactOS %1 %2 %3 %4. +. + +MessageId=6010 +Severity=Error +Facility=System +SymbolicName=EVENT_ServiceNoEventLog +Language=English +The %1 service was unable to set up an event source. +. +Language=Russian +Служба "%1" не смогла установить источник события. +. + +MessageId=6011 +Severity=Error +Facility=System +SymbolicName=EVENT_ComputerNameChange +Language=English +The NetBIOS name and DNS host name of this machine have been changed from %1 to %2. +. +Language=Russian +NetBIOS и DNS имена этого компьютера были изменены с "%1" на "%2". +. + +MessageId=6012 +Severity=Error +Facility=System +SymbolicName=EVENT_DNSDomainNameChange +Language=English +The DNS domain assigned to this computer has been changed from %1 to %2. +. +Language=Russian +DNS-домен присвоенный этому компьютеру был изменен с "%1" на "%2". +. + + +; +; system events 6100 - 6199 +; + +MessageId=6100 +Severity=Error +Facility=System +SymbolicName=EVENT_UP_DRIVER_ON_MP +Language=English +A uniprocessor-specific driver was loaded on a multiprocessor system. The driver could not load. +. +Language=Russian +Однопроцессорный драйвер был загружен на многопроцессорной системе. Драйвер не может быть загружен. +. + + +; +; service controller events 7000-7899 +; + +MessageId=7000 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_START_FAILED +Language=English +The %1 service failed to start due to the following error: %n%2 +. +Language=Russian +Службе "%1" не удалось запуститься из-за следующей ошибки: %n%2 +. + +MessageId=7001 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_START_FAILED_II +Language=English +The %1 service depends on the %2 service which failed to start because of the following error: %n%3 +. +Language=Russian +Служба "%1" зависит от службы "%2", которой не удалось запуститься из-за следующей ошибки: %n%3 +. + +MessageId=7002 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_START_FAILED_GROUP +Language=English +The %1 service depends on the %2 group and no member of this group started. +. +Language=Russian +Служба "%1" зависит от группы "%2" и ни один элемент этой группы не запущен. +. + +MessageId=7003 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_START_FAILED_NONE +Language=English +The %1 service depends on the following nonexistent service: %2 +. +Language=Russian +Служба "%1" зависит от следующей несуществующей службы: "%2" +. + +MessageId=7005 +Severity=Error +Facility=System +SymbolicName=EVENT_CALL_TO_FUNCTION_FAILED +Language=English +The %1 call failed with the following error: %n%2 +. +Language=Russian +Вызов "%1" завершился ошибкой: %n%2 +. + +MessageId=7006 +Severity=Error +Facility=System +SymbolicName=EVENT_CALL_TO_FUNCTION_FAILED_II +Language=English +The %1 call failed for %2 with the following error: %n%3 +. + +MessageId=7007 +Severity=Error +Facility=System +SymbolicName=EVENT_REVERTED_TO_LASTKNOWNGOOD +Language=English +The system reverted to its last known good configuration. The system is restarting.... +. + +MessageId=7008 +Severity=Error +Facility=System +SymbolicName=EVENT_BAD_ACCOUNT_NAME +Language=English +No backslash is in the account name. +. + +MessageId=7009 +Severity=Error +Facility=System +SymbolicName=EVENT_CONNECTION_TIMEOUT +Language=English +Timeout (%1 milliseconds) waiting for the %2 service to connect. +. + +MessageId=7010 +Severity=Error +Facility=System +SymbolicName=EVENT_READFILE_TIMEOUT +Language=English +Timeout (%1 milliseconds) waiting for ReadFile. +. + +MessageId=7011 +Severity=Error +Facility=System +SymbolicName=EVENT_TRANSACT_TIMEOUT +Language=English +Timeout (%1 milliseconds) waiting for a transaction response from the %2 service. +. + +MessageId=7012 +Severity=Error +Facility=System +SymbolicName=EVENT_TRANSACT_INVALID +Language=English +Message returned in transaction has incorrect size. +. + +MessageId=7013 +Severity=Error +Facility=System +SymbolicName=EVENT_FIRST_LOGON_FAILED +Language=English +Logon attempt with current password failed with the following error: %n%1 +. + +MessageId=7014 +Severity=Error +Facility=System +SymbolicName=EVENT_SECOND_LOGON_FAILED +Language=English +Second logon attempt with old password also failed with the following error: %n%1 +. + +MessageId=7015 +Severity=Error +Facility=System +SymbolicName=EVENT_INVALID_DRIVER_DEPENDENCY +Language=English +Boot-start or system-start driver (%1) must not depend on a service. +. + +MessageId=7016 +Severity=Error +Facility=System +SymbolicName=EVENT_BAD_SERVICE_STATE +Language=English +The %1 service has reported an invalid current state %2. +. + +MessageId=7017 +Severity=Error +Facility=System +SymbolicName=EVENT_CIRCULAR_DEPENDENCY_DEMAND +Language=English +Detected circular dependencies demand starting %1. +. + +MessageId=7018 +Severity=Error +Facility=System +SymbolicName=EVENT_CIRCULAR_DEPENDENCY_AUTO +Language=English +Detected circular dependencies auto-starting services. +. + +MessageId=7019 +Severity=Error +Facility=System +SymbolicName=EVENT_DEPEND_ON_LATER_SERVICE +Language=English +Circular dependency: The %1 service depends on a service in a group which starts later. +. + +MessageId=7020 +Severity=Error +Facility=System +SymbolicName=EVENT_DEPEND_ON_LATER_GROUP +Language=English +Circular dependency: The %1 service depends on a group which starts later. +. + +MessageId=7021 +Severity=Error +Facility=System +SymbolicName=EVENT_SEVERE_SERVICE_FAILED +Language=English +About to revert to the last known good configuration because the %1 service failed to start. +. + +MessageId=7022 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_START_HUNG +Language=English +The %1 service hung on starting. +. +Language=Russian +Служба "%1" зависла при запуске. +. + +MessageId=7023 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_EXIT_FAILED +Language=English +The %1 service terminated with the following error: %n%2 +. + +MessageId=7024 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_EXIT_FAILED_SPECIFIC +Language=English +The %1 service terminated with service-specific error %2. +. + +MessageId=7025 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_START_AT_BOOT_FAILED +Language=English +At least one service or driver failed during system startup. Use Event Viewer to examine the event log for details. +. + +MessageId=7026 +Severity=Error +Facility=System +SymbolicName=EVENT_BOOT_SYSTEM_DRIVERS_FAILED +Language=English +The following boot-start or system-start driver(s) failed to load: %1 +. + +MessageId=7027 +Severity=Error +Facility=System +SymbolicName=EVENT_RUNNING_LASTKNOWNGOOD +Language=English +ReactOS could not be started as configured. A previous working configuration was used instead. +. + +MessageId=7028 +Severity=Error +Facility=System +SymbolicName=EVENT_TAKE_OWNERSHIP +Language=English +The %1 Registry key denied access to SYSTEM account programs so the Service Control Manager took ownership of the Registry key. +. + +MessageId=7029 +Severity=Error +Facility=System +SymbolicName=TITLE_SC_MESSAGE_BOX +Language=English +Service Control Manager %0 +. + +MessageId=7030 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_NOT_INTERACTIVE +Language=English +The %1 service is marked as an interactive service. However, the system is configured to not allow interactive services. This service may not function properly. +. + +MessageId=7031 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_CRASH +Language=English +The %1 service terminated unexpectedly. It has done this %2 time(s). The following corrective action will be taken in %3 milliseconds: %5. +. + +MessageId=7032 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_RECOVERY_FAILED +Language=English +The Service Control Manager tried to take a corrective action (%2) after the unexpected termination of the %3 service, but this action failed with the following error: %n%4 +. + +MessageId=7033 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_SCESRV_FAILED +Language=English +The Service Control Manager did not initialize successfully. The security +configuration server (scesrv.dll) failed to initialize with error %1. The +system is restarting... +. + +MessageId=7034 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_CRASH_NO_ACTION +Language=English +The %1 service terminated unexpectedly. It has done this %2 time(s). +. +Language=Russian +Служба "%1" неожиданно завершилась. Это произошло %2 раз(а). +. + +MessageId=7035 +Severity=Informational +Facility=System +SymbolicName=EVENT_SERVICE_CONTROL_SUCCESS +Language=English +The %1 service was successfully sent a %2 control. +. +Language=Russian +Служба "%1" успешно отправила "%2". +. + +MessageId=7036 +Severity=Informational +Facility=System +SymbolicName=EVENT_SERVICE_STATUS_SUCCESS +Language=English +The %1 service entered the %2 state. +. +Language=Russian +Служба "%1" перешла в состояние "%2". +. + +MessageId=7037 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_CONFIG_BACKOUT_FAILED +Language=English +The Service Control Manager encountered an error undoing a configuration change +to the %1 service. The service's %2 is currently in an unpredictable state. + +If you do not correct this configuration, you may not be able to restart the %1 +service or may encounter other errors. To ensure that the service is configured +properly, use the Services snap-in in Microsoft Management Console (MMC). +. + +MessageId=7038 +Severity=Error +Facility=System +SymbolicName=EVENT_FIRST_LOGON_FAILED_II +Language=English +The %1 service was unable to log on as %2 with the currently configured +password due to the following error: %n%3%n%nTo ensure that the service is +configured properly, use the Services snap-in in Microsoft Management +Console (MMC). +. + +MessageId=7039 +Severity=Warning +Facility=System +SymbolicName=EVENT_SERVICE_DIFFERENT_PID_CONNECTED +Language=English +A service process other than the one launched by the Service Control Manager +connected when starting the %1 service. The Service Control Manager launched +process %2 and process %3 connected instead.%n%n + +Note that if this service is configured to start under a debugger, this behavior is expected. +. + +MessageId=7040 +Severity=Informational +Facility=System +SymbolicName=EVENT_SERVICE_START_TYPE_CHANGED +Language=English +The start type of the %1 service was changed from %2 to %3. +. +Language=Russian +Тип запуска службы "%1" изменен с "%2" на "%3". +. + +MessageId=7041 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_LOGON_TYPE_NOT_GRANTED +Language=English +The %1 service was unable to log on as %2 with the currently configured password due to the following error:%n +Logon failure: the user has not been granted the requested logon type at this computer.%n%n +Service: %1%n +Domain and account: %2%n%n +This service account does not have the necessary user right "Log on as a service."%n%n +User Action%n%n +Assign "Log on as a service" to the service account on this computer. You can +use Local Security Settings (Secpol.msc) to do this. If this computer is a +node in a cluster, check that this user right is assigned to the Cluster +service account on all nodes in the cluster.%n%n +If you have already assigned this user right to the service account, and the +user right appears to be removed, a Group Policy object associated with this +node might be removing the right. Check with your domain administrator to find +out if this is happening. +. + +MessageId=7042 +Severity=Informational +Facility=System +SymbolicName=EVENT_SERVICE_STOP_SUCCESS_WITH_REASON +Language=English +The %1 service was successfully sent a %2 control.%n%n +The reason specified was: %3 [%4]%n%n +Comment: %5 +. + +MessageId=7043 +Severity=Error +Facility=System +SymbolicName=EVENT_SERVICE_SHUTDOWN_FAILED +Language=English +The %1 service did not shut down properly after receiving a preshutdown control. +. + + +; +; transport events 9000-9499 +; + +MessageId=9004 +Severity=Error +Facility=System +SymbolicName=EVENT_TRANSPORT_REGISTER_FAILED +Language=English +%2 failed to register itself with the NDIS wrapper. +. + +MessageId=9006 +Severity=Error +Facility=System +SymbolicName=EVENT_TRANSPORT_ADAPTER_NOT_FOUND +Language=English +%2 could not find adapter %3. +. +Language=Russian +"%2" не смогла найти адаптер "%3". +. diff --git a/sdk/include/reactos/mc/ntiologc.mc b/sdk/include/reactos/mc/ntiologc.mc index 3cabdf85eda..675f6cacbb1 100644 --- a/sdk/include/reactos/mc/ntiologc.mc +++ b/sdk/include/reactos/mc/ntiologc.mc @@ -1,365 +1,365 @@ -; -; iologmsg.mc MESSAGE resources for iologmsg.dll -; - -MessageIdTypedef=NTSTATUS - -SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS - Informational=0x1:STATUS_SEVERITY_INFORMATIONAL - Warning=0x2:STATUS_SEVERITY_WARNING - Error=0x3:STATUS_SEVERITY_ERROR - ) - -FacilityNames=(RpcRuntime=0x2:FACILITY_RPC_RUNTIME - RpcStubs=0x3:FACILITY_RPC_STUBS - IO=0x4:FACILITY_IO_ERROR_CODE - MCA=0x5:FACILITY_MCA_ERROR_CODE - ) - -LanguageNames=(English=0x409:MSG00409) - - -; -; message definitions -; - -; Facility=IO - -; IO Error messages - -MessageId=1 -Severity=Success -Facility=IO -SymbolicName=IO_ERR_RETRY_SUCCEEDED -Language=English -A retry succeeded. -. - -MessageId=2 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_INSUFFICIENT_RESOURCES -Language=English -Insufficient resources. -. - -MessageId=3 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_CONFIGURATION_ERROR -Language=English -Driver or device is incorrectly configured for %1. -. - -MessageId=4 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_DRIVER_ERROR -Language=English -Driver detected an internal error in its data structures for %1. -. - -MessageId=5 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_PARITY -Language=English -A parity error was detected on %1. -. - -MessageId=6 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_SEEK_ERROR -Language=English -The device, %1, had a seek error. -. - -MessageId=7 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_BAD_BLOCK -Language=English -The device, %1, has a bad block. -. - -MessageId=8 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_OVERRUN_ERROR -Language=English -An overrun occurred on %1. -. - -MessageId=9 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_TIMEOUT -Language=English -The device, %1, did not respond within the timeout period. -. - -MessageId=10 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_SEQUENCE -Language=English -The driver detected an unexpected sequence by the device, %1. -. - -MessageId=11 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_CONTROLLER_ERROR -Language=English -The driver detected a controller error on %1. -. - -MessageId=12 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_INTERNAL_ERROR -Language=English -The driver detected an internal driver error on %1. -. - -MessageId=13 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_INCORRECT_IRQL -Language=English -The driver was configured with an incorrect interrupt for %1. -. - -MessageId=14 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_INVALID_IOBASE -Language=English -The driver was configured with an invalid I/O base address for %1. -. - -MessageId=15 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_NOT_READY -Language=English -Insufficient resources. -. - -MessageId=16 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_INVALID_REQUEST -Language=English -The request is incorrectly formatted for %1. -. - -MessageId=17 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_VERSION -Language=English -The wrong version of the driver has been loaded. -. - -MessageId=18 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_LAYERED_FAILURE -Language=English -The driver beneath this one has failed in some way for %1. -. - -MessageId=19 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_RESET -Language=English -The device, %1, has been reset. -. - -MessageId=20 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_PROTOCOL -Language=English -A transport driver received a frame which violated the protocol. -. - -MessageId=21 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_MEMORY_CONFLICT_DETECTED -Language=English -A conflict has been detected between two drivers which claimed two overlapping -memory regions. -Driver %2, with device <%3>, claimed a memory range with starting address -in data address 0x28 and 0x2c, and length in data address 0x30. -. - -MessageId=22 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_PORT_CONFLICT_DETECTED -Language=English -A conflict has been detected between two drivers which claimed two overlapping -Io port regions. -Driver %2, with device <%3>, claimed an IO port range with starting address -in data address 0x28 and 0x2c, and length in data address 0x30. -. - -MessageId=23 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_DMA_CONFLICT_DETECTED -Language=English -A conflict has been detected between two drivers which claimed equivalent DMA -channels. -Driver %2, with device <%3>, claimed the DMA Channel in data address 0x28, with -optinal port in data address 0x2c. -. - -MessageId=24 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_IRQ_CONFLICT_DETECTED -Language=English -A conflict has been detected between two drivers which claimed equivalent IRQs. -Driver %2, with device <%3>, claimed an interrupt with Level in data address -0x28, vector in data address 0x2c and Affinity in data address 0x30. -. - -MessageId=25 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_BAD_FIRMWARE -Language=English -Insufficient resources. -The driver has detected a device with old or out-of-date firmware. The -device will not be used. -. - -MessageId=26 -Severity=Warning -Facility=IO -SymbolicName=IO_WRN_BAD_FIRMWARE -Language=English -The driver has detected that device %1 has old or out-of-date firmware. -Reduced performance may result. -. - -MessageId=27 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_DMA_RESOURCE_CONFLICT -Language=English -The device could not allocate one or more required resources due to conflicts -with other devices. The device DMA setting of '%2' could not be -satisified due to a conflict with Driver '%3'. -. - -MessageId=28 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_INTERRUPT_RESOURCE_CONFLICT -Language=English -The device could not allocate one or more required resources due to conflicts -with other devices. The device interrupt setting of '%2' could not be -satisified due to a conflict with Driver '%3'. -. - -MessageId=29 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_MEMORY_RESOURCE_CONFLICT -Language=English -The device could not allocate one or more required resources due to conflicts -with other devices. The device memory setting of '%2' could not be -satisified due to a conflict with Driver '%3'. -. - -MessageId=30 -Severity=Error -Facility=IO -SymbolicName=IO_ERR_PORT_RESOURCE_CONFLICT -Language=English -The device could not allocate one or more required resources due to conflicts -with other devices. The device port setting of '%2' could not be -satisified due to a conflict with Driver '%3'. -. - -MessageId=31 -Severity=Error -Facility=IO -SymbolicName=IO_BAD_BLOCK_WITH_NAME -Language=English -The file %2 on device %1 contains a bad disk block. -. - -MessageId=32 -Severity=Warning -Facility=IO -SymbolicName=IO_WRITE_CACHE_ENABLED -Language=English -The driver detected that the device %1 has its write cache enabled. Data corruption may occur. -. - -MessageId=33 -Severity=Warning -Facility=IO -SymbolicName=IO_RECOVERED_VIA_ECC -Language=English -Data was recovered using error correction code on device %1. -. - -MessageId=34 -Severity=Warning -Facility=IO -SymbolicName=IO_WRITE_CACHE_DISABLED -Language=English -The driver disabled the write cache on device %1. -. - -MessageId=36 -Severity=Informational -Facility=IO -SymbolicName=IO_FILE_QUOTA_THRESHOLD -Language=English -A user hit their quota threshold on volume %2. -. - -MessageId=37 -Severity=Informational -Facility=IO -SymbolicName=IO_FILE_QUOTA_LIMIT -Language=English -A user hit their quota limit on volume %2. -. - -MessageId=38 -Severity=Informational -Facility=IO -SymbolicName=IO_FILE_QUOTA_STARTED -Language=English -The system has started rebuilding the user disk quota information on -device %1 with label "%2". -. - -MessageId=39 -Severity=Informational -Facility=IO -SymbolicName=IO_FILE_QUOTA_SUCCEEDED -Language=English -The system has successfully rebuilt the user disk quota information on -device %1 with label "%2". -. - -MessageId=40 -Severity=Warning -Facility=IO -SymbolicName=IO_FILE_QUOTA_FAILED -Language=English -The system has encounted an error rebuilding the user disk quota -information on device %1 with label "%2". -. +; +; iologmsg.mc MESSAGE resources for iologmsg.dll +; + +MessageIdTypedef=NTSTATUS + +SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS + Informational=0x1:STATUS_SEVERITY_INFORMATIONAL + Warning=0x2:STATUS_SEVERITY_WARNING + Error=0x3:STATUS_SEVERITY_ERROR + ) + +FacilityNames=(RpcRuntime=0x2:FACILITY_RPC_RUNTIME + RpcStubs=0x3:FACILITY_RPC_STUBS + IO=0x4:FACILITY_IO_ERROR_CODE + MCA=0x5:FACILITY_MCA_ERROR_CODE + ) + +LanguageNames=(English=0x409:MSG00409) + + +; +; message definitions +; + +; Facility=IO + +; IO Error messages + +MessageId=1 +Severity=Success +Facility=IO +SymbolicName=IO_ERR_RETRY_SUCCEEDED +Language=English +A retry succeeded. +. + +MessageId=2 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_INSUFFICIENT_RESOURCES +Language=English +Insufficient resources. +. + +MessageId=3 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_CONFIGURATION_ERROR +Language=English +Driver or device is incorrectly configured for %1. +. + +MessageId=4 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_DRIVER_ERROR +Language=English +Driver detected an internal error in its data structures for %1. +. + +MessageId=5 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_PARITY +Language=English +A parity error was detected on %1. +. + +MessageId=6 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_SEEK_ERROR +Language=English +The device, %1, had a seek error. +. + +MessageId=7 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_BAD_BLOCK +Language=English +The device, %1, has a bad block. +. + +MessageId=8 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_OVERRUN_ERROR +Language=English +An overrun occurred on %1. +. + +MessageId=9 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_TIMEOUT +Language=English +The device, %1, did not respond within the timeout period. +. + +MessageId=10 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_SEQUENCE +Language=English +The driver detected an unexpected sequence by the device, %1. +. + +MessageId=11 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_CONTROLLER_ERROR +Language=English +The driver detected a controller error on %1. +. + +MessageId=12 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_INTERNAL_ERROR +Language=English +The driver detected an internal driver error on %1. +. + +MessageId=13 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_INCORRECT_IRQL +Language=English +The driver was configured with an incorrect interrupt for %1. +. + +MessageId=14 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_INVALID_IOBASE +Language=English +The driver was configured with an invalid I/O base address for %1. +. + +MessageId=15 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_NOT_READY +Language=English +Insufficient resources. +. + +MessageId=16 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_INVALID_REQUEST +Language=English +The request is incorrectly formatted for %1. +. + +MessageId=17 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_VERSION +Language=English +The wrong version of the driver has been loaded. +. + +MessageId=18 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_LAYERED_FAILURE +Language=English +The driver beneath this one has failed in some way for %1. +. + +MessageId=19 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_RESET +Language=English +The device, %1, has been reset. +. + +MessageId=20 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_PROTOCOL +Language=English +A transport driver received a frame which violated the protocol. +. + +MessageId=21 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_MEMORY_CONFLICT_DETECTED +Language=English +A conflict has been detected between two drivers which claimed two overlapping +memory regions. +Driver %2, with device <%3>, claimed a memory range with starting address +in data address 0x28 and 0x2c, and length in data address 0x30. +. + +MessageId=22 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_PORT_CONFLICT_DETECTED +Language=English +A conflict has been detected between two drivers which claimed two overlapping +Io port regions. +Driver %2, with device <%3>, claimed an IO port range with starting address +in data address 0x28 and 0x2c, and length in data address 0x30. +. + +MessageId=23 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_DMA_CONFLICT_DETECTED +Language=English +A conflict has been detected between two drivers which claimed equivalent DMA +channels. +Driver %2, with device <%3>, claimed the DMA Channel in data address 0x28, with +optinal port in data address 0x2c. +. + +MessageId=24 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_IRQ_CONFLICT_DETECTED +Language=English +A conflict has been detected between two drivers which claimed equivalent IRQs. +Driver %2, with device <%3>, claimed an interrupt with Level in data address +0x28, vector in data address 0x2c and Affinity in data address 0x30. +. + +MessageId=25 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_BAD_FIRMWARE +Language=English +Insufficient resources. +The driver has detected a device with old or out-of-date firmware. The +device will not be used. +. + +MessageId=26 +Severity=Warning +Facility=IO +SymbolicName=IO_WRN_BAD_FIRMWARE +Language=English +The driver has detected that device %1 has old or out-of-date firmware. +Reduced performance may result. +. + +MessageId=27 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_DMA_RESOURCE_CONFLICT +Language=English +The device could not allocate one or more required resources due to conflicts +with other devices. The device DMA setting of '%2' could not be +satisified due to a conflict with Driver '%3'. +. + +MessageId=28 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_INTERRUPT_RESOURCE_CONFLICT +Language=English +The device could not allocate one or more required resources due to conflicts +with other devices. The device interrupt setting of '%2' could not be +satisified due to a conflict with Driver '%3'. +. + +MessageId=29 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_MEMORY_RESOURCE_CONFLICT +Language=English +The device could not allocate one or more required resources due to conflicts +with other devices. The device memory setting of '%2' could not be +satisified due to a conflict with Driver '%3'. +. + +MessageId=30 +Severity=Error +Facility=IO +SymbolicName=IO_ERR_PORT_RESOURCE_CONFLICT +Language=English +The device could not allocate one or more required resources due to conflicts +with other devices. The device port setting of '%2' could not be +satisified due to a conflict with Driver '%3'. +. + +MessageId=31 +Severity=Error +Facility=IO +SymbolicName=IO_BAD_BLOCK_WITH_NAME +Language=English +The file %2 on device %1 contains a bad disk block. +. + +MessageId=32 +Severity=Warning +Facility=IO +SymbolicName=IO_WRITE_CACHE_ENABLED +Language=English +The driver detected that the device %1 has its write cache enabled. Data corruption may occur. +. + +MessageId=33 +Severity=Warning +Facility=IO +SymbolicName=IO_RECOVERED_VIA_ECC +Language=English +Data was recovered using error correction code on device %1. +. + +MessageId=34 +Severity=Warning +Facility=IO +SymbolicName=IO_WRITE_CACHE_DISABLED +Language=English +The driver disabled the write cache on device %1. +. + +MessageId=36 +Severity=Informational +Facility=IO +SymbolicName=IO_FILE_QUOTA_THRESHOLD +Language=English +A user hit their quota threshold on volume %2. +. + +MessageId=37 +Severity=Informational +Facility=IO +SymbolicName=IO_FILE_QUOTA_LIMIT +Language=English +A user hit their quota limit on volume %2. +. + +MessageId=38 +Severity=Informational +Facility=IO +SymbolicName=IO_FILE_QUOTA_STARTED +Language=English +The system has started rebuilding the user disk quota information on +device %1 with label "%2". +. + +MessageId=39 +Severity=Informational +Facility=IO +SymbolicName=IO_FILE_QUOTA_SUCCEEDED +Language=English +The system has successfully rebuilt the user disk quota information on +device %1 with label "%2". +. + +MessageId=40 +Severity=Warning +Facility=IO +SymbolicName=IO_FILE_QUOTA_FAILED +Language=English +The system has encounted an error rebuilding the user disk quota +information on device %1 with label "%2". +. diff --git a/sdk/include/reactos/mc/ntstatus.mc b/sdk/include/reactos/mc/ntstatus.mc index f2b050978e5..960c7fb3b0b 100644 --- a/sdk/include/reactos/mc/ntstatus.mc +++ b/sdk/include/reactos/mc/ntstatus.mc @@ -1,5710 +1,5710 @@ -MessageIdTypedef=NTSTATUS -SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS -Informational=0x1:STATUS_SEVERITY_INFORMATIONAL -Warning=0x2:STATUS_SEVERITY_WARNING -Error=0x3:STATUS_SEVERITY_ERROR -) - -FacilityNames=(System=0x0 -Debugger=0x1:FACILITY_DEBUGGER -RpcRuntime=0x2:FACILITY_RPC_RUNTIME -RpcStubs=0x3:FACILITY_RPC_STUBS -Io=0x4:FACILITY_IO_ERROR_CODE -CTX=0xa:FACILITY_TERMINAL_SERVER -USB=0x10:FACILITY_USB_ERROR_CODE -HID=0x11:FACILITY_HID_ERROR_CODE -FIREWIRE=0x12:FACILITY_FIREWIRE_ERROR_CODE -Cluster=0x13:FACILITY_CLUSTER_ERROR_CODE -ACPI=0x14:FACILITY_ACPI_ERROR_CODE -SXS=0x15:FACILITY_SXS_ERROR_CODE -) -LanguageNames=(English=0x409:MSG00409) - -MessageId=0x00 -Severity=Success -Facility=System -SymbolicName=STATUS_WAIT_0 -Language=English -STATUS_WAIT_0 -. - -MessageId=0x01 -Severity=Success -Facility=System -SymbolicName=STATUS_WAIT_1 -Language=English -STATUS_WAIT_1 -. - -MessageId=0x02 -Severity=Success -Facility=System -SymbolicName=STATUS_WAIT_2 -Language=English -STATUS_WAIT_2 -. - -MessageId=0x03 -Severity=Success -Facility=System -SymbolicName=STATUS_WAIT_3 -Language=English -STATUS_WAIT_3 -. - -MessageId=0x80 -Severity=Success -Facility=System -SymbolicName=STATUS_ABANDONED -Language=English -STATUS_ABANDONED_WAIT_0 -. - -MessageId=0xc0 -Severity=Success -Facility=System -SymbolicName=STATUS_USER_APC -Language=English -STATUS_USER_APC -. - -MessageId=0x100 -Severity=Success -Facility=System -SymbolicName=STATUS_KERNEL_APC -Language=English -STATUS_KERNEL_APC -. - -MessageId=0x101 -Severity=Success -Facility=System -SymbolicName=STATUS_ALERTED -Language=English -STATUS_ALERTED -. - -MessageId=0x102 -Severity=Success -Facility=System -SymbolicName=STATUS_TIMEOUT -Language=English -STATUS_TIMEOUT -. - -MessageId=0x103 -Severity=Success -Facility=System -SymbolicName=STATUS_PENDING -Language=English -The operation that was requested is pending completion. -. - -MessageId=0x104 -Severity=Success -Facility=System -SymbolicName=STATUS_REPARSE -Language=English -A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. -. - -MessageId=0x105 -Severity=Success -Facility=System -SymbolicName=STATUS_MORE_ENTRIES -Language=English -Returned by enumeration APIs to indicate more information is available to successive calls. -. - -MessageId=0x106 -Severity=Success -Facility=System -SymbolicName=STATUS_NOT_ALL_ASSIGNED -Language=English -Indicates not all privileges referenced are assigned to the caller. -This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned. -. - -MessageId=0x107 -Severity=Success -Facility=System -SymbolicName=STATUS_SOME_NOT_MAPPED -Language=English -Some of the information to be translated has not been translated. -. - -MessageId=0x108 -Severity=Success -Facility=System -SymbolicName=STATUS_OPLOCK_BREAK_IN_PROGRESS -Language=English -An open/create operation completed while an oplock break is underway. -. - -MessageId=0x109 -Severity=Success -Facility=System -SymbolicName=STATUS_VOLUME_MOUNTED -Language=English -A new volume has been mounted by a file system. -. - -MessageId=0x10c -Severity=Success -Facility=System -SymbolicName=STATUS_NOTIFY_ENUM_DIR -Language=English -This indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer. -The caller now needs to enumerate the files to find the changes. -. - -MessageId=0x110 -Severity=Success -Facility=System -SymbolicName=STATUS_PAGE_FAULT_TRANSITION -Language=English -Page fault was a transition fault. -. - -MessageId=0x111 -Severity=Success -Facility=System -SymbolicName=STATUS_PAGE_FAULT_DEMAND_ZERO -Language=English -Page fault was a demand zero fault. -. - -MessageId=0x112 -Severity=Success -Facility=System -SymbolicName=STATUS_PAGE_FAULT_COPY_ON_WRITE -Language=English -Page fault was a demand zero fault. -. - -MessageId=0x113 -Severity=Success -Facility=System -SymbolicName=STATUS_PAGE_FAULT_GUARD_PAGE -Language=English -Page fault was a demand zero fault. -. - -MessageId=0x114 -Severity=Success -Facility=System -SymbolicName=STATUS_PAGE_FAULT_PAGING_FILE -Language=English -Page fault was satisfied by reading from a secondary storage device. -. - -MessageId=0x115 -Severity=Success -Facility=System -SymbolicName=STATUS_CACHE_PAGE_LOCKED -Language=English -Cached page was locked during operation. -. - -MessageId=0x116 -Severity=Success -Facility=System -SymbolicName=STATUS_CRASH_DUMP -Language=English -Crash dump exists in paging file. -. - -MessageId=0x117 -Severity=Success -Facility=System -SymbolicName=STATUS_BUFFER_ALL_ZEROS -Language=English -Specified buffer contains all zeros. -. - -MessageId=0x118 -Severity=Success -Facility=System -SymbolicName=STATUS_REPARSE_OBJECT -Language=English -A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. -. - -MessageId=0x119 -Severity=Success -Facility=System -SymbolicName=STATUS_RESOURCE_REQUIREMENTS_CHANGED -Language=English -The device has succeeded a query-stop and its resource requirements have changed. -. - -MessageId=0x120 -Severity=Success -Facility=System -SymbolicName=STATUS_TRANSLATION_COMPLETE -Language=English -The translator has translated these resources into the global space and no further translations should be performed. -. - -MessageId=0x121 -Severity=Success -Facility=System -SymbolicName=STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY -Language=English -The directory service evaluated group memberships locally, as it was unable to contact a global catalog server. -. - -MessageId=0x122 -Severity=Success -Facility=System -SymbolicName=STATUS_NOTHING_TO_TERMINATE -Language=English -A process being terminated has no threads to terminate. -. - -MessageId=0x123 -Severity=Success -Facility=System -SymbolicName=STATUS_PROCESS_NOT_IN_JOB -Language=English -The specified process is not part of a job. -. - -MessageId=0x124 -Severity=Success -Facility=System -SymbolicName=STATUS_PROCESS_IN_JOB -Language=English -The specified process is part of a job. -. - -MessageId=0x125 -Severity=Success -Facility=System -SymbolicName=STATUS_VOLSNAP_HIBERNATE_READY -Language=English -{Volume Shadow Copy Service} -The system is now ready for hibernation. -. - -MessageId=0x126 -Severity=Success -Facility=System -SymbolicName=STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY -Language=English -A file system or file system filter driver has successfully completed an FsFilter operation. -. - -MessageId=0x367 -Severity=Success -Facility=System -SymbolicName=STATUS_WAIT_FOR_OPLOCK -Language=English -An operation is blocked waiting for an oplock. -. - -MessageId=0x1 -Severity=Success -Facility=Debugger -SymbolicName=DBG_EXCEPTION_HANDLED -Language=English -Debugger handled exception -. - -MessageId=0x2 -Severity=Success -Facility=Debugger -SymbolicName=DBG_CONTINUE -Language=English -Debugger continued -. - -MessageId=0x0 -Severity=Informational -Facility=System -SymbolicName=STATUS_OBJECT_NAME_EXISTS -Language=English -{Object Exists} -An attempt was made to create an object and the object name already existed. -. - -MessageId=0x1 -Severity=Informational -Facility=System -SymbolicName=STATUS_THREAD_WAS_SUSPENDED -Language=English -{Thread Suspended} -A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. -. - -MessageId=0x2 -Severity=Informational -Facility=System -SymbolicName=STATUS_WORKING_SET_LIMIT_RANGE -Language=English -{Working Set Range Error} -An attempt was made to set the working set minimum or maximum to values which are outside of the allowable range. -. - -MessageId=0x3 -Severity=Informational -Facility=System -SymbolicName=STATUS_IMAGE_NOT_AT_BASE -Language=English -{Image Relocated} -An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. -. - -MessageId=0x4 -Severity=Informational -Facility=System -SymbolicName=STATUS_RXACT_STATE_CREATED -Language=English -This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. -. - -MessageId=0x5 -Severity=Informational -Facility=System -SymbolicName=STATUS_SEGMENT_NOTIFICATION -Language=English -{Segment Load} -A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. -An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments. -. - -MessageId=0x6 -Severity=Informational -Facility=System -SymbolicName=STATUS_LOCAL_USER_SESSION_KEY -Language=English -{Local Session Key} -A user session key was requested for a local RPC connection. The session key returned is a constant value and not unique to this connection. -. - -MessageId=0x7 -Severity=Informational -Facility=System -SymbolicName=STATUS_BAD_CURRENT_DIRECTORY -Language=English -{Invalid Current Directory} -The process cannot switch to the startup current directory %hs. -Select OK to set current directory to %hs, or select CANCEL to exit. -. - -MessageId=0x8 -Severity=Informational -Facility=System -SymbolicName=STATUS_SERIAL_MORE_WRITES -Language=English -{Serial IOCTL Complete} -A serial I/O operation was completed by another write to a serial port. -(The IOCTL_SERIAL_XOFF_COUNTER reached zero.) -. - -MessageId=0x9 -Severity=Informational -Facility=System -SymbolicName=STATUS_REGISTRY_RECOVERED -Language=English -{Registry Recovery} -One of the files containing the system's Registry data had to be recovered by use of a log or alternate copy. -The recovery was successful. -. - -MessageId=0xa -Severity=Informational -Facility=System -SymbolicName=STATUS_FT_READ_RECOVERY_FROM_BACKUP -Language=English -{Redundant Read} -To satisfy a read request, the Windows NT fault-tolerant file system successfully read the requested data from a redundant copy. -This was done because the file system encountered a failure on a member of the fault-tolerant volume but was unable to reassign the failing area of the device. -. - -MessageId=0xb -Severity=Informational -Facility=System -SymbolicName=STATUS_FT_WRITE_RECOVERY -Language=English -{Redundant Write} -To satisfy a write request, the Windows NT fault-tolerant file system successfully wrote a redundant copy of the information. -This was done because the file system encountered a failure on a member of the fault-tolerant volume but was unable to reassign the failing area of the device. -. - -MessageId=0xc -Severity=Informational -Facility=System -SymbolicName=STATUS_SERIAL_COUNTER_TIMEOUT -Language=English -{Serial IOCTL Timeout} -A serial I/O operation completed because the time-out period expired. -(The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.) -. - -MessageId=0xd -Severity=Informational -Facility=System -SymbolicName=STATUS_NULL_LM_PASSWORD -Language=English -{Password Too Complex} -The Windows password is too complex to be converted to a LAN Manager password. The LAN Manager password that returned is a NULL string. -. - -MessageId=0xe -Severity=Informational -Facility=System -SymbolicName=STATUS_IMAGE_MACHINE_TYPE_MISMATCH -Language=English -{Machine Type Mismatch} -The image file %hs is valid, but is for a machine type other than the current machine. -. - -MessageId=0xf -Severity=Informational -Facility=System -SymbolicName=STATUS_RECEIVE_PARTIAL -Language=English -{Partial Data Received} -The network transport returned partial data to its client. The remaining data will be sent later. -. - -MessageId=0x10 -Severity=Informational -Facility=System -SymbolicName=STATUS_RECEIVE_EXPEDITED -Language=English -{Expedited Data Received} -The network transport returned data to its client that was marked as expedited by the remote system. -. - -MessageId=0x11 -Severity=Informational -Facility=System -SymbolicName=STATUS_RECEIVE_PARTIAL_EXPEDITED -Language=English -{Partial Expedited Data Received} -The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. -. - -MessageId=0x12 -Severity=Informational -Facility=System -SymbolicName=STATUS_EVENT_DONE -Language=English -{TDI Event Done} -The TDI indication has completed successfully. -. - -MessageId=0x13 -Severity=Informational -Facility=System -SymbolicName=STATUS_EVENT_PENDING -Language=English -{TDI Event Pending} -The TDI indication has entered the pending state. -. - -MessageId=0x14 -Severity=Informational -Facility=System -SymbolicName=STATUS_CHECKING_FILE_SYSTEM -Language=English -Checking file system on %wZ -. - -MessageId=0x15 -Severity=Informational -Facility=System -SymbolicName=STATUS_FATAL_APP_EXIT -Language=English -{Fatal Application Exit} -%hs -. - -MessageId=0x16 -Severity=Informational -Facility=System -SymbolicName=STATUS_PREDEFINED_HANDLE -Language=English -The specified registry key is referenced by a predefined handle. -. - -MessageId=0x17 -Severity=Informational -Facility=System -SymbolicName=STATUS_WAS_UNLOCKED -Language=English -{Page Unlocked} -The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process. -. - -MessageId=0x18 -Severity=Informational -Facility=System -SymbolicName=STATUS_SERVICE_NOTIFICATION -Language=English -%hs -. - -MessageId=0x19 -Severity=Informational -Facility=System -SymbolicName=STATUS_WAS_LOCKED -Language=English -{Page Locked} -One of the pages to lock was already locked. -. - -MessageId=0x1c -Severity=Informational -Facility=System -SymbolicName=STATUS_WX86_UNSIMULATE -Language=English -Exception status code used by Win32 x86 emulation subsystem. -. - -MessageId=0x20 -Severity=Informational -Facility=System -SymbolicName=STATUS_WX86_EXCEPTION_CONTINUE -Language=English -Exception status code used by Win32 x86 emulation subsystem. -. - -MessageId=0x21 -Severity=Informational -Facility=System -SymbolicName=STATUS_WX86_EXCEPTION_LASTCHANCE -Language=English -Exception status code used by Win32 x86 emulation subsystem. -. - -MessageId=0x22 -Severity=Informational -Facility=System -SymbolicName=STATUS_WX86_EXCEPTION_CHAIN -Language=English -Exception status code used by Win32 x86 emulation subsystem. -. - -MessageId=0x23 -Severity=Informational -Facility=System -SymbolicName=STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE -Language=English -{Machine Type Mismatch} -The image file %hs is valid, but is for a machine type other than the current machine. -. - -MessageId=0x24 -Severity=Informational -Facility=System -SymbolicName=STATUS_NO_YIELD_PERFORMED -Language=English -A yield execution was performed and no thread was available to run. -. - -MessageId=0x25 -Severity=Informational -Facility=System -SymbolicName=STATUS_TIMER_RESUME_IGNORED -Language=English -The resumable flag to a timer API was ignored. -. - -MessageId=0x26 -Severity=Informational -Facility=System -SymbolicName=STATUS_ARBITRATION_UNHANDLED -Language=English -The arbiter has deferred arbitration of these resources to its parent -. - -MessageId=0x27 -Severity=Informational -Facility=System -SymbolicName=STATUS_CARDBUS_NOT_SUPPORTED -Language=English -The device "%hs" has detected a CardBus card in its slot, but the firmware on this system is not configured to allow the CardBus controller to be run in CardBus mode. -The operating system will currently accept only 16-bit (R2) pc-cards on this controller. -. - -MessageId=0x28 -Severity=Informational -Facility=System -SymbolicName=STATUS_WX86_CREATEWX86TIB -Language=English -Exception status code used by Win32 x86 emulation subsystem. -. - -MessageId=0x29 -Severity=Informational -Facility=System -SymbolicName=STATUS_MP_PROCESSOR_MISMATCH -Language=English -The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact -the CPU manufacturer to see if this mix of processors is supported. -. - -MessageId=0x294 -Severity=Informational -Facility=System -SymbolicName=STATUS_WAKE_SYSTEM -Language=English -The system has awoken -. - -MessageId=0x370 -Severity=Informational -Facility=System -SymbolicName=STATUS_DS_SHUTTING_DOWN -Language=English -The Directory Service is shuting down. -. - -MessageId=0x1 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_REPLY_LATER -Language=English -Debugger will reply later. -. - -MessageId=0x2 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_UNABLE_TO_PROVIDE_HANDLE -Language=English -Debugger can not provide handle. -. - -MessageId=0x3 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_TERMINATE_THREAD -Language=English -Debugger terminated thread. -. - -MessageId=0x4 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_TERMINATE_PROCESS -Language=English -Debugger terminated process. -. - -MessageId=0x5 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_CONTROL_C -Language=English -Debugger got control C. -. - -MessageId=0x6 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_PRINTEXCEPTION_C -Language=English -Debugger printed exception on control C. -. - -MessageId=0x7 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_RIPEXCEPTION -Language=English -Debugger received RIP exception. -. - -MessageId=0x8 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_CONTROL_BREAK -Language=English -Debugger received control break. -. - -MessageId=0x9 -Severity=Informational -Facility=Debugger -SymbolicName=DBG_COMMAND_EXCEPTION -Language=English -Debugger command communication exception. -. - -MessageId=0x56 -Severity=Informational -Facility=RpcRuntime -SymbolicName=RPC_NT_UUID_LOCAL_ONLY -Language=English -A UUID that is valid only on this computer has been allocated. -. - -MessageId=0x1 -Severity=Warning -Facility=System -SymbolicName=STATUS_GUARD_PAGE_VIOLATION -Language=English -{EXCEPTION} -Guard Page Exception -A page of memory that marks the end of a data structure, such as a stack or an array, has been accessed. -. - -MessageId=0x2 -Severity=Warning -Facility=System -SymbolicName=STATUS_DATATYPE_MISALIGNMENT -Language=English -{EXCEPTION} -Alignment Fault -A datatype misalignment was detected in a load or store instruction. -. - -MessageId=0x3 -Severity=Warning -Facility=System -SymbolicName=STATUS_BREAKPOINT -Language=English -{EXCEPTION} -Breakpoint -A breakpoint has been reached. -. - -MessageId=0x4 -Severity=Warning -Facility=System -SymbolicName=STATUS_SINGLE_STEP -Language=English -{EXCEPTION} -Single Step -A single step or trace operation has just been completed. -. - -MessageId=0x5 -Severity=Warning -Facility=System -SymbolicName=STATUS_BUFFER_OVERFLOW -Language=English -{Buffer Overflow} -The data was too large to fit into the specified buffer. -. - -MessageId=0x6 -Severity=Warning -Facility=System -SymbolicName=STATUS_NO_MORE_FILES -Language=English -{No More Files} -No more files were found which match the file specification. -. - -MessageId=0x7 -Severity=Warning -Facility=System -SymbolicName=STATUS_WAKE_SYSTEM_DEBUGGER -Language=English -{Kernel Debugger Awakened} -the system debugger was awakened by an interrupt. -. - -MessageId=0xc -Severity=Warning -Facility=System -SymbolicName=STATUS_GUID_SUBSTITUTION_MADE -Language=English -{GUID Substitution} -During the translation of a global identifier (GUID) to a ReactOS security ID (SID), no administratively-defined GUID prefix was found. -A substitute prefix was used, which will not compromise system security. -However, this may provide a more restrictive access than intended. -. - -MessageId=0x10 -Severity=Warning -Facility=System -SymbolicName=STATUS_DEVICE_OFF_LINE -Language=English -{Device Offline} -The printer has been taken offline. -. - -MessageId=0x11 -Severity=Warning -Facility=System -SymbolicName=STATUS_DEVICE_BUSY -Language=English -{Device Busy} -The device is currently busy. -. - -MessageId=0x12 -Severity=Warning -Facility=System -SymbolicName=STATUS_NO_MORE_EAS -Language=English -{No More EAs} -No more extended attributes (EAs) were found for the file. -. - -MessageId=0x13 -Severity=Warning -Facility=System -SymbolicName=STATUS_INVALID_EA_NAME -Language=English -{Illegal EA} -The specified extended attribute (EA) name contains at least one illegal character. -. - -MessageId=0x14 -Severity=Warning -Facility=System -SymbolicName=STATUS_EA_LIST_INCONSISTENT -Language=English -{Inconsistent EA List} -The extended attribute (EA) list is inconsistent. -. - -MessageId=0x15 -Severity=Warning -Facility=System -SymbolicName=STATUS_INVALID_EA_FLAG -Language=English -{Invalid EA Flag} -An invalid extended attribute (EA) flag was set. -. - -MessageId=0x16 -Severity=Warning -Facility=System -SymbolicName=STATUS_VERIFY_REQUIRED -Language=English -{Verifying Disk} -The media has changed and a verify operation is in progress so no reads or writes may be performed to the device, except those used in the verify operation. -. - -MessageId=0x17 -Severity=Warning -Facility=System -SymbolicName=STATUS_EXTRANEOUS_INFORMATION -Language=English -{Too Much Information} -The specified access control list (ACL) contained more information than was expected. -. - -MessageId=0x18 -Severity=Warning -Facility=System -SymbolicName=STATUS_RXACT_COMMIT_NECESSARY -Language=English -This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. -The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired). -. - -MessageId=0x1c -Severity=Warning -Facility=System -SymbolicName=STATUS_MEDIA_CHANGED -Language=English -{Media Changed} -The media may have changed. -. - -MessageId=0x20 -Severity=Warning -Facility=System -SymbolicName=STATUS_MEDIA_CHECK -Language=English -{Media Changed} -The media may have changed. -. - -MessageId=0x21 -Severity=Warning -Facility=System -SymbolicName=STATUS_SETMARK_DETECTED -Language=English -A tape access reached a setmark. -. - -MessageId=0x22 -Severity=Warning -Facility=System -SymbolicName=STATUS_NO_DATA_DETECTED -Language=English -During a tape access, the end of the data written is reached. -. - -MessageId=0x23 -Severity=Warning -Facility=System -SymbolicName=STATUS_REDIRECTOR_HAS_OPEN_HANDLES -Language=English -The redirector is in use and cannot be unloaded. -. - -MessageId=0x24 -Severity=Warning -Facility=System -SymbolicName=STATUS_SERVER_HAS_OPEN_HANDLES -Language=English -The server is in use and cannot be unloaded. -. - -MessageId=0x25 -Severity=Warning -Facility=System -SymbolicName=STATUS_ALREADY_DISCONNECTED -Language=English -The specified connection has already been disconnected. -. - -MessageId=0x26 -Severity=Warning -Facility=System -SymbolicName=STATUS_LONGJUMP -Language=English -A long jump has been executed. -. - -MessageId=0x27 -Severity=Warning -Facility=System -SymbolicName=STATUS_CLEANER_CARTRIDGE_INSTALLED -Language=English -A cleaner cartridge is present in the tape library. -. - -MessageId=0x28 -Severity=Warning -Facility=System -SymbolicName=STATUS_PLUGPLAY_QUERY_VETOED -Language=English -The Plug and Play query operation was not successful. -. - -MessageId=0x29 -Severity=Warning -Facility=System -SymbolicName=STATUS_UNWIND_CONSOLIDATE -Language=English -A frame consolidation has been executed. -. - -MessageId=0x288 -Severity=Warning -Facility=System -SymbolicName=STATUS_DEVICE_REQUIRES_CLEANING -Language=English -The device has indicated that cleaning is necessary. -. - -MessageId=0x289 -Severity=Warning -Facility=System -SymbolicName=STATUS_DEVICE_DOOR_OPEN -Language=English -The device has indicated that it's door is open. Further operations require it closed and secured. -. - -MessageId=0x1 -Severity=Warning -Facility=Debugger -SymbolicName=DBG_EXCEPTION_NOT_HANDLED -Language=English -Debugger did not handle the exception. -. - -MessageId=0x1 -Severity=Warning -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_ALREADY_UP -Language=English -The cluster node is already up. -. - -MessageId=0x2 -Severity=Warning -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_ALREADY_DOWN -Language=English -The cluster node is already down. -. - -MessageId=0x3 -Severity=Warning -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETWORK_ALREADY_ONLINE -Language=English -The cluster network is already online. -. - -MessageId=0x4 -Severity=Warning -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE -Language=English -The cluster network is already offline. -. - -MessageId=0x5 -Severity=Warning -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_ALREADY_MEMBER -Language=English -The cluster node is already a member of the cluster. -. - -MessageId=0x1 -Severity=Error -Facility=System -SymbolicName=STATUS_UNSUCCESSFUL -Language=English -{Operation Failed} -The requested operation was unsuccessful. -. - -MessageId=0x2 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_IMPLEMENTED -Language=English -{Not Implemented} -The requested operation is not implemented. -. - -MessageId=0x3 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_INFO_CLASS -Language=English -{Invalid Parameter} -The specified information class is not a valid information class for the specified object. -. - -MessageId=0x4 -Severity=Error -Facility=System -SymbolicName=STATUS_INFO_LENGTH_MISMATCH -Language=English -The specified information record length does not match the length required for the specified information class. -. - -MessageId=0x5 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCESS_VIOLATION -Language=English -The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be "%s". -. - -MessageId=0x6 -Severity=Error -Facility=System -SymbolicName=STATUS_IN_PAGE_ERROR -Language=English -The instruction at "0x%08lx" referenced memory at "0x%08lx". The required data was not placed into memory because of an I/O error status of "0x%08lx". -. - -MessageId=0x7 -Severity=Error -Facility=System -SymbolicName=STATUS_PAGEFILE_QUOTA -Language=English -The pagefile quota for the process has been exhausted. -. - -MessageId=0x8 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_HANDLE -Language=English -An invalid HANDLE was specified. -. - -MessageId=0x9 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_INITIAL_STACK -Language=English -An invalid initial stack was specified in a call to NtCreateThread. -. - -MessageId=0xc -Severity=Error -Facility=System -SymbolicName=STATUS_TIMER_NOT_CANCELED -Language=English -An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine. -. - -MessageId=0x10 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_DEVICE_REQUEST -Language=English -The specified request is not a valid operation for the target device. -. - -MessageId=0x11 -Severity=Error -Facility=System -SymbolicName=STATUS_END_OF_FILE -Language=English -The end-of-file marker has been reached. There is no valid data in the file beyond this marker. -. - -MessageId=0x12 -Severity=Error -Facility=System -SymbolicName=STATUS_WRONG_VOLUME -Language=English -{Wrong Volume} -The wrong volume is in the drive. -Please insert volume %hs into drive %hs. -. - -MessageId=0x13 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_MEDIA_IN_DEVICE -Language=English -{No Disk} -There is no disk in the drive. -Please insert a disk into drive %hs. -. - -MessageId=0x14 -Severity=Error -Facility=System -SymbolicName=STATUS_UNRECOGNIZED_MEDIA -Language=English -{Unknown Disk Format} -The disk in drive %hs is not formatted properly. -Please check the disk, and reformat if necessary. -. - -MessageId=0x15 -Severity=Error -Facility=System -SymbolicName=STATUS_NONEXISTENT_SECTOR -Language=English -{Sector Not Found} -The specified sector does not exist. -. - -MessageId=0x16 -Severity=Error -Facility=System -SymbolicName=STATUS_MORE_PROCESSING_REQUIRED -Language=English -{Still Busy} -The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete. -. - -MessageId=0x17 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_MEMORY -Language=English -{Not Enough Quota} -Not enough virtual memory or paging file quota is available to complete the specified operation. -. - -MessageId=0x18 -Severity=Error -Facility=System -SymbolicName=STATUS_CONFLICTING_ADDRESSES -Language=English -{Conflicting Address Range} -The specified address range conflicts with the address space. -. - -MessageId=0x19 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_MAPPED_VIEW -Language=English -Address range to unmap is not a mapped view. -. - -MessageId=0x1c -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_SYSTEM_SERVICE -Language=English -An invalid system service was specified in a system service call. -. - -MessageId=0x20 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_FILE_FOR_SECTION -Language=English -{Bad File} -The attributes of the specified mapping file for a section of memory cannot be read. -. - -MessageId=0x21 -Severity=Error -Facility=System -SymbolicName=STATUS_ALREADY_COMMITTED -Language=English -{Already Committed} -The specified address range is already committed. -. - -MessageId=0x22 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCESS_DENIED -Language=English -{Access Denied} -A process has requested access to an object, but has not been granted those access rights. -. - -MessageId=0x23 -Severity=Error -Facility=System -SymbolicName=STATUS_BUFFER_TOO_SMALL -Language=English -{Buffer Too Small} -The buffer is too small to contain the entry. No information has been written to the buffer. -. - -MessageId=0x24 -Severity=Error -Facility=System -SymbolicName=STATUS_OBJECT_TYPE_MISMATCH -Language=English -{Wrong Type} -There is a mismatch between the type of object required by the requested operation and the type of object that is specified in the request. -. - -MessageId=0x25 -Severity=Error -Facility=System -SymbolicName=STATUS_NONCONTINUABLE_EXCEPTION -Language=English -{EXCEPTION} -Cannot Continue -ReactOS cannot continue from this exception. -. - -MessageId=0x26 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_DISPOSITION -Language=English -An invalid exception disposition was returned by an exception handler. -. - -MessageId=0x27 -Severity=Error -Facility=System -SymbolicName=STATUS_UNWIND -Language=English -Unwind exception code. -. - -MessageId=0x28 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_STACK -Language=English -An invalid or unaligned stack was encountered during an unwind operation. -. - -MessageId=0x29 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_UNWIND_TARGET -Language=English -An invalid unwind target was encountered during an unwind operation. -. - -MessageId=0x2c -Severity=Error -Facility=System -SymbolicName=STATUS_UNABLE_TO_DECOMMIT_VM -Language=English -An attempt was made to decommit uncommitted virtual memory. -. - -MessageId=0x30 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_PARAMETER_MIX -Language=English -An invalid combination of parameters was specified. -. - -MessageId=0x31 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_QUOTA_LOWER -Language=English -An attempt was made to lower a quota limit below the current usage. -. - -MessageId=0x32 -Severity=Error -Facility=System -SymbolicName=STATUS_DISK_CORRUPT_ERROR -Language=English -{Corrupt Disk} -The file system structure on the disk is corrupt and unusable. -Please run the Chkdsk utility on the volume %hs. -. - -MessageId=0x33 -Severity=Error -Facility=System -SymbolicName=STATUS_OBJECT_NAME_INVALID -Language=English -Object Name invalid. -. - -MessageId=0x34 -Severity=Error -Facility=System -SymbolicName=STATUS_OBJECT_NAME_NOT_FOUND -Language=English -Object Name not found. -. - -MessageId=0x35 -Severity=Error -Facility=System -SymbolicName=STATUS_OBJECT_NAME_COLLISION -Language=English -Object Name already exists. -. - -MessageId=0x37 -Severity=Error -Facility=System -SymbolicName=STATUS_PORT_DISCONNECTED -Language=English -Attempt to send a message to a disconnected communication port. -. - -MessageId=0x38 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_ALREADY_ATTACHED -Language=English -An attempt was made to attach to a device that was already attached to another device. -. - -MessageId=0x39 -Severity=Error -Facility=System -SymbolicName=STATUS_OBJECT_PATH_INVALID -Language=English -Object Path Component was not a directory object. -. - -MessageId=0x3c -Severity=Error -Facility=System -SymbolicName=STATUS_DATA_OVERRUN -Language=English -{Data Overrun} -A data overrun error occurred. -. - -MessageId=0x40 -Severity=Error -Facility=System -SymbolicName=STATUS_SECTION_TOO_BIG -Language=English -{Section Too Large} -The specified section is too big to map the file. -. - -MessageId=0x41 -Severity=Error -Facility=System -SymbolicName=STATUS_PORT_CONNECTION_REFUSED -Language=English -The NtConnectPort request is refused. -. - -MessageId=0x42 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_PORT_HANDLE -Language=English -The type of port handle is invalid for the operation requested. -. - -MessageId=0x43 -Severity=Error -Facility=System -SymbolicName=STATUS_SHARING_VIOLATION -Language=English -A file cannot be opened because the share access flags are incompatible. -. - -MessageId=0x44 -Severity=Error -Facility=System -SymbolicName=STATUS_QUOTA_EXCEEDED -Language=English -Insufficient quota exists to complete the operation -. - -MessageId=0x45 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_PAGE_PROTECTION -Language=English -The specified page protection was not valid. -. - -MessageId=0x46 -Severity=Error -Facility=System -SymbolicName=STATUS_MUTANT_NOT_OWNED -Language=English -An attempt to release a mutant object was made by a thread that was not the owner of the mutant object. -. - -MessageId=0x47 -Severity=Error -Facility=System -SymbolicName=STATUS_SEMAPHORE_LIMIT_EXCEEDED -Language=English -An attempt was made to release a semaphore such that its maximum count would have been exceeded. -. - -MessageId=0x48 -Severity=Error -Facility=System -SymbolicName=STATUS_PORT_ALREADY_SET -Language=English -An attempt to set a processes DebugPort or ExceptionPort was made, but a port already exists in the process or -an attempt to set a file's CompletionPort made, but a port was already set in the file. -. - -MessageId=0x49 -Severity=Error -Facility=System -SymbolicName=STATUS_SECTION_NOT_IMAGE -Language=English -An attempt was made to query image information on a section which does not map an image. -. - -MessageId=0x4c -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_WORKING_SET_LIMIT -Language=English -An attempt was made to set the working set limit to an invalid value (minimum greater than maximum, etc). -. - -MessageId=0x50 -Severity=Error -Facility=System -SymbolicName=STATUS_EA_TOO_LARGE -Language=English -An EA operation failed because EA set is too large. -. - -MessageId=0x51 -Severity=Error -Facility=System -SymbolicName=STATUS_NONEXISTENT_EA_ENTRY -Language=English -An EA operation failed because the name or EA index is invalid. -. - -MessageId=0x52 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_EAS_ON_FILE -Language=English -The file for which EAs were requested has no EAs. -. - -MessageId=0x53 -Severity=Error -Facility=System -SymbolicName=STATUS_EA_CORRUPT_ERROR -Language=English -The EA is corrupt and non-readable. -. - -MessageId=0x54 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_LOCK_CONFLICT -Language=English -A requested read/write cannot be granted due to a conflicting file lock. -. - -MessageId=0x55 -Severity=Error -Facility=System -SymbolicName=STATUS_LOCK_NOT_GRANTED -Language=English -A requested file lock cannot be granted due to other existing locks. -. - -MessageId=0x56 -Severity=Error -Facility=System -SymbolicName=STATUS_DELETE_PENDING -Language=English -A non close operation has been requested of a file object with a delete pending. -. - -MessageId=0x57 -Severity=Error -Facility=System -SymbolicName=STATUS_CTL_FILE_NOT_SUPPORTED -Language=English -An attempt was made to set the control attribute on a file. This attribute is not supported in the target file system. -. - -MessageId=0x58 -Severity=Error -Facility=System -SymbolicName=STATUS_UNKNOWN_REVISION -Language=English -Indicates a revision number encountered or specified is not one known by the service. It may be a more recent revision than the service is aware of. -. - -MessageId=0x59 -Severity=Error -Facility=System -SymbolicName=STATUS_REVISION_MISMATCH -Language=English -Indicates two revision levels are incompatible. -. - -MessageId=0x5a -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_OWNER -Language=English -The specified owner is not valid for this object. -. - -MessageId=0x5b -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_PRIMARY_GROUP -Language=English -The specified primary group is not valid for this object. -. - -MessageId=0x5c -Severity=Error -Facility=System -SymbolicName=STATUS_NO_IMPERSONATION_TOKEN -Language=English -An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. -. - -MessageId=0x5d -Severity=Error -Facility=System -SymbolicName=STATUS_CANT_DISABLE_MANDATORY -Language=English -The specified group cannot be disabled because it is marked as mandatory. -. - -MessageId=0x5e -Severity=Error -Facility=System -SymbolicName=STATUS_NO_LOGON_SERVERS -Language=English -The logon failed because no valid logon servers were found. -. - -MessageId=0x5f -Severity=Error -Facility=System -SymbolicName=STATUS_NO_SUCH_LOGON_SESSION -Language=English -The specified logon session does not exist. -. - -MessageId=0x60 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_SUCH_PRIVILEGE -Language=English -A specified privilege does not exist. -. - -MessageId=0x61 -Severity=Error -Facility=System -SymbolicName=STATUS_PRIVILEGE_NOT_HELD -Language=English -A required privilege is not held by the client. -. - -MessageId=0x62 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_ACCOUNT_NAME -Language=English -The name provided is not a properly formed account name. -. - -MessageId=0x63 -Severity=Error -Facility=System -SymbolicName=STATUS_USER_EXISTS -Language=English -The specified user already exists. -. - -MessageId=0x64 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_SUCH_USER -Language=English -The specified user does not exist. -. - -MessageId=0x65 -Severity=Error -Facility=System -SymbolicName=STATUS_GROUP_EXISTS -Language=English -The specified group already exists. -. - -MessageId=0x66 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_SUCH_GROUP -Language=English -The specified group does not exist. -. - -MessageId=0x67 -Severity=Error -Facility=System -SymbolicName=STATUS_MEMBER_IN_GROUP -Language=English -The specified user account is already in the specified group account. -Also used to indicate a group cannot be deleted because it contains a member. -. - -MessageId=0x68 -Severity=Error -Facility=System -SymbolicName=STATUS_MEMBER_NOT_IN_GROUP -Language=English -The specified user account is not a member of the specified group account. -. - -MessageId=0x69 -Severity=Error -Facility=System -SymbolicName=STATUS_LAST_ADMIN -Language=English -Indicates the requested operation would disable or delete the last remaining administration account. -This is not allowed to prevent creating a situation in which the system cannot be administrated. -. - -MessageId=0x6a -Severity=Error -Facility=System -SymbolicName=STATUS_WRONG_PASSWORD -Language=English -The specified current password is not correct. -. - -MessageId=0x6b -Severity=Error -Facility=System -SymbolicName=STATUS_ILL_FORMED_PASSWORD -Language=English -The new password contains invalid characters. -. - -MessageId=0x6c -Severity=Error -Facility=System -SymbolicName=STATUS_PASSWORD_RESTRICTION -Language=English -When trying to update a password, this status indicates that some password update rule has been violated. For example, the password may not meet length criteria. -. - -MessageId=0x6d -Severity=Error -Facility=System -SymbolicName=STATUS_LOGON_FAILURE -Language=English -Logon failed because the specified user name or password is incorrect. -. - -MessageId=0x6e -Severity=Error -Facility=System -SymbolicName=STATUS_ACCOUNT_RESTRICTION -Language=English -The specified information is valid but an account restriction prevented logon. -. - -MessageId=0x6f -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_LOGON_HOURS -Language=English -The attempted logon is not allowed at this time. -. - -MessageId=0x70 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_WORKSTATION -Language=English -The user account is restricted such that it may not be used to log on from the source workstation. -. - -MessageId=0x71 -Severity=Error -Facility=System -SymbolicName=STATUS_PASSWORD_EXPIRED -Language=English -The user account's password has expired. -. - -MessageId=0x72 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCOUNT_DISABLED -Language=English -The referenced account is currently disabled and may not be logged on to. -. - -MessageId=0x73 -Severity=Error -Facility=System -SymbolicName=STATUS_NONE_MAPPED -Language=English -None of the information to be translated has been translated. -. - -MessageId=0x74 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_LUIDS_REQUESTED -Language=English -The number of LUIDs requested may not be allocated with a single allocation. -. - -MessageId=0x75 -Severity=Error -Facility=System -SymbolicName=STATUS_LUIDS_EXHAUSTED -Language=English -Indicates there are no more LUIDs to allocate. -. - -MessageId=0x76 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_SUB_AUTHORITY -Language=English -Indicates the sub-authority value is invalid for the particular use. -. - -MessageId=0x77 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_ACL -Language=English -Indicates the ACL structure is not valid. -. - -MessageId=0x78 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_SID -Language=English -Indicates the SID structure is not valid. -. - -MessageId=0x79 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_SECURITY_DESCR -Language=English -Indicates the SECURITY_DESCRIPTOR structure is not valid. -. - -MessageId=0x7a -Severity=Error -Facility=System -SymbolicName=STATUS_PROCEDURE_NOT_FOUND -Language=English -Indicates the specified procedure address cannot be found in the DLL. -. - -MessageId=0x7b -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_IMAGE_FORMAT -Language=English -{Bad Image} -%hs is either not designed for ReactOS or it contains an error. -Try reinstalling the application using the original installation media or contact the software vendor for support. -. - -MessageId=0x7c -Severity=Error -Facility=System -SymbolicName=STATUS_NO_TOKEN -Language=English -An attempt was made to reference a token that doesn't exist. -This is typically done by referencing the token associated with a thread when the thread is not impersonating a client. -. - -MessageId=0x7d -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_INHERITANCE_ACL -Language=English -The inherited access control list could not be created. -. - -MessageId=0x7e -Severity=Error -Facility=System -SymbolicName=STATUS_RANGE_NOT_LOCKED -Language=English -Attempt to unlock a file range that is not locked. -. - -MessageId=0x7f -Severity=Error -Facility=System -SymbolicName=STATUS_DISK_FULL -Language=English -The disk is full. Delete files and free up disk space to continue the operation. -. - -MessageId=0x80 -Severity=Error -Facility=System -SymbolicName=STATUS_SERVER_DISABLED -Language=English -The GUID allocation server is [already] disabled at the moment. -. - -MessageId=0x81 -Severity=Error -Facility=System -SymbolicName=STATUS_SERVER_NOT_DISABLED -Language=English -The GUID allocation server is [already] enabled at the moment. -. - -MessageId=0x82 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_GUIDS_REQUESTED -Language=English -Too many GUIDs were requested from the allocation server at once. -. - -MessageId=0x83 -Severity=Error -Facility=System -SymbolicName=STATUS_GUIDS_EXHAUSTED -Language=English -The GUIDs could not be allocated because the Authority Agent was exhausted. -. - -MessageId=0x84 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_ID_AUTHORITY -Language=English -The value provided was an invalid value for an identifier authority. -. - -MessageId=0x85 -Severity=Error -Facility=System -SymbolicName=STATUS_AGENTS_EXHAUSTED -Language=English -There are no more authority agent values available for the given identifier authority value. -. - -MessageId=0x86 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_VOLUME_LABEL -Language=English -An invalid volume label has been specified. -. - -MessageId=0x87 -Severity=Error -Facility=System -SymbolicName=STATUS_SECTION_NOT_EXTENDED -Language=English -A mapped section could not be extended. -. - -MessageId=0x88 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_MAPPED_DATA -Language=English -Specified section to flush does not map a data file. -. - -MessageId=0x89 -Severity=Error -Facility=System -SymbolicName=STATUS_RESOURCE_DATA_NOT_FOUND -Language=English -Indicates the specified image file did not contain a resource section. -. - -MessageId=0x8a -Severity=Error -Facility=System -SymbolicName=STATUS_RESOURCE_TYPE_NOT_FOUND -Language=English -A resource of the specified type could not be found in the image file. -. - -MessageId=0x8b -Severity=Error -Facility=System -SymbolicName=STATUS_RESOURCE_NAME_NOT_FOUND -Language=English -A resource with the specified name could not be found in the image file. -. - -MessageId=0x8c -Severity=Error -Facility=System -SymbolicName=STATUS_ARRAY_BOUNDS_EXCEEDED -Language=English -{EXCEPTION} -Array bounds exceeded. -. - -MessageId=0x8d -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_DENORMAL_OPERAND -Language=English -{EXCEPTION} -Floating-point denormal operand. -. - -MessageId=0x8e -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_DIVIDE_BY_ZERO -Language=English -{EXCEPTION} -Floating-point division by zero. -. - -MessageId=0x8f -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_INEXACT_RESULT -Language=English -{EXCEPTION} -Floating-point inexact result. -. - -MessageId=0x90 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_INVALID_OPERATION -Language=English -{EXCEPTION} -Floating-point invalid operation. -. - -MessageId=0x91 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_OVERFLOW -Language=English -{EXCEPTION} -Floating-point overflow. -. - -MessageId=0x92 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_STACK_CHECK -Language=English -{EXCEPTION} -Floating-point stack check. -. - -MessageId=0x93 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOAT_UNDERFLOW -Language=English -{EXCEPTION} -Floating-point underflow. -. - -MessageId=0x94 -Severity=Error -Facility=System -SymbolicName=STATUS_INTEGER_DIVIDE_BY_ZERO -Language=English -{EXCEPTION} -Integer division by zero. -. - -MessageId=0x95 -Severity=Error -Facility=System -SymbolicName=STATUS_INTEGER_OVERFLOW -Language=English -{EXCEPTION} -Integer overflow. -. - -MessageId=0x96 -Severity=Error -Facility=System -SymbolicName=STATUS_PRIVILEGED_INSTRUCTION -Language=English -{EXCEPTION} -Privileged instruction. -. - -MessageId=0x97 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_PAGING_FILES -Language=English -An attempt was made to install more paging files than the system supports. -. - -MessageId=0x98 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_INVALID -Language=English -The volume for a file has been externally altered such that the opened file is no longer valid. -. - -MessageId=0x99 -Severity=Error -Facility=System -SymbolicName=STATUS_ALLOTTED_SPACE_EXCEEDED -Language=English -When a block of memory is allotted for future updates, such as the memory allocated to hold discretionary access control and primary group information, successive updates may exceed the amount of memory originally allotted. -Since quota may already have been charged to several processes which have handles to the object, it is not reasonable to alter the size of the allocated memory. -Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTED_SPACE_EXCEEDED error returned. -. - -MessageId=0x9a -Severity=Error -Facility=System -SymbolicName=STATUS_INSUFFICIENT_RESOURCES -Language=English -Insufficient system resources exist to complete this API. -. - -MessageId=0x9b -Severity=Error -Facility=System -SymbolicName=STATUS_DFS_EXIT_PATH_FOUND -Language=English -The specified file cannot be opened because it is a DFS exit path file. -. - -MessageId=0x9c -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_DATA_ERROR -Language=English -STATUS_DEVICE_DATA_ERROR -. - -MessageId=0x9d -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_NOT_CONNECTED -Language=English -The specified device is not connected. -. - -MessageId=0x9f -Severity=Error -Facility=System -SymbolicName=STATUS_FREE_VM_NOT_AT_BASE -Language=English -The specified memory could not be freed because it is not at the start of the allocation. -. - -MessageId=0xa0 -Severity=Error -Facility=System -SymbolicName=STATUS_MEMORY_NOT_ALLOCATED -Language=English -The specified memory could not be freed because it was not allocated. -. - -MessageId=0xa1 -Severity=Error -Facility=System -SymbolicName=STATUS_WORKING_SET_QUOTA -Language=English -The process working set quota was exceeded -. - -MessageId=0xa2 -Severity=Error -Facility=System -SymbolicName=STATUS_MEDIA_WRITE_PROTECTED -Language=English -{Write Protect Error} -The media in volume %hs cannot be written to because it is write-protected. -. - -MessageId=0xa3 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_NOT_READY -Language=English -{Device Not Ready} -The device %hs is not ready. -. - -MessageId=0xc0 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_DOES_NOT_EXIST -Language=English -This device does not exist. -. - -MessageId=0xc1 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_COMMANDS -Language=English -The network BIOS command limit has been reached. -. - -MessageId=0xc2 -Severity=Error -Facility=System -SymbolicName=STATUS_ADAPTER_HARDWARE_ERROR -Language=English -An I/O adapter hardware error has occurred. -. - -MessageId=0xc3 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_NETWORK_RESPONSE -Language=English -The network responded incorrectly. -. - -MessageId=0xc4 -Severity=Error -Facility=System -SymbolicName=STATUS_UNEXPECTED_NETWORK_ERROR -Language=English -An unexpected network error occurred. -. - -MessageId=0xc5 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_REMOTE_ADAPTER -Language=English -The remote adapter is not compatible. -. - -MessageId=0xc6 -Severity=Error -Facility=System -SymbolicName=STATUS_PRINT_QUEUE_FULL -Language=English -The printer queue is full. -. - -MessageId=0xc7 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_SPOOL_SPACE -Language=English -Space to store the file waiting to be printed is not available on the server. -. - -MessageId=0xc8 -Severity=Error -Facility=System -SymbolicName=STATUS_PRINT_CANCELLED -Language=English -The requested print file has been canceled. -. - -MessageId=0xc9 -Severity=Error -Facility=System -SymbolicName=STATUS_NETWORK_NAME_DELETED -Language=English -The network name was deleted. -. - -MessageId=0xcc -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_NETWORK_NAME -Language=English -{Network Name Not Found} -The specified share name cannot be found on the remote server. -. - -MessageId=0x100 -Severity=Error -Facility=System -SymbolicName=STATUS_VARIABLE_NOT_FOUND -Language=English -Indicates the specified environment variable name was not found in the specified environment block. -. - -MessageId=0x101 -Severity=Error -Facility=System -SymbolicName=STATUS_DIRECTORY_NOT_EMPTY -Language=English -Indicates that the directory trying to be deleted is not empty. -. - -MessageId=0x102 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_CORRUPT_ERROR -Language=English -{Corrupt File} -The file or directory %hs is corrupt and unreadable. -Please run the Chkdsk utility. -. - -MessageId=0x103 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_A_DIRECTORY -Language=English -A requested opened file is not a directory. -. - -MessageId=0x104 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_LOGON_SESSION_STATE -Language=English -The logon session is not in a state that is consistent with the requested operation. -. - -MessageId=0x105 -Severity=Error -Facility=System -SymbolicName=STATUS_LOGON_SESSION_COLLISION -Language=English -An internal LSA error has occurred. An authentication package has requested the creation of a Logon Session but the ID of an already existing Logon Session has been specified. -. - -MessageId=0x106 -Severity=Error -Facility=System -SymbolicName=STATUS_NAME_TOO_LONG -Language=English -A specified name string is too long for its intended use. -. - -MessageId=0x107 -Severity=Error -Facility=System -SymbolicName=STATUS_FILES_OPEN -Language=English -The user attempted to force close the files on a redirected drive, but there were opened files on the drive, and the user did not specify a sufficient level of force. -. - -MessageId=0x108 -Severity=Error -Facility=System -SymbolicName=STATUS_CONNECTION_IN_USE -Language=English -The user attempted to force close the files on a redirected drive, but there were opened directories on the drive, and the user did not specify a sufficient level of force. -. - -MessageId=0x109 -Severity=Error -Facility=System -SymbolicName=STATUS_MESSAGE_NOT_FOUND -Language=English -RtlFindMessage could not locate the requested message ID in the message table resource. -. - -MessageId=0x10c -Severity=Error -Facility=System -SymbolicName=STATUS_NO_GUID_TRANSLATION -Language=English -Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. -This causes the protection attempt to fail, which may cause a file creation attempt to fail. -. - -MessageId=0x110 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_LID_NOT_EXIST -Language=English -STATUS_ABIOS_LID_NOT_EXIST -. - -MessageId=0x111 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_LID_ALREADY_OWNED -Language=English -STATUS_ABIOS_LID_ALREADY_OWNED -. - -MessageId=0x112 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_NOT_LID_OWNER -Language=English -STATUS_ABIOS_NOT_LID_OWNER -. - -MessageId=0x113 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_INVALID_COMMAND -Language=English -STATUS_ABIOS_INVALID_COMMAND -. - -MessageId=0x114 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_INVALID_LID -Language=English -STATUS_ABIOS_INVALID_LID -. - -MessageId=0x115 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_SELECTOR_NOT_AVAILABLE -Language=English -STATUS_ABIOS_SELECTOR_NOT_AVAILABLE -. - -MessageId=0x116 -Severity=Error -Facility=System -SymbolicName=STATUS_ABIOS_INVALID_SELECTOR -Language=English -STATUS_ABIOS_INVALID_SELECTOR -. - -MessageId=0x117 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_LDT -Language=English -Indicates that an attempt was made to change the size of the LDT for a process that has no LDT. -. - -MessageId=0x118 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_LDT_SIZE -Language=English -Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors. -. - -MessageId=0x119 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_LDT_OFFSET -Language=English -Indicates that the starting value for the LDT information was not an integral multiple of the selector size. -. - -MessageId=0x11c -Severity=Error -Facility=System -SymbolicName=STATUS_RXACT_INVALID_STATE -Language=English -Indicates that the transaction state of a registry sub-tree is incompatible with the requested operation. -For example, a request has been made to start a new transaction with one already in progress, -or a request has been made to apply a transaction when one is not currently in progress. -. - -MessageId=0x120 -Severity=Error -Facility=System -SymbolicName=STATUS_CANCELLED -Language=English -The I/O request was canceled. -. - -MessageId=0x121 -Severity=Error -Facility=System -SymbolicName=STATUS_CANNOT_DELETE -Language=English -An attempt has been made to remove a file or directory that cannot be deleted. -. - -MessageId=0x122 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_COMPUTER_NAME -Language=English -Indicates a name specified as a remote computer name is syntactically invalid. -. - -MessageId=0x123 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_DELETED -Language=English -An I/O request other than close was performed on a file after it has been deleted, -which can only happen to a request which did not complete before the last handle was closed via NtClose. -. - -MessageId=0x124 -Severity=Error -Facility=System -SymbolicName=STATUS_SPECIAL_ACCOUNT -Language=English -Indicates an operation has been attempted on a built-in (special) SAM account which is incompatible with built-in accounts. -For example, built-in accounts cannot be deleted. -. - -MessageId=0x125 -Severity=Error -Facility=System -SymbolicName=STATUS_SPECIAL_GROUP -Language=English -The operation requested may not be performed on the specified group because it is a built-in special group. -. - -MessageId=0x126 -Severity=Error -Facility=System -SymbolicName=STATUS_SPECIAL_USER -Language=English -The operation requested may not be performed on the specified user because it is a built-in special user. -. - -MessageId=0x127 -Severity=Error -Facility=System -SymbolicName=STATUS_MEMBERS_PRIMARY_GROUP -Language=English -Indicates a member cannot be removed from a group because the group is currently the member's primary group. -. - -MessageId=0x128 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_CLOSED -Language=English -An I/O request other than close and several other special case operations was attempted using a file object that had already been closed. -. - -MessageId=0x129 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_THREADS -Language=English -Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads. -. - -MessageId=0x12c -Severity=Error -Facility=System -SymbolicName=STATUS_PAGEFILE_QUOTA_EXCEEDED -Language=English -Page file quota was exceeded. -. - -MessageId=0x130 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_IMAGE_PROTECT -Language=English -The specified image file did not have the correct format, it did not have a proper e_lfarlc in the MZ header. -. - -MessageId=0x131 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_IMAGE_WIN_16 -Language=English -The specified image file did not have the correct format, it appears to be a 16-bit Windows image. -. - -MessageId=0x132 -Severity=Error -Facility=System -SymbolicName=STATUS_LOGON_SERVER_CONFLICT -Language=English -The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. -. - -MessageId=0x133 -Severity=Error -Facility=System -SymbolicName=STATUS_TIME_DIFFERENCE_AT_DC -Language=English -The time at the Primary Domain Controller is different than the time at the Backup Domain Controller or member server by too large an amount. -. - -MessageId=0x134 -Severity=Error -Facility=System -SymbolicName=STATUS_SYNCHRONIZATION_REQUIRED -Language=English -The SAM database on a ReactOS Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required. -. - -MessageId=0x135 -Severity=Error -Facility=System -SymbolicName=STATUS_DLL_NOT_FOUND -Language=English -{Unable To Locate Component} -This application has failed to start because %hs was not found. Re-installing the application may fix this problem. -. - -MessageId=0x136 -Severity=Error -Facility=System -SymbolicName=STATUS_OPEN_FAILED -Language=English -The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the ReactOS Lan Manager Redirector to use in its internal error mapping routines. -. - -MessageId=0x137 -Severity=Error -Facility=System -SymbolicName=STATUS_IO_PRIVILEGE_FAILED -Language=English -{Privilege Failed} -The I/O permissions for the process could not be changed. -. - -MessageId=0x138 -Severity=Error -Facility=System -SymbolicName=STATUS_ORDINAL_NOT_FOUND -Language=English -{Ordinal Not Found} -The ordinal %ld could not be located in the dynamic link library %hs. -. - -MessageId=0x139 -Severity=Error -Facility=System -SymbolicName=STATUS_ENTRYPOINT_NOT_FOUND -Language=English -{Entry Point Not Found} -The procedure entry point %hs could not be located in the dynamic link library %hs. -. - -MessageId=0x13c -Severity=Error -Facility=System -SymbolicName=STATUS_REMOTE_DISCONNECT -Language=English -{Virtual Circuit Closed} -The network transport on a remote computer has closed a network connection. There may or may not be I/O requests outstanding. -. - -MessageId=0x140 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_CONNECTION -Language=English -The connection handle given to the transport was invalid. -. - -MessageId=0x141 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_ADDRESS -Language=English -The address handle given to the transport was invalid. -. - -MessageId=0x142 -Severity=Error -Facility=System -SymbolicName=STATUS_DLL_INIT_FAILED -Language=English -{DLL Initialization Failed} -Initialization of the dynamic link library %hs failed. The process is terminating abnormally. -. - -MessageId=0x143 -Severity=Error -Facility=System -SymbolicName=STATUS_MISSING_SYSTEMFILE -Language=English -{Missing System File} -The required system file %hs is bad or missing. -. - -MessageId=0x144 -Severity=Error -Facility=System -SymbolicName=STATUS_UNHANDLED_EXCEPTION -Language=English -{Application Error} -The exception %s (0x%08lx) occurred in the application at location 0x%08lx. -. - -MessageId=0x145 -Severity=Error -Facility=System -SymbolicName=STATUS_APP_INIT_FAILURE -Language=English -{Application Error} -The application failed to initialize properly (0x%lx). Click on OK to terminate the application. -. - -MessageId=0x146 -Severity=Error -Facility=System -SymbolicName=STATUS_PAGEFILE_CREATE_FAILED -Language=English -{Unable to Create Paging File} -The creation of the paging file %hs failed (%lx). The requested size was %ld. -. - -MessageId=0x147 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_PAGEFILE -Language=English -{No Paging File Specified} -No paging file was specified in the system configuration. -. - -MessageId=0x148 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_LEVEL -Language=English -{Incorrect System Call Level} -An invalid level was passed into the specified system call. -. - -MessageId=0x149 -Severity=Error -Facility=System -SymbolicName=STATUS_WRONG_PASSWORD_CORE -Language=English -{Incorrect Password to LAN Manager Server} -You specified an incorrect password to a LAN Manager 2.x or MS-NET server. -. - -MessageId=0x14c -Severity=Error -Facility=System -SymbolicName=STATUS_REGISTRY_CORRUPT -Language=English -{The Registry Is Corrupt} -The structure of one of the files that contains Registry data is corrupt, or the image of the file in memory is corrupt, or the file could not be recovered because the alternate copy or log was absent or corrupt. -. - -MessageId=0x150 -Severity=Error -Facility=System -SymbolicName=STATUS_SERIAL_NO_DEVICE_INITED -Language=English -No serial device was successfully initialized. The serial driver will unload. -. - -MessageId=0x151 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_SUCH_ALIAS -Language=English -The specified local group does not exist. -. - -MessageId=0x152 -Severity=Error -Facility=System -SymbolicName=STATUS_MEMBER_NOT_IN_ALIAS -Language=English -The specified account name is not a member of the local group. -. - -MessageId=0x153 -Severity=Error -Facility=System -SymbolicName=STATUS_MEMBER_IN_ALIAS -Language=English -The specified account name is already a member of the local group. -. - -MessageId=0x154 -Severity=Error -Facility=System -SymbolicName=STATUS_ALIAS_EXISTS -Language=English -The specified local group already exists. -. - -MessageId=0x155 -Severity=Error -Facility=System -SymbolicName=STATUS_LOGON_NOT_GRANTED -Language=English -A requested type of logon (e.g., Interactive, Network, Service) is not granted by the target system's local security policy. -Please ask the system administrator to grant the necessary form of logon. -. - -MessageId=0x156 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_SECRETS -Language=English -The maximum number of secrets that may be stored in a single system has been exceeded. The length and number of secrets is limited to satisfy United States State Department export restrictions. -. - -MessageId=0x157 -Severity=Error -Facility=System -SymbolicName=STATUS_SECRET_TOO_LONG -Language=English -The length of a secret exceeds the maximum length allowed. The length and number of secrets is limited to satisfy United States State Department export restrictions. -. - -MessageId=0x158 -Severity=Error -Facility=System -SymbolicName=STATUS_INTERNAL_DB_ERROR -Language=English -The Local Security Authority (LSA) database contains an internal inconsistency. -. - -MessageId=0x159 -Severity=Error -Facility=System -SymbolicName=STATUS_FULLSCREEN_MODE -Language=English -The requested operation cannot be performed in fullscreen mode. -. - -MessageId=0x15c -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_REGISTRY_FILE -Language=English -The system has attempted to load or restore a file into the registry, and the specified file is not in the format of a registry file. -. - -MessageId=0x160 -Severity=Error -Facility=System -SymbolicName=STATUS_ILL_FORMED_SERVICE_ENTRY -Language=English -A configuration registry node representing a driver service entry was ill-formed and did not contain required value entries. -. - -MessageId=0x161 -Severity=Error -Facility=System -SymbolicName=STATUS_ILLEGAL_CHARACTER -Language=English -An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE. -. - -MessageId=0x162 -Severity=Error -Facility=System -SymbolicName=STATUS_UNMAPPABLE_CHARACTER -Language=English -No mapping for the Unicode character exists in the target multi-byte code page. -. - -MessageId=0x163 -Severity=Error -Facility=System -SymbolicName=STATUS_UNDEFINED_CHARACTER -Language=English -The Unicode character is not defined in the Unicode character set installed on the system. -. - -MessageId=0x164 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOPPY_VOLUME -Language=English -The paging file cannot be created on a floppy diskette. -. - -MessageId=0x165 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOPPY_ID_MARK_NOT_FOUND -Language=English -{Floppy Disk Error} -While accessing a floppy disk, an ID address mark was not found. -. - -MessageId=0x166 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOPPY_WRONG_CYLINDER -Language=English -{Floppy Disk Error} -While accessing a floppy disk, the track address from the sector ID field was found to be different than the track address maintained by the controller. -. - -MessageId=0x167 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOPPY_UNKNOWN_ERROR -Language=English -{Floppy Disk Error} -The floppy disk controller reported an error that is not recognized by the floppy disk driver. -. - -MessageId=0x168 -Severity=Error -Facility=System -SymbolicName=STATUS_FLOPPY_BAD_REGISTERS -Language=English -{Floppy Disk Error} -While accessing a floppy-disk, the controller returned inconsistent results via its registers. -. - -MessageId=0x169 -Severity=Error -Facility=System -SymbolicName=STATUS_DISK_RECALIBRATE_FAILED -Language=English -{Hard Disk Error} -While accessing the hard disk, a recalibrate operation failed, even after retries. -. - -MessageId=0x16c -Severity=Error -Facility=System -SymbolicName=STATUS_SHARED_IRQ_BUSY -Language=English -An attempt was made to open a device that was sharing an IRQ with other devices. -At least one other device that uses that IRQ was already opened. -Two concurrent opens of devices that share an IRQ and only work via interrupts is not supported for the particular bus type that the devices use. -. - -MessageId=0x172 -Severity=Error -Facility=System -SymbolicName=STATUS_PARTITION_FAILURE -Language=English -Tape could not be partitioned. -. - -MessageId=0x173 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_BLOCK_LENGTH -Language=English -When accessing a new tape of a multivolume partition, the current blocksize is incorrect. -. - -MessageId=0x174 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_NOT_PARTITIONED -Language=English -Tape partition information could not be found when loading a tape. -. - -MessageId=0x175 -Severity=Error -Facility=System -SymbolicName=STATUS_UNABLE_TO_LOCK_MEDIA -Language=English -Attempt to lock the eject media mechanism fails. -. - -MessageId=0x176 -Severity=Error -Facility=System -SymbolicName=STATUS_UNABLE_TO_UNLOAD_MEDIA -Language=English -Unload media fails. -. - -MessageId=0x177 -Severity=Error -Facility=System -SymbolicName=STATUS_EOM_OVERFLOW -Language=English -Physical end of tape was detected. -. - -MessageId=0x178 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_MEDIA -Language=English -{No Media} -There is no media in the drive. -Please insert media into drive %hs. -. - -MessageId=0x17c -Severity=Error -Facility=System -SymbolicName=STATUS_KEY_DELETED -Language=English -Illegal operation attempted on a registry key which has been marked for deletion. -. - -MessageId=0x180 -Severity=Error -Facility=System -SymbolicName=STATUS_KEY_HAS_CHILDREN -Language=English -An attempt was made to create a symbolic link in a registry key that already has subkeys or values. -. - -MessageId=0x181 -Severity=Error -Facility=System -SymbolicName=STATUS_CHILD_MUST_BE_VOLATILE -Language=English -An attempt was made to create a Stable subkey under a Volatile parent key. -. - -MessageId=0x182 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_CONFIGURATION_ERROR -Language=English -The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect. -. - -MessageId=0x183 -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_INTERNAL_ERROR -Language=English -An error was detected between two drivers or within an I/O driver. -. - -MessageId=0x184 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_DEVICE_STATE -Language=English -The device is not in a valid state to perform this request. -. - -MessageId=0x185 -Severity=Error -Facility=System -SymbolicName=STATUS_IO_DEVICE_ERROR -Language=English -The I/O device reported an I/O error. -. - -MessageId=0x186 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_PROTOCOL_ERROR -Language=English -A protocol error was detected between the driver and the device. -. - -MessageId=0x187 -Severity=Error -Facility=System -SymbolicName=STATUS_BACKUP_CONTROLLER -Language=English -This operation is only allowed for the Primary Domain Controller of the domain. -. - -MessageId=0x188 -Severity=Error -Facility=System -SymbolicName=STATUS_LOG_FILE_FULL -Language=English -Log file space is insufficient to support this operation. -. - -MessageId=0x189 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_LATE -Language=English -A write operation was attempted to a volume after it was dismounted. -. - -MessageId=0x18c -Severity=Error -Facility=System -SymbolicName=STATUS_TRUSTED_DOMAIN_FAILURE -Language=English -The logon request failed because the trust relationship between the primary domain and the trusted domain failed. -. - -MessageId=0x190 -Severity=Error -Facility=System -SymbolicName=STATUS_TRUST_FAILURE -Language=English -The network logon failed. This may be because the validation authority can't be reached. -. - -MessageId=0x191 -Severity=Error -Facility=System -SymbolicName=STATUS_MUTANT_LIMIT_EXCEEDED -Language=English -An attempt was made to acquire a mutant such that its maximum count would have been exceeded. -. - -MessageId=0x192 -Severity=Error -Facility=System -SymbolicName=STATUS_NETLOGON_NOT_STARTED -Language=English -An attempt was made to logon, but the netlogon service was not started. -. - -MessageId=0x193 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCOUNT_EXPIRED -Language=English -The user's account has expired. -. - -MessageId=0x194 -Severity=Error -Facility=System -SymbolicName=STATUS_POSSIBLE_DEADLOCK -Language=English -{EXCEPTION} -Possible deadlock condition. -. - -MessageId=0x195 -Severity=Error -Facility=System -SymbolicName=STATUS_NETWORK_CREDENTIAL_CONFLICT -Language=English -Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again. -. - -MessageId=0x196 -Severity=Error -Facility=System -SymbolicName=STATUS_REMOTE_SESSION_LIMIT -Language=English -An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. -. - -MessageId=0x197 -Severity=Error -Facility=System -SymbolicName=STATUS_EVENTLOG_FILE_CHANGED -Language=English -The log file has changed between reads. -. - -MessageId=0x198 -Severity=Error -Facility=System -SymbolicName=STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT -Language=English -The account used is an Interdomain Trust account. Use your global user account or local user account to access this server. -. - -MessageId=0x199 -Severity=Error -Facility=System -SymbolicName=STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT -Language=English -The account used is a Computer Account. Use your global user account or local user account to access this server. -. - -MessageId=0x19c -Severity=Error -Facility=System -SymbolicName=STATUS_FS_DRIVER_REQUIRED -Language=English -A volume has been accessed for which a file system driver is required that has not yet been loaded. -. - -MessageId=0x202 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_USER_SESSION_KEY -Language=English -There is no user session key for the specified logon session. -. - -MessageId=0x203 -Severity=Error -Facility=System -SymbolicName=STATUS_USER_SESSION_DELETED -Language=English -The remote user session has been deleted. -. - -MessageId=0x204 -Severity=Error -Facility=System -SymbolicName=STATUS_RESOURCE_LANG_NOT_FOUND -Language=English -Indicates the specified resource language ID cannot be found in the -image file. -. - -MessageId=0x205 -Severity=Error -Facility=System -SymbolicName=STATUS_INSUFF_SERVER_RESOURCES -Language=English -Insufficient server resources exist to complete the request. -. - -MessageId=0x206 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_BUFFER_SIZE -Language=English -The size of the buffer is invalid for the specified operation. -. - -MessageId=0x207 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_ADDRESS_COMPONENT -Language=English -The transport rejected the network address specified as invalid. -. - -MessageId=0x208 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_ADDRESS_WILDCARD -Language=English -The transport rejected the network address specified due to an invalid use of a wildcard. -. - -MessageId=0x209 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_ADDRESSES -Language=English -The transport address could not be opened because all the available addresses are in use. -. - -MessageId=0x20c -Severity=Error -Facility=System -SymbolicName=STATUS_CONNECTION_DISCONNECTED -Language=English -The transport connection is now disconnected. -. - -MessageId=0x210 -Severity=Error -Facility=System -SymbolicName=STATUS_TRANSACTION_TIMED_OUT -Language=English -The transport timed out a request waiting for a response. -. - -MessageId=0x211 -Severity=Error -Facility=System -SymbolicName=STATUS_TRANSACTION_NO_RELEASE -Language=English -The transport did not receive a release for a pending response. -. - -MessageId=0x212 -Severity=Error -Facility=System -SymbolicName=STATUS_TRANSACTION_NO_MATCH -Language=English -The transport did not find a transaction matching the specific -token. -. - -MessageId=0x213 -Severity=Error -Facility=System -SymbolicName=STATUS_TRANSACTION_RESPONDED -Language=English -The transport had previously responded to a transaction request. -. - -MessageId=0x214 -Severity=Error -Facility=System -SymbolicName=STATUS_TRANSACTION_INVALID_ID -Language=English -The transport does not recognized the transaction request identifier specified. -. - -MessageId=0x215 -Severity=Error -Facility=System -SymbolicName=STATUS_TRANSACTION_INVALID_TYPE -Language=English -The transport does not recognize the transaction request type specified. -. - -MessageId=0x216 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_SERVER_SESSION -Language=English -The transport can only process the specified request on the server side of a session. -. - -MessageId=0x217 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_CLIENT_SESSION -Language=English -The transport can only process the specified request on the client side of a session. -. - -MessageId=0x218 -Severity=Error -Facility=System -SymbolicName=STATUS_CANNOT_LOAD_REGISTRY_FILE -Language=English -{Registry File Failure} -The registry cannot load the hive (file): -%hs -or its log or alternate. -It is corrupt, absent, or not writable. -. - -MessageId=0x219 -Severity=Error -Facility=System -SymbolicName=STATUS_DEBUG_ATTACH_FAILED -Language=English -{Unexpected Failure in DebugActiveProcess} -An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error. -. - -MessageId=0x21c -Severity=Error -Facility=System -SymbolicName=STATUS_NO_BROWSER_SERVERS_FOUND -Language=English -{Unable to Retrieve Browser Server List} -The list of servers for this workgroup is not currently available. -. - -MessageId=0x220 -Severity=Error -Facility=System -SymbolicName=STATUS_MAPPED_ALIGNMENT -Language=English -{Mapped View Alignment Incorrect} -An attempt was made to map a view of a file, but either the specified base address or the offset into the file were not aligned on the proper allocation granularity. -. - -MessageId=0x221 -Severity=Error -Facility=System -SymbolicName=STATUS_IMAGE_CHECKSUM_MISMATCH -Language=English -{Bad Image Checksum} -The image %hs is possibly corrupt. The header checksum does not match the computed checksum. -. - -MessageId=0x222 -Severity=Error -Facility=System -SymbolicName=STATUS_LOST_WRITEBEHIND_DATA -Language=English -{Delayed Write Failed} -ReactOS was unable to save all the data for the file %hs. The data has been lost. -This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere. -. - -MessageId=0x223 -Severity=Error -Facility=System -SymbolicName=STATUS_CLIENT_SERVER_PARAMETERS_INVALID -Language=English -The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window. -. - -MessageId=0x224 -Severity=Error -Facility=System -SymbolicName=STATUS_PASSWORD_MUST_CHANGE -Language=English -The user's password must be changed before logging on the first time. -. - -MessageId=0x225 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_FOUND -Language=English -The object was not found. -. - -MessageId=0x226 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_TINY_STREAM -Language=English -The stream is not a tiny stream. -. - -MessageId=0x227 -Severity=Error -Facility=System -SymbolicName=STATUS_RECOVERY_FAILURE -Language=English -A transaction recover failed. -. - -MessageId=0x228 -Severity=Error -Facility=System -SymbolicName=STATUS_STACK_OVERFLOW_READ -Language=English -The request must be handled by the stack overflow code. -. - -MessageId=0x229 -Severity=Error -Facility=System -SymbolicName=STATUS_FAIL_CHECK -Language=English -A consistency check failed. -. - -MessageId=0x22c -Severity=Error -Facility=System -SymbolicName=STATUS_CONVERT_TO_LARGE -Language=English -Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream. -. - -MessageId=0x230 -Severity=Error -Facility=System -SymbolicName=STATUS_PROPSET_NOT_FOUND -Language=English -The property set specified does not exist on the object. -. - -MessageId=0x231 -Severity=Error -Facility=System -SymbolicName=STATUS_MARSHALL_OVERFLOW -Language=English -The user/kernel marshalling buffer has overflowed. -. - -MessageId=0x232 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_VARIANT -Language=English -The supplied variant structure contains invalid data. -. - -MessageId=0x233 -Severity=Error -Facility=System -SymbolicName=STATUS_DOMAIN_CONTROLLER_NOT_FOUND -Language=English -Could not find a domain controller for this domain. -. - -MessageId=0x234 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCOUNT_LOCKED_OUT -Language=English -The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested. -. - -MessageId=0x235 -Severity=Error -Facility=System -SymbolicName=STATUS_HANDLE_NOT_CLOSABLE -Language=English -NtClose was called on a handle that was protected from close via NtSetInformationObject. -. - -MessageId=0x236 -Severity=Error -Facility=System -SymbolicName=STATUS_CONNECTION_REFUSED -Language=English -The transport connection attempt was refused by the remote system. -. - -MessageId=0x237 -Severity=Error -Facility=System -SymbolicName=STATUS_GRACEFUL_DISCONNECT -Language=English -The transport connection was gracefully closed. -. - -MessageId=0x238 -Severity=Error -Facility=System -SymbolicName=STATUS_ADDRESS_ALREADY_ASSOCIATED -Language=English -The transport endpoint already has an address associated with it. -. - -MessageId=0x239 -Severity=Error -Facility=System -SymbolicName=STATUS_ADDRESS_NOT_ASSOCIATED -Language=English -An address has not yet been associated with the transport endpoint. -. - -MessageId=0x23c -Severity=Error -Facility=System -SymbolicName=STATUS_NETWORK_UNREACHABLE -Language=English -The remote network is not reachable by the transport. -. - -MessageId=0x240 -Severity=Error -Facility=System -SymbolicName=STATUS_REQUEST_ABORTED -Language=English -The request was aborted. -. - -MessageId=0x241 -Severity=Error -Facility=System -SymbolicName=STATUS_CONNECTION_ABORTED -Language=English -The transport connection was aborted by the local system. -. - -MessageId=0x242 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_COMPRESSION_BUFFER -Language=English -The specified buffer contains ill-formed data. -. - -MessageId=0x243 -Severity=Error -Facility=System -SymbolicName=STATUS_USER_MAPPED_FILE -Language=English -The requested operation cannot be performed on a file with a user mapped section open. -. - -MessageId=0x244 -Severity=Error -Facility=System -SymbolicName=STATUS_AUDIT_FAILED -Language=English -{Audit Failed} -An attempt to generate a security audit failed. -. - -MessageId=0x245 -Severity=Error -Facility=System -SymbolicName=STATUS_TIMER_RESOLUTION_NOT_SET -Language=English -The timer resolution was not previously set by the current process. -. - -MessageId=0x246 -Severity=Error -Facility=System -SymbolicName=STATUS_CONNECTION_COUNT_LIMIT -Language=English -A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. -. - -MessageId=0x247 -Severity=Error -Facility=System -SymbolicName=STATUS_LOGIN_TIME_RESTRICTION -Language=English -Attempting to login during an unauthorized time of day for this account. -. - -MessageId=0x248 -Severity=Error -Facility=System -SymbolicName=STATUS_LOGIN_WKSTA_RESTRICTION -Language=English -The account is not authorized to login from this station. -. - -MessageId=0x249 -Severity=Error -Facility=System -SymbolicName=STATUS_IMAGE_MP_UP_MISMATCH -Language=English -{UP/MP Image Mismatch} -The image %hs has been modified for use on a uniprocessor system, but you are running it on a multiprocessor machine. -Please reinstall the image file. -. - -MessageId=0x250 -Severity=Error -Facility=System -SymbolicName=STATUS_INSUFFICIENT_LOGON_INFO -Language=English -There is insufficient account information to log you on. -. - -MessageId=0x251 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_DLL_ENTRYPOINT -Language=English -{Invalid DLL Entrypoint} -The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. -The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly. -. - -MessageId=0x252 -Severity=Error -Facility=System -SymbolicName=STATUS_BAD_SERVICE_ENTRYPOINT -Language=English -{Invalid Service Callback Entrypoint} -The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. -The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly. -. - -MessageId=0x253 -Severity=Error -Facility=System -SymbolicName=STATUS_LPC_REPLY_LOST -Language=English -The server received the messages but did not send a reply. -. - -MessageId=0x254 -Severity=Error -Facility=System -SymbolicName=STATUS_IP_ADDRESS_CONFLICT1 -Language=English -There is an IP address conflict with another system on the network -. - -MessageId=0x255 -Severity=Error -Facility=System -SymbolicName=STATUS_IP_ADDRESS_CONFLICT2 -Language=English -There is an IP address conflict with another system on the network -. - -MessageId=0x256 -Severity=Error -Facility=System -SymbolicName=STATUS_REGISTRY_QUOTA_LIMIT -Language=English -{Low On Registry Space} -The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. -. - -MessageId=0x257 -Severity=Error -Facility=System -SymbolicName=STATUS_PATH_NOT_COVERED -Language=English -The contacted server does not support the indicated part of the DFS namespace. -. - -MessageId=0x258 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_CALLBACK_ACTIVE -Language=English -A callback return system service cannot be executed when no callback is active. -. - -MessageId=0x259 -Severity=Error -Facility=System -SymbolicName=STATUS_LICENSE_QUOTA_EXCEEDED -Language=English -The service being accessed is licensed for a particular number of connections. -No more connections can be made to the service at this time because there are already as many connections as the service can accept. -. - -MessageId=0x25c -Severity=Error -Facility=System -SymbolicName=STATUS_PWD_HISTORY_CONFLICT -Language=English -You have attempted to change your password to one that you have used in the past. -The policy of your user account does not allow this. Please select a password that you have not previously used. -. - -MessageId=0x260 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_HW_PROFILE -Language=English -The specified hardware profile configuration is invalid. -. - -MessageId=0x261 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_PLUGPLAY_DEVICE_PATH -Language=English -The specified Plug and Play registry device path is invalid. -. - -MessageId=0x262 -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_ORDINAL_NOT_FOUND -Language=English -{Driver Entry Point Not Found} -The %hs device driver could not locate the ordinal %ld in driver %hs. -. - -MessageId=0x263 -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_ENTRYPOINT_NOT_FOUND -Language=English -{Driver Entry Point Not Found} -The %hs device driver could not locate the entry point %hs in driver %hs. -. - -MessageId=0x264 -Severity=Error -Facility=System -SymbolicName=STATUS_RESOURCE_NOT_OWNED -Language=English -{Application Error} -The application attempted to release a resource it did not own. Click on OK to terminate the application. -. - -MessageId=0x265 -Severity=Error -Facility=System -SymbolicName=STATUS_TOO_MANY_LINKS -Language=English -An attempt was made to create more links on a file than the file system supports. -. - -MessageId=0x266 -Severity=Error -Facility=System -SymbolicName=STATUS_QUOTA_LIST_INCONSISTENT -Language=English -The specified quota list is internally inconsistent with its descriptor. -. - -MessageId=0x267 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_IS_OFFLINE -Language=English -The specified file has been relocated to offline storage. -. - -MessageId=0x268 -Severity=Error -Facility=System -SymbolicName=STATUS_EVALUATION_EXPIRATION -Language=English -{ReactOS Evaluation Notification} -Your ReactOS will NEVER expire!. -. - -MessageId=0x269 -Severity=Error -Facility=System -SymbolicName=STATUS_ILLEGAL_DLL_RELOCATION -Language=English -{Illegal System DLL Relocation} -The system DLL %hs was relocated in memory. The application will not run properly. -The relocation occurred because the DLL %hs occupied an address range reserved for ReactOS system DLLs. The vendor supplying the DLL should be contacted for a new DLL. -. - -MessageId=0x26c -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_UNABLE_TO_LOAD -Language=English -{Unable to Load Device Driver} -%hs device driver could not be loaded. -Error Status was 0x%x -. - -MessageId=0x270 -Severity=Error -Facility=System -SymbolicName=STATUS_WX86_FLOAT_STACK_CHECK -Language=English -Win32 x86 emulation subsystem Floating-point stack check. -. - -MessageId=0x271 -Severity=Error -Facility=System -SymbolicName=STATUS_VALIDATE_CONTINUE -Language=English -The validation process needs to continue on to the next step. -. - -MessageId=0x272 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_MATCH -Language=English -There was no match for the specified key in the index. -. - -MessageId=0x273 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_MORE_MATCHES -Language=English -There are no more matches for the current index enumeration. -. - -MessageId=0x275 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_A_REPARSE_POINT -Language=English -The NTFS file or directory is not a reparse point. -. - -MessageId=0x276 -Severity=Error -Facility=System -SymbolicName=STATUS_IO_REPARSE_TAG_INVALID -Language=English -The ReactOS I/O reparse tag passed for the NTFS reparse point is invalid. -. - -MessageId=0x277 -Severity=Error -Facility=System -SymbolicName=STATUS_IO_REPARSE_TAG_MISMATCH -Language=English -The ReactOS I/O reparse tag does not match the one present in the NTFS reparse point. -. - -MessageId=0x278 -Severity=Error -Facility=System -SymbolicName=STATUS_IO_REPARSE_DATA_INVALID -Language=English -The user data passed for the NTFS reparse point is invalid. -. - -MessageId=0x279 -Severity=Error -Facility=System -SymbolicName=STATUS_IO_REPARSE_TAG_NOT_HANDLED -Language=English -The layered file system driver for this IO tag did not handle it when needed. -. - -MessageId=0x280 -Severity=Error -Facility=System -SymbolicName=STATUS_REPARSE_POINT_NOT_RESOLVED -Language=English -The NTFS symbolic link could not be resolved even though the initial file name is valid. -. - -MessageId=0x281 -Severity=Error -Facility=System -SymbolicName=STATUS_DIRECTORY_IS_A_REPARSE_POINT -Language=English -The NTFS directory is a reparse point. -. - -MessageId=0x282 -Severity=Error -Facility=System -SymbolicName=STATUS_RANGE_LIST_CONFLICT -Language=English -The range could not be added to the range list because of a conflict. -. - -MessageId=0x283 -Severity=Error -Facility=System -SymbolicName=STATUS_SOURCE_ELEMENT_EMPTY -Language=English -The specified medium changer source element contains no media. -. - -MessageId=0x284 -Severity=Error -Facility=System -SymbolicName=STATUS_DESTINATION_ELEMENT_FULL -Language=English -The specified medium changer destination element already contains media. -. - -MessageId=0x285 -Severity=Error -Facility=System -SymbolicName=STATUS_ILLEGAL_ELEMENT_ADDRESS -Language=English -The specified medium changer element does not exist. -. - -MessageId=0x286 -Severity=Error -Facility=System -SymbolicName=STATUS_MAGAZINE_NOT_PRESENT -Language=English -The specified element is contained within a magazine that is no longer present. -. - -MessageId=0x287 -Severity=Error -Facility=System -SymbolicName=STATUS_REINITIALIZATION_NEEDED -Language=English -The device requires reinitialization due to hardware errors. -. - -MessageId=0x28c -Severity=Error -Facility=System -SymbolicName=STATUS_RANGE_NOT_FOUND -Language=English -The specified range could not be found in the range list. -. - -MessageId=0x290 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_USER_KEYS -Language=English -There are no EFS keys defined for the user. -. - -MessageId=0x291 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_NOT_ENCRYPTED -Language=English -The specified file is not encrypted. -. - -MessageId=0x292 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_EXPORT_FORMAT -Language=English -The specified file is not in the defined EFS export format. -. - -MessageId=0x293 -Severity=Error -Facility=System -SymbolicName=STATUS_FILE_ENCRYPTED -Language=English -The specified file is encrypted and the user does not have the ability to decrypt it. -. - -MessageId=0x295 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_GUID_NOT_FOUND -Language=English -The guid passed was not recognized as valid by a WMI data provider. -. - -MessageId=0x296 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_INSTANCE_NOT_FOUND -Language=English -The instance name passed was not recognized as valid by a WMI data provider. -. - -MessageId=0x297 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_ITEMID_NOT_FOUND -Language=English -The data item id passed was not recognized as valid by a WMI data provider. -. - -MessageId=0x298 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_TRY_AGAIN -Language=English -The WMI request could not be completed and should be retried. -. - -MessageId=0x299 -Severity=Error -Facility=System -SymbolicName=STATUS_SHARED_POLICY -Language=English -The policy object is shared and can only be modified at the root -. - -MessageId=0x29c -Severity=Error -Facility=System -SymbolicName=STATUS_VOLUME_NOT_UPGRADED -Language=English -The volume must be upgraded to enable this feature -. - -MessageId=0x2c1 -Severity=Error -Facility=System -SymbolicName=STATUS_DS_ADMIN_LIMIT_EXCEEDED -Language=English -A directory service resource limit has been exceeded. -. - -MessageId=0x2c2 -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_FAILED_SLEEP -Language=English -{System Standby Failed} -The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. -. - -MessageId=0x2c3 -Severity=Error -Facility=System -SymbolicName=STATUS_MUTUAL_AUTHENTICATION_FAILED -Language=English -Mutual Authentication failed. The server's password is out of date at the domain controller. -. - -MessageId=0x2c4 -Severity=Error -Facility=System -SymbolicName=STATUS_CORRUPT_SYSTEM_FILE -Language=English -The system file %1 has become corrupt and has been replaced. -. - -MessageId=0x2c5 -Severity=Error -Facility=System -SymbolicName=STATUS_DATATYPE_MISALIGNMENT_ERROR -Language=English -{EXCEPTION} -Alignment Error -A datatype misalignment error was detected in a load or store instruction. -. - -MessageId=0x2c6 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_READ_ONLY -Language=English -The WMI data item or data block is read only. -. - -MessageId=0x2c7 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_SET_FAILURE -Language=English -The WMI data item or data block could not be changed. -. - -MessageId=0x2c8 -Severity=Error -Facility=System -SymbolicName=STATUS_COMMITMENT_MINIMUM -Language=English -{Virtual Memory Minimum Too Low} -Your system is low on virtual memory. ReactOS is increasing the size of your virtual memory paging file. -During this process, memory requests for some applications may be denied. -. - -MessageId=0x2c9 -Severity=Error -Facility=System -SymbolicName=STATUS_REG_NAT_CONSUMPTION -Language=English -{EXCEPTION} -Register NaT consumption faults. -A NaT value is consumed on a non speculative instruction. -. - -MessageId=0x2cc -Severity=Error -Facility=System -SymbolicName=STATUS_ONLY_IF_CONNECTED -Language=English -This operation is supported only when you are connected to the server. -. - -MessageId=0x300 -Severity=Error -Facility=System -SymbolicName=STATUS_NOT_SUPPORTED_ON_SBS -Language=English -ReactOS doesn't have any Small Business Support editions, so this error never appears. -. - -MessageId=0x301 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_GUID_DISCONNECTED -Language=English -The WMI GUID is no longer available -. - -MessageId=0x302 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_ALREADY_DISABLED -Language=English -Collection or events for the WMI GUID is already disabled. -. - -MessageId=0x303 -Severity=Error -Facility=System -SymbolicName=STATUS_WMI_ALREADY_ENABLED -Language=English -Collection or events for the WMI GUID is already enabled. -. - -MessageId=0x304 -Severity=Error -Facility=System -SymbolicName=STATUS_MFT_TOO_FRAGMENTED -Language=English -The Master File Table on the volume is too fragmented to complete this operation. -. - -MessageId=0x305 -Severity=Error -Facility=System -SymbolicName=STATUS_COPY_PROTECTION_FAILURE -Language=English -Copy protection failure. -. - -MessageId=0x306 -Severity=Error -Facility=System -SymbolicName=STATUS_CSS_AUTHENTICATION_FAILURE -Language=English -Copy protection error - DVD CSS Authentication failed. -. - -MessageId=0x307 -Severity=Error -Facility=System -SymbolicName=STATUS_CSS_KEY_NOT_PRESENT -Language=English -Copy protection error - The given sector does not contain a valid key. -. - -MessageId=0x308 -Severity=Error -Facility=System -SymbolicName=STATUS_CSS_KEY_NOT_ESTABLISHED -Language=English -Copy protection error - DVD session key not established. -. - -MessageId=0x309 -Severity=Error -Facility=System -SymbolicName=STATUS_CSS_SCRAMBLED_SECTOR -Language=English -Copy protection error - The read failed because the sector is encrypted. -. - -MessageId=0x320 -Severity=Error -Facility=System -SymbolicName=STATUS_PKINIT_FAILURE -Language=English -The kerberos protocol encountered an error while validating the KDC certificate during smartcard Logon. There -is more information in the system event log. -. - -MessageId=0x321 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_SUBSYSTEM_FAILURE -Language=English -The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. -. - -MessageId=0x322 -Severity=Error -Facility=System -SymbolicName=STATUS_NO_KERB_KEY -Language=English -The target server does not have acceptable kerberos credentials. -. - -MessageId=0x350 -Severity=Error -Facility=System -SymbolicName=STATUS_HOST_DOWN -Language=English -The transport determined that the remote system is down. -. - -MessageId=0x351 -Severity=Error -Facility=System -SymbolicName=STATUS_UNSUPPORTED_PREAUTH -Language=English -An unsupported preauthentication mechanism was presented to the kerberos package. -. - -MessageId=0x352 -Severity=Error -Facility=System -SymbolicName=STATUS_EFS_ALG_BLOB_TOO_BIG -Language=English -The encryption algorithm used on the source file needs a bigger key buffer than the one used on the destination file. -. - -MessageId=0x353 -Severity=Error -Facility=System -SymbolicName=STATUS_PORT_NOT_SET -Language=English -An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. -. - -MessageId=0x354 -Severity=Error -Facility=System -SymbolicName=STATUS_DEBUGGER_INACTIVE -Language=English -An attempt to do an operation on a debug port failed because the port is in the process of being deleted. -. - -MessageId=0x355 -Severity=Error -Facility=System -SymbolicName=STATUS_DS_VERSION_CHECK_FAILURE -Language=English -This version of ReactOS is not compatible with the behavior version of directory forest, domain or domain controller. -. - -MessageId=0x356 -Severity=Error -Facility=System -SymbolicName=STATUS_AUDITING_DISABLED -Language=English -The specified event is currently not being audited. -. - -MessageId=0x357 -Severity=Error -Facility=System -SymbolicName=STATUS_PRENT4_MACHINE_ACCOUNT -Language=English -The machine account was created pre-NT4. The account needs to be recreated. -. - -MessageId=0x358 -Severity=Error -Facility=System -SymbolicName=STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER -Language=English -A account group can not have a universal group as a member. -. - -MessageId=0x359 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_IMAGE_WIN_32 -Language=English -The specified image file did not have the correct format, it appears to be a 32-bit Windows image. -. - -MessageId=0x35c -Severity=Error -Facility=System -SymbolicName=STATUS_NETWORK_SESSION_EXPIRED -Language=English -The client's session has expired, so the client must reauthenticate to continue accessing the remote resources. -. - -MessageId=0x361 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT -Language=English -Access to %1 has been restricted by your Administrator by the default software restriction policy level. -. - -MessageId=0x362 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_PATH -Language=English -Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3 -. - -MessageId=0x363 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER -Language=English -Access to %1 has been restricted by your Administrator by software publisher policy. -. - -MessageId=0x364 -Severity=Error -Facility=System -SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_OTHER -Language=English -Access to %1 has been restricted by your Administrator by policy rule %2. -. - -MessageId=0x365 -Severity=Error -Facility=System -SymbolicName=STATUS_FAILED_DRIVER_ENTRY -Language=English -The driver was not loaded because it failed it's initialization call. -. - -MessageId=0x366 -Severity=Error -Facility=System -SymbolicName=STATUS_DEVICE_ENUMERATION_ERROR -Language=English -The "%hs" encountered an error while applying power or reading the device configuration. -This may be caused by a failure of your hardware or by a poor connection. -. - -MessageId=0x368 -Severity=Error -Facility=System -SymbolicName=STATUS_MOUNT_POINT_NOT_RESOLVED -Language=English -The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached. -. - -MessageId=0x369 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_DEVICE_OBJECT_PARAMETER -Language=English -The device object parameter is either not a valid device object or is not attached to the volume specified by the file name. -. - -MessageId=0x36c -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_BLOCKED -Language=English -Driver %2 has been blocked from loading. -. - -MessageId=0x380 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_WRONG_PIN -Language=English -An incorrect PIN was presented to the smart card -. - -MessageId=0x381 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_CARD_BLOCKED -Language=English -The smart card is blocked -. - -MessageId=0x382 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED -Language=English -No PIN was presented to the smart card -. - -MessageId=0x383 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_NO_CARD -Language=English -No smart card available -. - -MessageId=0x384 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_NO_KEY_CONTAINER -Language=English -The requested key container does not exist on the smart card -. - -MessageId=0x385 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_NO_CERTIFICATE -Language=English -The requested certificate does not exist on the smart card -. - -MessageId=0x386 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_NO_KEYSET -Language=English -The requested keyset does not exist -. - -MessageId=0x387 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_IO_ERROR -Language=English -A communication error with the smart card has been detected. -. - -MessageId=0x388 -Severity=Error -Facility=System -SymbolicName=STATUS_DOWNGRADE_DETECTED -Language=English -The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you. -. - -MessageId=0x389 -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_CERT_REVOKED -Language=English -The smartcard certificate used for authentication has been revoked. -Please contact your system administrator. There may be additional information in the -event log. -. - -MessageId=0x38c -Severity=Error -Facility=System -SymbolicName=STATUS_PKINIT_CLIENT_FAILURE -Language=English -The smartcard certificate used for authentication was not trusted. Please -contact your system administrator. -. - -MessageId=0x38d -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_CERT_EXPIRED -Language=English -The smartcard certificate used for authentication has expired. Please -contact your system administrator. -. - -MessageId=0x38e -Severity=Error -Facility=System -SymbolicName=STATUS_DRIVER_FAILED_PRIOR_UNLOAD -Language=English -The driver could not be installed because a previous version is still loaded. -. - -MessageId=0x38f -Severity=Error -Facility=System -SymbolicName=STATUS_SMARTCARD_SILENT_CONTEXT -Language=English -The smartcard operation requires user interaction but the context was acquired as silent. -. - -MessageId=0x401 -Severity=Error -Facility=System -SymbolicName=STATUS_PER_USER_TRUST_QUOTA_EXCEEDED -Language=English -The quota for delegated trust creation was exceeded for the current user. -. - -MessageId=0x402 -Severity=Error -Facility=System -SymbolicName=STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED -Language=English -The overall quota for delegated trust creation was exceeded. -. - -MessageId=0x403 -Severity=Error -Facility=System -SymbolicName=STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED -Language=English -The quota for delegated trust deletion was exceeded for the current user. -. - -MessageId=0x404 -Severity=Error -Facility=System -SymbolicName=STATUS_DS_NAME_NOT_UNIQUE -Language=English -The specified Directory Services name already exists. -. - -MessageId=0x405 -Severity=Error -Facility=System -SymbolicName=STATUS_DS_DUPLICATE_ID_FOUND -Language=English -The requested object could not be retrieved because the specified identifier is not unique. -. - -MessageId=0x406 -Severity=Error -Facility=System -SymbolicName=STATUS_DS_GROUP_CONVERSION_ERROR -Language=English -The Directory Services group cannot be converted. -. - -MessageId=0x407 -Severity=Error -Facility=System -SymbolicName=STATUS_VOLSNAP_PREPARE_HIBERNATE -Language=English -{Volume Shadow Copy Service} -The volume %hs is busy because it is being prepared for hibernation. -. - -MessageId=0x408 -Severity=Error -Facility=System -SymbolicName=STATUS_USER2USER_REQUIRED -Language=English -The Kerberos User to User protocol is required. -. - -MessageId=0x409 -Severity=Error -Facility=System -SymbolicName=STATUS_STACK_BUFFER_OVERRUN -Language=English -An out-of-bounds access to a stack buffer was detected. This indicates an -error in the application that could be exploited by a malicious user. -. - -MessageId=0x40a -Severity=Error -Facility=System -SymbolicName=STATUS_NO_S4U_PROT_SUPPORT -Language=English -The domain controller does not support the Kerberos Service for User protocol. -. - -MessageId=0x425 -Severity=Error -Facility=System -SymbolicName=STATUS_HIVE_UNLOADED -Language=English -The operation is not valid because the registry hive was unloaded. -. - -MessageId=0x9898 -Severity=Error -Facility=System -SymbolicName=STATUS_WOW_ASSERTION -Language=English -WOW Assertion Error. -. - -MessageId=0xa000 -Severity=Error -Facility=System -SymbolicName=STATUS_INVALID_SIGNATURE -Language=English -The cryptographic signature is invalid. -. - -MessageId=0xa001 -Severity=Error -Facility=System -SymbolicName=STATUS_HMAC_NOT_SUPPORTED -Language=English -Keyed-hash message authentication code (HMAC) is not supported. -. - -MessageId=0xa010 -Severity=Error -Facility=System -SymbolicName=STATUS_IPSEC_QUEUE_OVERFLOW -Language=English -An overflow of the IPSec queue was encountered. -. - -MessageId=0xa011 -Severity=Error -Facility=System -SymbolicName=STATUS_ND_QUEUE_OVERFLOW -Language=English -An overflow of the Neighbor Discovery (NDP) queue was encountered. -. - -MessageId=0xa012 -Severity=Error -Facility=System -SymbolicName=STATUS_HOPLIMIT_EXCEEDED -Language=English -An ICMP "Time Exceeded" error message was received. -. - -MessageId=0xa013 -Severity=Error -Facility=System -SymbolicName=STATUS_PROTOCOL_NOT_SUPPORTED -Language=English -The protocol is not installed. -. - -MessageId=0x1 -Severity=Error -Facility=Debugger -SymbolicName=DBG_NO_STATE_CHANGE -Language=English -Debugger did not perform a state change. -. - -MessageId=0x2 -Severity=Error -Facility=Debugger -SymbolicName=DBG_APP_NOT_IDLE -Language=English -Debugger has found the application is not idle. -. - -MessageId=0x1 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_STRING_BINDING -Language=English -The string binding is invalid. -. - -MessageId=0x2 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_WRONG_KIND_OF_BINDING -Language=English -The binding handle is not the correct type. -. - -MessageId=0x3 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_BINDING -Language=English -The binding handle is invalid. -. - -MessageId=0x4 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_PROTSEQ_NOT_SUPPORTED -Language=English -The RPC protocol sequence is not supported. -. - -MessageId=0x5 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_RPC_PROTSEQ -Language=English -The RPC protocol sequence is invalid. -. - -MessageId=0x6 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_STRING_UUID -Language=English -The string UUID is invalid. -. - -MessageId=0x7 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_ENDPOINT_FORMAT -Language=English -The endpoint format is invalid. -. - -MessageId=0x8 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_NET_ADDR -Language=English -The network address is invalid. -. - -MessageId=0x9 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NO_ENDPOINT_FOUND -Language=English -No endpoint was found. -. - -MessageId=0xc -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_ALREADY_REGISTERED -Language=English -The object UUID has already been registered. -. - -MessageId=0x10 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NOT_LISTENING -Language=English -The RPC server is not listening. -. - -MessageId=0x11 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNKNOWN_MGR_TYPE -Language=English -The manager type is unknown. -. - -MessageId=0x12 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNKNOWN_IF -Language=English -The interface is unknown. -. - -MessageId=0x13 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NO_BINDINGS -Language=English -There are no bindings. -. - -MessageId=0x14 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NO_PROTSEQS -Language=English -There are no protocol sequences. -. - -MessageId=0x15 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_CANT_CREATE_ENDPOINT -Language=English -The endpoint cannot be created. -. - -MessageId=0x16 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_OUT_OF_RESOURCES -Language=English -Not enough resources are available to complete this operation. -. - -MessageId=0x17 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_SERVER_UNAVAILABLE -Language=English -The RPC server is unavailable. -. - -MessageId=0x18 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_SERVER_TOO_BUSY -Language=English -The RPC server is too busy to complete this operation. -. - -MessageId=0x19 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_NETWORK_OPTIONS -Language=English -The network options are invalid. -. - -MessageId=0x1c -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_CALL_FAILED_DNE -Language=English -The remote procedure call failed and did not execute. -. - -MessageId=0x21 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNSUPPORTED_TYPE -Language=English -The type UUID is not supported. -. - -MessageId=0x22 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_TAG -Language=English -The tag is invalid. -. - -MessageId=0x23 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_BOUND -Language=English -The array bounds are invalid. -. - -MessageId=0x24 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NO_ENTRY_NAME -Language=English -The binding does not contain an entry name. -. - -MessageId=0x25 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_NAME_SYNTAX -Language=English -The name syntax is invalid. -. - -MessageId=0x26 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNSUPPORTED_NAME_SYNTAX -Language=English -The name syntax is not supported. -. - -MessageId=0x28 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UUID_NO_ADDRESS -Language=English -No network address is available to use to construct a UUID. -. - -MessageId=0x29 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_DUPLICATE_ENDPOINT -Language=English -The endpoint is a duplicate. -. - -MessageId=0x2c -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_STRING_TOO_LONG -Language=English -The string is too long. -. - -MessageId=0x30 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNKNOWN_AUTHN_SERVICE -Language=English -The authentication service is unknown. -. - -MessageId=0x31 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNKNOWN_AUTHN_LEVEL -Language=English -The authentication level is unknown. -. - -MessageId=0x32 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_AUTH_IDENTITY -Language=English -The security context is invalid. -. - -MessageId=0x33 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNKNOWN_AUTHZ_SERVICE -Language=English -The authorization service is unknown. -. - -MessageId=0x34 -Severity=Error -Facility=RpcRuntime -SymbolicName=EPT_NT_INVALID_ENTRY -Language=English -The entry is invalid. -. - -MessageId=0x35 -Severity=Error -Facility=RpcRuntime -SymbolicName=EPT_NT_CANT_PERFORM_OP -Language=English -The operation cannot be performed. -. - -MessageId=0x36 -Severity=Error -Facility=RpcRuntime -SymbolicName=EPT_NT_NOT_REGISTERED -Language=English -There are no more endpoints available from the endpoint mapper. -. - -MessageId=0x37 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NOTHING_TO_EXPORT -Language=English -No interfaces have been exported. -. - -MessageId=0x38 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INCOMPLETE_NAME -Language=English -The entry name is incomplete. -. - -MessageId=0x39 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_VERS_OPTION -Language=English -The version option is invalid. -. - -MessageId=0x3c -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INTERFACE_NOT_FOUND -Language=English -The interface was not found. -. - -MessageId=0x40 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_NAF_ID -Language=English -The network address family is invalid. -. - -MessageId=0x41 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_CANNOT_SUPPORT -Language=English -The requested operation is not supported. -. - -MessageId=0x42 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NO_CONTEXT_AVAILABLE -Language=English -No security context is available to allow impersonation. -. - -MessageId=0x43 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INTERNAL_ERROR -Language=English -An internal error occurred in RPC. -. - -MessageId=0x44 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_ZERO_DIVIDE -Language=English -The RPC server attempted an integer divide by zero. -. - -MessageId=0x45 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_ADDRESS_ERROR -Language=English -An addressing error occurred in the RPC server. -. - -MessageId=0x46 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_FP_DIV_ZERO -Language=English -A floating point operation at the RPC server caused a divide by zero. -. - -MessageId=0x47 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_FP_UNDERFLOW -Language=English -A floating point underflow occurred at the RPC server. -. - -MessageId=0x48 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_FP_OVERFLOW -Language=English -A floating point overflow occurred at the RPC server. -. - -MessageId=0x49 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_CALL_IN_PROGRESS -Language=English -A remote procedure call is already in progress for this thread. -. - -MessageId=0x4c -Severity=Error -Facility=RpcRuntime -SymbolicName=EPT_NT_CANT_CREATE -Language=English -The endpoint mapper database entry could not be created. -. - -MessageId=0x50 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_CALL_CANCELLED -Language=English -The remote procedure call was cancelled. -. - -MessageId=0x51 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_BINDING_INCOMPLETE -Language=English -The binding handle does not contain all required information. -. - -MessageId=0x52 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_COMM_FAILURE -Language=English -A communications failure occurred during a remote procedure call. -. - -MessageId=0x53 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_UNSUPPORTED_AUTHN_LEVEL -Language=English -The requested authentication level is not supported. -. - -MessageId=0x54 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NO_PRINC_NAME -Language=English -No principal name registered. -. - -MessageId=0x55 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NOT_RPC_ERROR -Language=English -The error specified is not a valid ReactOS RPC error code. -. - -MessageId=0x57 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_SEC_PKG_ERROR -Language=English -A security package specific error occurred. -. - -MessageId=0x58 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_NOT_CANCELLED -Language=English -Thread is not cancelled. -. - -MessageId=0x62 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_ASYNC_HANDLE -Language=English -Invalid asynchronous remote procedure call handle. -. - -MessageId=0x63 -Severity=Error -Facility=RpcRuntime -SymbolicName=RPC_NT_INVALID_ASYNC_CALL -Language=English -Invalid asynchronous RPC call handle for this operation. -. - -MessageId=0x1 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_NO_MORE_ENTRIES -Language=English -The list of RPC servers available for auto-handle binding has been exhausted. -. - -MessageId=0x2 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_CHAR_TRANS_OPEN_FAIL -Language=English -The file designated by DCERPCCHARTRANS cannot be opened. -. - -MessageId=0x3 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_CHAR_TRANS_SHORT_FILE -Language=English -The file containing the character translation table has fewer than 512 bytes. -. - -MessageId=0x4 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_IN_NULL_CONTEXT -Language=English -A null context handle is passed as an [in] parameter. -. - -MessageId=0x5 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_CONTEXT_MISMATCH -Language=English -The context handle does not match any known context handles. -. - -MessageId=0x6 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_CONTEXT_DAMAGED -Language=English -The context handle changed during a call. -. - -MessageId=0x7 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_HANDLES_MISMATCH -Language=English -The binding handles passed to a remote procedure call do not match. -. - -MessageId=0x8 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_SS_CANNOT_GET_CALL_HANDLE -Language=English -The stub is unable to get the call handle. -. - -MessageId=0x9 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_NULL_REF_POINTER -Language=English -A null reference pointer was passed to the stub. -. - -MessageId=0xc -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_BAD_STUB_DATA -Language=English -The stub received bad data. -. - -MessageId=0x59 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_INVALID_ES_ACTION -Language=English -Invalid operation on the encoding/decoding handle. -. - -MessageId=0x5c -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_INVALID_PIPE_OBJECT -Language=English -The RPC pipe object is invalid or corrupted. -. - -MessageId=0x60 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_PIPE_DISCIPLINE_ERROR -Language=English -The RPC call completed before all pipes were processed. -. - -MessageId=0x61 -Severity=Error -Facility=RpcStubs -SymbolicName=RPC_NT_PIPE_EMPTY -Language=English -No more data is available from the RPC pipe. -. - -MessageId=0x35 -Severity=Error -Facility=Io -SymbolicName=STATUS_PNP_BAD_MPS_TABLE -Language=English -A device is missing in the system BIOS MPS table. This device will not be used. -Please contact your system vendor for system BIOS update. -. - -MessageId=0x36 -Severity=Error -Facility=Io -SymbolicName=STATUS_PNP_TRANSLATION_FAILED -Language=English -A translator failed to translate resources. -. - -MessageId=0x37 -Severity=Error -Facility=Io -SymbolicName=STATUS_PNP_IRQ_TRANSLATION_FAILED -Language=English -A IRQ translator failed to translate resources. -. - -MessageId=0x1 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_INVALID_NODE -Language=English -The cluster node is not valid. -. - -MessageId=0x2 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_EXISTS -Language=English -The cluster node already exists. -. - -MessageId=0x3 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_JOIN_IN_PROGRESS -Language=English -A node is in the process of joining the cluster. -. - -MessageId=0x4 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_NOT_FOUND -Language=English -The cluster node was not found. -. - -MessageId=0x5 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND -Language=English -The cluster local node information was not found. -. - -MessageId=0x6 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETWORK_EXISTS -Language=English -The cluster network already exists. -. - -MessageId=0x7 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETWORK_NOT_FOUND -Language=English -The cluster network was not found. -. - -MessageId=0x8 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETINTERFACE_EXISTS -Language=English -The cluster network interface already exists. -. - -MessageId=0x9 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETINTERFACE_NOT_FOUND -Language=English -The cluster network interface was not found. -. - -MessageId=0xc -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_DOWN -Language=English -The cluster node is down. -. - -MessageId=0x10 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_INVALID_NETWORK -Language=English -The cluster network is not valid. -. - -MessageId=0x11 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NO_NET_ADAPTERS -Language=English -No network adapters are available. -. - -MessageId=0x12 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_UP -Language=English -The cluster node is up. -. - -MessageId=0x13 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_PAUSED -Language=English -The cluster node is paused. -. - -MessageId=0x14 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NODE_NOT_PAUSED -Language=English -The cluster node is not paused. -. - -MessageId=0x15 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NO_SECURITY_CONTEXT -Language=English -No cluster security context is available. -. - -MessageId=0x16 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_NETWORK_NOT_INTERNAL -Language=English -The cluster network is not configured for internal cluster communication. -. - -MessageId=0x17 -Severity=Error -Facility=Cluster -SymbolicName=STATUS_CLUSTER_POISONED -Language=English -The cluster node has been poisoned. -. - -MessageId=0x1 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_OPCODE -Language=English -An attempt was made to run an invalid AML opcode -. - -MessageId=0x2 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_STACK_OVERFLOW -Language=English -The AML Interpreter Stack has overflowed -. - -MessageId=0x3 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_ASSERT_FAILED -Language=English -An inconsistent state has occurred -. - -MessageId=0x4 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_INDEX -Language=English -An attempt was made to access an array outside of its bounds -. - -MessageId=0x5 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_ARGUMENT -Language=English -A required argument was not specified -. - -MessageId=0x6 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_FATAL -Language=English -A fatal error has occurred -. - -MessageId=0x7 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_SUPERNAME -Language=English -An invalid SuperName was specified -. - -MessageId=0x8 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_ARGTYPE -Language=English -An argument with an incorrect type was specified -. - -MessageId=0x9 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_OBJTYPE -Language=English -An object with an incorrect type was specified -. - -MessageId=0xc -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_ADDRESS_NOT_MAPPED -Language=English -An address failed to translate -. - -MessageId=0x10 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_REGION -Language=English -An invalid region for the target was specified -. - -MessageId=0x11 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_ACCESS_SIZE -Language=English -An attempt was made to access a field outside of the defined range -. - -MessageId=0x12 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_ACQUIRE_GLOBAL_LOCK -Language=English -The Global system lock could not be acquired -. - -MessageId=0x13 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_ALREADY_INITIALIZED -Language=English -An attempt was made to reinitialize the ACPI subsystem -. - -MessageId=0x14 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_NOT_INITIALIZED -Language=English -The ACPI subsystem has not been initialized -. - -MessageId=0x15 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_MUTEX_LEVEL -Language=English -An incorrect mutex was specified -. - -MessageId=0x16 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_MUTEX_NOT_OWNED -Language=English -The mutex is not currently owned -. - -MessageId=0x17 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_MUTEX_NOT_OWNER -Language=English -An attempt was made to access the mutex by a process that was not the owner -. - -MessageId=0x18 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_RS_ACCESS -Language=English -An error occurred during an access to Region Space -. - -MessageId=0x19 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_INVALID_TABLE -Language=English -An attempt was made to use an incorrect table -. - -MessageId=0x20 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_REG_HANDLER_FAILED -Language=English -The registration of an ACPI event failed -. - -MessageId=0x21 -Severity=Error -Facility=ACPI -SymbolicName=STATUS_ACPI_POWER_REQUEST_FAILED -Language=English -An ACPI Power Object failed to transition state -. - -MessageId=0x1 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_SECTION_NOT_FOUND -Language=English -The requested section is not present in the activation context. -. - -MessageId=0x2 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_CANT_GEN_ACTCTX -Language=English -ReactOS was not able to process the application binding information. -Please refer to your System Event Log for further information. -. - -MessageId=0x3 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_INVALID_ACTCTXDATA_FORMAT -Language=English -The application binding data format is invalid. -. - -MessageId=0x4 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_ASSEMBLY_NOT_FOUND -Language=English -The referenced assembly is not installed on your system. -. - -MessageId=0x5 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_MANIFEST_FORMAT_ERROR -Language=English -The manifest file does not begin with the required tag and format information. -. - -MessageId=0x6 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_MANIFEST_PARSE_ERROR -Language=English -The manifest file contains one or more syntax errors. -. - -MessageId=0x7 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_ACTIVATION_CONTEXT_DISABLED -Language=English -The application attempted to activate a disabled activation context. -. - -MessageId=0x8 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_KEY_NOT_FOUND -Language=English -The requested lookup key was not found in any active activation context. -. - -MessageId=0x9 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_VERSION_CONFLICT -Language=English -A component version required by the application conflicts with another component version already active. -. - -MessageId=0xc -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_ASSEMBLY_MISSING -Language=English -The referenced assembly could not be found. -. - -MessageId=0x10 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_INVALID_DEACTIVATION -Language=English -The activation context being deactivated is not active for the current thread of execution. -. - -MessageId=0x11 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_MULTIPLE_DEACTIVATION -Language=English -The activation context being deactivated has already been deactivated. -. - -MessageId=0x12 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY -Language=English -The activation context of system default assembly could not be generated. -. - -MessageId=0x13 -Severity=Error -Facility=SXS -SymbolicName=STATUS_SXS_PROCESS_TERMINATION_REQUESTED -Language=English -A component used by the isolation facility has requested to terminate the process. -. +MessageIdTypedef=NTSTATUS +SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS +Informational=0x1:STATUS_SEVERITY_INFORMATIONAL +Warning=0x2:STATUS_SEVERITY_WARNING +Error=0x3:STATUS_SEVERITY_ERROR +) + +FacilityNames=(System=0x0 +Debugger=0x1:FACILITY_DEBUGGER +RpcRuntime=0x2:FACILITY_RPC_RUNTIME +RpcStubs=0x3:FACILITY_RPC_STUBS +Io=0x4:FACILITY_IO_ERROR_CODE +CTX=0xa:FACILITY_TERMINAL_SERVER +USB=0x10:FACILITY_USB_ERROR_CODE +HID=0x11:FACILITY_HID_ERROR_CODE +FIREWIRE=0x12:FACILITY_FIREWIRE_ERROR_CODE +Cluster=0x13:FACILITY_CLUSTER_ERROR_CODE +ACPI=0x14:FACILITY_ACPI_ERROR_CODE +SXS=0x15:FACILITY_SXS_ERROR_CODE +) +LanguageNames=(English=0x409:MSG00409) + +MessageId=0x00 +Severity=Success +Facility=System +SymbolicName=STATUS_WAIT_0 +Language=English +STATUS_WAIT_0 +. + +MessageId=0x01 +Severity=Success +Facility=System +SymbolicName=STATUS_WAIT_1 +Language=English +STATUS_WAIT_1 +. + +MessageId=0x02 +Severity=Success +Facility=System +SymbolicName=STATUS_WAIT_2 +Language=English +STATUS_WAIT_2 +. + +MessageId=0x03 +Severity=Success +Facility=System +SymbolicName=STATUS_WAIT_3 +Language=English +STATUS_WAIT_3 +. + +MessageId=0x80 +Severity=Success +Facility=System +SymbolicName=STATUS_ABANDONED +Language=English +STATUS_ABANDONED_WAIT_0 +. + +MessageId=0xc0 +Severity=Success +Facility=System +SymbolicName=STATUS_USER_APC +Language=English +STATUS_USER_APC +. + +MessageId=0x100 +Severity=Success +Facility=System +SymbolicName=STATUS_KERNEL_APC +Language=English +STATUS_KERNEL_APC +. + +MessageId=0x101 +Severity=Success +Facility=System +SymbolicName=STATUS_ALERTED +Language=English +STATUS_ALERTED +. + +MessageId=0x102 +Severity=Success +Facility=System +SymbolicName=STATUS_TIMEOUT +Language=English +STATUS_TIMEOUT +. + +MessageId=0x103 +Severity=Success +Facility=System +SymbolicName=STATUS_PENDING +Language=English +The operation that was requested is pending completion. +. + +MessageId=0x104 +Severity=Success +Facility=System +SymbolicName=STATUS_REPARSE +Language=English +A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. +. + +MessageId=0x105 +Severity=Success +Facility=System +SymbolicName=STATUS_MORE_ENTRIES +Language=English +Returned by enumeration APIs to indicate more information is available to successive calls. +. + +MessageId=0x106 +Severity=Success +Facility=System +SymbolicName=STATUS_NOT_ALL_ASSIGNED +Language=English +Indicates not all privileges referenced are assigned to the caller. +This allows, for example, all privileges to be disabled without having to know exactly which privileges are assigned. +. + +MessageId=0x107 +Severity=Success +Facility=System +SymbolicName=STATUS_SOME_NOT_MAPPED +Language=English +Some of the information to be translated has not been translated. +. + +MessageId=0x108 +Severity=Success +Facility=System +SymbolicName=STATUS_OPLOCK_BREAK_IN_PROGRESS +Language=English +An open/create operation completed while an oplock break is underway. +. + +MessageId=0x109 +Severity=Success +Facility=System +SymbolicName=STATUS_VOLUME_MOUNTED +Language=English +A new volume has been mounted by a file system. +. + +MessageId=0x10c +Severity=Success +Facility=System +SymbolicName=STATUS_NOTIFY_ENUM_DIR +Language=English +This indicates that a notify change request is being completed and that the information is not being returned in the caller's buffer. +The caller now needs to enumerate the files to find the changes. +. + +MessageId=0x110 +Severity=Success +Facility=System +SymbolicName=STATUS_PAGE_FAULT_TRANSITION +Language=English +Page fault was a transition fault. +. + +MessageId=0x111 +Severity=Success +Facility=System +SymbolicName=STATUS_PAGE_FAULT_DEMAND_ZERO +Language=English +Page fault was a demand zero fault. +. + +MessageId=0x112 +Severity=Success +Facility=System +SymbolicName=STATUS_PAGE_FAULT_COPY_ON_WRITE +Language=English +Page fault was a demand zero fault. +. + +MessageId=0x113 +Severity=Success +Facility=System +SymbolicName=STATUS_PAGE_FAULT_GUARD_PAGE +Language=English +Page fault was a demand zero fault. +. + +MessageId=0x114 +Severity=Success +Facility=System +SymbolicName=STATUS_PAGE_FAULT_PAGING_FILE +Language=English +Page fault was satisfied by reading from a secondary storage device. +. + +MessageId=0x115 +Severity=Success +Facility=System +SymbolicName=STATUS_CACHE_PAGE_LOCKED +Language=English +Cached page was locked during operation. +. + +MessageId=0x116 +Severity=Success +Facility=System +SymbolicName=STATUS_CRASH_DUMP +Language=English +Crash dump exists in paging file. +. + +MessageId=0x117 +Severity=Success +Facility=System +SymbolicName=STATUS_BUFFER_ALL_ZEROS +Language=English +Specified buffer contains all zeros. +. + +MessageId=0x118 +Severity=Success +Facility=System +SymbolicName=STATUS_REPARSE_OBJECT +Language=English +A reparse should be performed by the Object Manager since the name of the file resulted in a symbolic link. +. + +MessageId=0x119 +Severity=Success +Facility=System +SymbolicName=STATUS_RESOURCE_REQUIREMENTS_CHANGED +Language=English +The device has succeeded a query-stop and its resource requirements have changed. +. + +MessageId=0x120 +Severity=Success +Facility=System +SymbolicName=STATUS_TRANSLATION_COMPLETE +Language=English +The translator has translated these resources into the global space and no further translations should be performed. +. + +MessageId=0x121 +Severity=Success +Facility=System +SymbolicName=STATUS_DS_MEMBERSHIP_EVALUATED_LOCALLY +Language=English +The directory service evaluated group memberships locally, as it was unable to contact a global catalog server. +. + +MessageId=0x122 +Severity=Success +Facility=System +SymbolicName=STATUS_NOTHING_TO_TERMINATE +Language=English +A process being terminated has no threads to terminate. +. + +MessageId=0x123 +Severity=Success +Facility=System +SymbolicName=STATUS_PROCESS_NOT_IN_JOB +Language=English +The specified process is not part of a job. +. + +MessageId=0x124 +Severity=Success +Facility=System +SymbolicName=STATUS_PROCESS_IN_JOB +Language=English +The specified process is part of a job. +. + +MessageId=0x125 +Severity=Success +Facility=System +SymbolicName=STATUS_VOLSNAP_HIBERNATE_READY +Language=English +{Volume Shadow Copy Service} +The system is now ready for hibernation. +. + +MessageId=0x126 +Severity=Success +Facility=System +SymbolicName=STATUS_FSFILTER_OP_COMPLETED_SUCCESSFULLY +Language=English +A file system or file system filter driver has successfully completed an FsFilter operation. +. + +MessageId=0x367 +Severity=Success +Facility=System +SymbolicName=STATUS_WAIT_FOR_OPLOCK +Language=English +An operation is blocked waiting for an oplock. +. + +MessageId=0x1 +Severity=Success +Facility=Debugger +SymbolicName=DBG_EXCEPTION_HANDLED +Language=English +Debugger handled exception +. + +MessageId=0x2 +Severity=Success +Facility=Debugger +SymbolicName=DBG_CONTINUE +Language=English +Debugger continued +. + +MessageId=0x0 +Severity=Informational +Facility=System +SymbolicName=STATUS_OBJECT_NAME_EXISTS +Language=English +{Object Exists} +An attempt was made to create an object and the object name already existed. +. + +MessageId=0x1 +Severity=Informational +Facility=System +SymbolicName=STATUS_THREAD_WAS_SUSPENDED +Language=English +{Thread Suspended} +A thread termination occurred while the thread was suspended. The thread was resumed, and termination proceeded. +. + +MessageId=0x2 +Severity=Informational +Facility=System +SymbolicName=STATUS_WORKING_SET_LIMIT_RANGE +Language=English +{Working Set Range Error} +An attempt was made to set the working set minimum or maximum to values which are outside of the allowable range. +. + +MessageId=0x3 +Severity=Informational +Facility=System +SymbolicName=STATUS_IMAGE_NOT_AT_BASE +Language=English +{Image Relocated} +An image file could not be mapped at the address specified in the image file. Local fixups must be performed on this image. +. + +MessageId=0x4 +Severity=Informational +Facility=System +SymbolicName=STATUS_RXACT_STATE_CREATED +Language=English +This informational level status indicates that a specified registry sub-tree transaction state did not yet exist and had to be created. +. + +MessageId=0x5 +Severity=Informational +Facility=System +SymbolicName=STATUS_SEGMENT_NOTIFICATION +Language=English +{Segment Load} +A virtual DOS machine (VDM) is loading, unloading, or moving an MS-DOS or Win16 program segment image. +An exception is raised so a debugger can load, unload or track symbols and breakpoints within these 16-bit segments. +. + +MessageId=0x6 +Severity=Informational +Facility=System +SymbolicName=STATUS_LOCAL_USER_SESSION_KEY +Language=English +{Local Session Key} +A user session key was requested for a local RPC connection. The session key returned is a constant value and not unique to this connection. +. + +MessageId=0x7 +Severity=Informational +Facility=System +SymbolicName=STATUS_BAD_CURRENT_DIRECTORY +Language=English +{Invalid Current Directory} +The process cannot switch to the startup current directory %hs. +Select OK to set current directory to %hs, or select CANCEL to exit. +. + +MessageId=0x8 +Severity=Informational +Facility=System +SymbolicName=STATUS_SERIAL_MORE_WRITES +Language=English +{Serial IOCTL Complete} +A serial I/O operation was completed by another write to a serial port. +(The IOCTL_SERIAL_XOFF_COUNTER reached zero.) +. + +MessageId=0x9 +Severity=Informational +Facility=System +SymbolicName=STATUS_REGISTRY_RECOVERED +Language=English +{Registry Recovery} +One of the files containing the system's Registry data had to be recovered by use of a log or alternate copy. +The recovery was successful. +. + +MessageId=0xa +Severity=Informational +Facility=System +SymbolicName=STATUS_FT_READ_RECOVERY_FROM_BACKUP +Language=English +{Redundant Read} +To satisfy a read request, the Windows NT fault-tolerant file system successfully read the requested data from a redundant copy. +This was done because the file system encountered a failure on a member of the fault-tolerant volume but was unable to reassign the failing area of the device. +. + +MessageId=0xb +Severity=Informational +Facility=System +SymbolicName=STATUS_FT_WRITE_RECOVERY +Language=English +{Redundant Write} +To satisfy a write request, the Windows NT fault-tolerant file system successfully wrote a redundant copy of the information. +This was done because the file system encountered a failure on a member of the fault-tolerant volume but was unable to reassign the failing area of the device. +. + +MessageId=0xc +Severity=Informational +Facility=System +SymbolicName=STATUS_SERIAL_COUNTER_TIMEOUT +Language=English +{Serial IOCTL Timeout} +A serial I/O operation completed because the time-out period expired. +(The IOCTL_SERIAL_XOFF_COUNTER had not reached zero.) +. + +MessageId=0xd +Severity=Informational +Facility=System +SymbolicName=STATUS_NULL_LM_PASSWORD +Language=English +{Password Too Complex} +The Windows password is too complex to be converted to a LAN Manager password. The LAN Manager password that returned is a NULL string. +. + +MessageId=0xe +Severity=Informational +Facility=System +SymbolicName=STATUS_IMAGE_MACHINE_TYPE_MISMATCH +Language=English +{Machine Type Mismatch} +The image file %hs is valid, but is for a machine type other than the current machine. +. + +MessageId=0xf +Severity=Informational +Facility=System +SymbolicName=STATUS_RECEIVE_PARTIAL +Language=English +{Partial Data Received} +The network transport returned partial data to its client. The remaining data will be sent later. +. + +MessageId=0x10 +Severity=Informational +Facility=System +SymbolicName=STATUS_RECEIVE_EXPEDITED +Language=English +{Expedited Data Received} +The network transport returned data to its client that was marked as expedited by the remote system. +. + +MessageId=0x11 +Severity=Informational +Facility=System +SymbolicName=STATUS_RECEIVE_PARTIAL_EXPEDITED +Language=English +{Partial Expedited Data Received} +The network transport returned partial data to its client and this data was marked as expedited by the remote system. The remaining data will be sent later. +. + +MessageId=0x12 +Severity=Informational +Facility=System +SymbolicName=STATUS_EVENT_DONE +Language=English +{TDI Event Done} +The TDI indication has completed successfully. +. + +MessageId=0x13 +Severity=Informational +Facility=System +SymbolicName=STATUS_EVENT_PENDING +Language=English +{TDI Event Pending} +The TDI indication has entered the pending state. +. + +MessageId=0x14 +Severity=Informational +Facility=System +SymbolicName=STATUS_CHECKING_FILE_SYSTEM +Language=English +Checking file system on %wZ +. + +MessageId=0x15 +Severity=Informational +Facility=System +SymbolicName=STATUS_FATAL_APP_EXIT +Language=English +{Fatal Application Exit} +%hs +. + +MessageId=0x16 +Severity=Informational +Facility=System +SymbolicName=STATUS_PREDEFINED_HANDLE +Language=English +The specified registry key is referenced by a predefined handle. +. + +MessageId=0x17 +Severity=Informational +Facility=System +SymbolicName=STATUS_WAS_UNLOCKED +Language=English +{Page Unlocked} +The page protection of a locked page was changed to 'No Access' and the page was unlocked from memory and from the process. +. + +MessageId=0x18 +Severity=Informational +Facility=System +SymbolicName=STATUS_SERVICE_NOTIFICATION +Language=English +%hs +. + +MessageId=0x19 +Severity=Informational +Facility=System +SymbolicName=STATUS_WAS_LOCKED +Language=English +{Page Locked} +One of the pages to lock was already locked. +. + +MessageId=0x1c +Severity=Informational +Facility=System +SymbolicName=STATUS_WX86_UNSIMULATE +Language=English +Exception status code used by Win32 x86 emulation subsystem. +. + +MessageId=0x20 +Severity=Informational +Facility=System +SymbolicName=STATUS_WX86_EXCEPTION_CONTINUE +Language=English +Exception status code used by Win32 x86 emulation subsystem. +. + +MessageId=0x21 +Severity=Informational +Facility=System +SymbolicName=STATUS_WX86_EXCEPTION_LASTCHANCE +Language=English +Exception status code used by Win32 x86 emulation subsystem. +. + +MessageId=0x22 +Severity=Informational +Facility=System +SymbolicName=STATUS_WX86_EXCEPTION_CHAIN +Language=English +Exception status code used by Win32 x86 emulation subsystem. +. + +MessageId=0x23 +Severity=Informational +Facility=System +SymbolicName=STATUS_IMAGE_MACHINE_TYPE_MISMATCH_EXE +Language=English +{Machine Type Mismatch} +The image file %hs is valid, but is for a machine type other than the current machine. +. + +MessageId=0x24 +Severity=Informational +Facility=System +SymbolicName=STATUS_NO_YIELD_PERFORMED +Language=English +A yield execution was performed and no thread was available to run. +. + +MessageId=0x25 +Severity=Informational +Facility=System +SymbolicName=STATUS_TIMER_RESUME_IGNORED +Language=English +The resumable flag to a timer API was ignored. +. + +MessageId=0x26 +Severity=Informational +Facility=System +SymbolicName=STATUS_ARBITRATION_UNHANDLED +Language=English +The arbiter has deferred arbitration of these resources to its parent +. + +MessageId=0x27 +Severity=Informational +Facility=System +SymbolicName=STATUS_CARDBUS_NOT_SUPPORTED +Language=English +The device "%hs" has detected a CardBus card in its slot, but the firmware on this system is not configured to allow the CardBus controller to be run in CardBus mode. +The operating system will currently accept only 16-bit (R2) pc-cards on this controller. +. + +MessageId=0x28 +Severity=Informational +Facility=System +SymbolicName=STATUS_WX86_CREATEWX86TIB +Language=English +Exception status code used by Win32 x86 emulation subsystem. +. + +MessageId=0x29 +Severity=Informational +Facility=System +SymbolicName=STATUS_MP_PROCESSOR_MISMATCH +Language=English +The CPUs in this multiprocessor system are not all the same revision level. To use all processors the operating system restricts itself to the features of the least capable processor in the system. Should problems occur with this system, contact +the CPU manufacturer to see if this mix of processors is supported. +. + +MessageId=0x294 +Severity=Informational +Facility=System +SymbolicName=STATUS_WAKE_SYSTEM +Language=English +The system has awoken +. + +MessageId=0x370 +Severity=Informational +Facility=System +SymbolicName=STATUS_DS_SHUTTING_DOWN +Language=English +The Directory Service is shuting down. +. + +MessageId=0x1 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_REPLY_LATER +Language=English +Debugger will reply later. +. + +MessageId=0x2 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_UNABLE_TO_PROVIDE_HANDLE +Language=English +Debugger can not provide handle. +. + +MessageId=0x3 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_TERMINATE_THREAD +Language=English +Debugger terminated thread. +. + +MessageId=0x4 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_TERMINATE_PROCESS +Language=English +Debugger terminated process. +. + +MessageId=0x5 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_CONTROL_C +Language=English +Debugger got control C. +. + +MessageId=0x6 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_PRINTEXCEPTION_C +Language=English +Debugger printed exception on control C. +. + +MessageId=0x7 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_RIPEXCEPTION +Language=English +Debugger received RIP exception. +. + +MessageId=0x8 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_CONTROL_BREAK +Language=English +Debugger received control break. +. + +MessageId=0x9 +Severity=Informational +Facility=Debugger +SymbolicName=DBG_COMMAND_EXCEPTION +Language=English +Debugger command communication exception. +. + +MessageId=0x56 +Severity=Informational +Facility=RpcRuntime +SymbolicName=RPC_NT_UUID_LOCAL_ONLY +Language=English +A UUID that is valid only on this computer has been allocated. +. + +MessageId=0x1 +Severity=Warning +Facility=System +SymbolicName=STATUS_GUARD_PAGE_VIOLATION +Language=English +{EXCEPTION} +Guard Page Exception +A page of memory that marks the end of a data structure, such as a stack or an array, has been accessed. +. + +MessageId=0x2 +Severity=Warning +Facility=System +SymbolicName=STATUS_DATATYPE_MISALIGNMENT +Language=English +{EXCEPTION} +Alignment Fault +A datatype misalignment was detected in a load or store instruction. +. + +MessageId=0x3 +Severity=Warning +Facility=System +SymbolicName=STATUS_BREAKPOINT +Language=English +{EXCEPTION} +Breakpoint +A breakpoint has been reached. +. + +MessageId=0x4 +Severity=Warning +Facility=System +SymbolicName=STATUS_SINGLE_STEP +Language=English +{EXCEPTION} +Single Step +A single step or trace operation has just been completed. +. + +MessageId=0x5 +Severity=Warning +Facility=System +SymbolicName=STATUS_BUFFER_OVERFLOW +Language=English +{Buffer Overflow} +The data was too large to fit into the specified buffer. +. + +MessageId=0x6 +Severity=Warning +Facility=System +SymbolicName=STATUS_NO_MORE_FILES +Language=English +{No More Files} +No more files were found which match the file specification. +. + +MessageId=0x7 +Severity=Warning +Facility=System +SymbolicName=STATUS_WAKE_SYSTEM_DEBUGGER +Language=English +{Kernel Debugger Awakened} +the system debugger was awakened by an interrupt. +. + +MessageId=0xc +Severity=Warning +Facility=System +SymbolicName=STATUS_GUID_SUBSTITUTION_MADE +Language=English +{GUID Substitution} +During the translation of a global identifier (GUID) to a ReactOS security ID (SID), no administratively-defined GUID prefix was found. +A substitute prefix was used, which will not compromise system security. +However, this may provide a more restrictive access than intended. +. + +MessageId=0x10 +Severity=Warning +Facility=System +SymbolicName=STATUS_DEVICE_OFF_LINE +Language=English +{Device Offline} +The printer has been taken offline. +. + +MessageId=0x11 +Severity=Warning +Facility=System +SymbolicName=STATUS_DEVICE_BUSY +Language=English +{Device Busy} +The device is currently busy. +. + +MessageId=0x12 +Severity=Warning +Facility=System +SymbolicName=STATUS_NO_MORE_EAS +Language=English +{No More EAs} +No more extended attributes (EAs) were found for the file. +. + +MessageId=0x13 +Severity=Warning +Facility=System +SymbolicName=STATUS_INVALID_EA_NAME +Language=English +{Illegal EA} +The specified extended attribute (EA) name contains at least one illegal character. +. + +MessageId=0x14 +Severity=Warning +Facility=System +SymbolicName=STATUS_EA_LIST_INCONSISTENT +Language=English +{Inconsistent EA List} +The extended attribute (EA) list is inconsistent. +. + +MessageId=0x15 +Severity=Warning +Facility=System +SymbolicName=STATUS_INVALID_EA_FLAG +Language=English +{Invalid EA Flag} +An invalid extended attribute (EA) flag was set. +. + +MessageId=0x16 +Severity=Warning +Facility=System +SymbolicName=STATUS_VERIFY_REQUIRED +Language=English +{Verifying Disk} +The media has changed and a verify operation is in progress so no reads or writes may be performed to the device, except those used in the verify operation. +. + +MessageId=0x17 +Severity=Warning +Facility=System +SymbolicName=STATUS_EXTRANEOUS_INFORMATION +Language=English +{Too Much Information} +The specified access control list (ACL) contained more information than was expected. +. + +MessageId=0x18 +Severity=Warning +Facility=System +SymbolicName=STATUS_RXACT_COMMIT_NECESSARY +Language=English +This warning level status indicates that the transaction state already exists for the registry sub-tree, but that a transaction commit was previously aborted. +The commit has NOT been completed, but has not been rolled back either (so it may still be committed if desired). +. + +MessageId=0x1c +Severity=Warning +Facility=System +SymbolicName=STATUS_MEDIA_CHANGED +Language=English +{Media Changed} +The media may have changed. +. + +MessageId=0x20 +Severity=Warning +Facility=System +SymbolicName=STATUS_MEDIA_CHECK +Language=English +{Media Changed} +The media may have changed. +. + +MessageId=0x21 +Severity=Warning +Facility=System +SymbolicName=STATUS_SETMARK_DETECTED +Language=English +A tape access reached a setmark. +. + +MessageId=0x22 +Severity=Warning +Facility=System +SymbolicName=STATUS_NO_DATA_DETECTED +Language=English +During a tape access, the end of the data written is reached. +. + +MessageId=0x23 +Severity=Warning +Facility=System +SymbolicName=STATUS_REDIRECTOR_HAS_OPEN_HANDLES +Language=English +The redirector is in use and cannot be unloaded. +. + +MessageId=0x24 +Severity=Warning +Facility=System +SymbolicName=STATUS_SERVER_HAS_OPEN_HANDLES +Language=English +The server is in use and cannot be unloaded. +. + +MessageId=0x25 +Severity=Warning +Facility=System +SymbolicName=STATUS_ALREADY_DISCONNECTED +Language=English +The specified connection has already been disconnected. +. + +MessageId=0x26 +Severity=Warning +Facility=System +SymbolicName=STATUS_LONGJUMP +Language=English +A long jump has been executed. +. + +MessageId=0x27 +Severity=Warning +Facility=System +SymbolicName=STATUS_CLEANER_CARTRIDGE_INSTALLED +Language=English +A cleaner cartridge is present in the tape library. +. + +MessageId=0x28 +Severity=Warning +Facility=System +SymbolicName=STATUS_PLUGPLAY_QUERY_VETOED +Language=English +The Plug and Play query operation was not successful. +. + +MessageId=0x29 +Severity=Warning +Facility=System +SymbolicName=STATUS_UNWIND_CONSOLIDATE +Language=English +A frame consolidation has been executed. +. + +MessageId=0x288 +Severity=Warning +Facility=System +SymbolicName=STATUS_DEVICE_REQUIRES_CLEANING +Language=English +The device has indicated that cleaning is necessary. +. + +MessageId=0x289 +Severity=Warning +Facility=System +SymbolicName=STATUS_DEVICE_DOOR_OPEN +Language=English +The device has indicated that it's door is open. Further operations require it closed and secured. +. + +MessageId=0x1 +Severity=Warning +Facility=Debugger +SymbolicName=DBG_EXCEPTION_NOT_HANDLED +Language=English +Debugger did not handle the exception. +. + +MessageId=0x1 +Severity=Warning +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_ALREADY_UP +Language=English +The cluster node is already up. +. + +MessageId=0x2 +Severity=Warning +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_ALREADY_DOWN +Language=English +The cluster node is already down. +. + +MessageId=0x3 +Severity=Warning +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETWORK_ALREADY_ONLINE +Language=English +The cluster network is already online. +. + +MessageId=0x4 +Severity=Warning +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETWORK_ALREADY_OFFLINE +Language=English +The cluster network is already offline. +. + +MessageId=0x5 +Severity=Warning +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_ALREADY_MEMBER +Language=English +The cluster node is already a member of the cluster. +. + +MessageId=0x1 +Severity=Error +Facility=System +SymbolicName=STATUS_UNSUCCESSFUL +Language=English +{Operation Failed} +The requested operation was unsuccessful. +. + +MessageId=0x2 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_IMPLEMENTED +Language=English +{Not Implemented} +The requested operation is not implemented. +. + +MessageId=0x3 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_INFO_CLASS +Language=English +{Invalid Parameter} +The specified information class is not a valid information class for the specified object. +. + +MessageId=0x4 +Severity=Error +Facility=System +SymbolicName=STATUS_INFO_LENGTH_MISMATCH +Language=English +The specified information record length does not match the length required for the specified information class. +. + +MessageId=0x5 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCESS_VIOLATION +Language=English +The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be "%s". +. + +MessageId=0x6 +Severity=Error +Facility=System +SymbolicName=STATUS_IN_PAGE_ERROR +Language=English +The instruction at "0x%08lx" referenced memory at "0x%08lx". The required data was not placed into memory because of an I/O error status of "0x%08lx". +. + +MessageId=0x7 +Severity=Error +Facility=System +SymbolicName=STATUS_PAGEFILE_QUOTA +Language=English +The pagefile quota for the process has been exhausted. +. + +MessageId=0x8 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_HANDLE +Language=English +An invalid HANDLE was specified. +. + +MessageId=0x9 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_INITIAL_STACK +Language=English +An invalid initial stack was specified in a call to NtCreateThread. +. + +MessageId=0xc +Severity=Error +Facility=System +SymbolicName=STATUS_TIMER_NOT_CANCELED +Language=English +An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine. +. + +MessageId=0x10 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_DEVICE_REQUEST +Language=English +The specified request is not a valid operation for the target device. +. + +MessageId=0x11 +Severity=Error +Facility=System +SymbolicName=STATUS_END_OF_FILE +Language=English +The end-of-file marker has been reached. There is no valid data in the file beyond this marker. +. + +MessageId=0x12 +Severity=Error +Facility=System +SymbolicName=STATUS_WRONG_VOLUME +Language=English +{Wrong Volume} +The wrong volume is in the drive. +Please insert volume %hs into drive %hs. +. + +MessageId=0x13 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_MEDIA_IN_DEVICE +Language=English +{No Disk} +There is no disk in the drive. +Please insert a disk into drive %hs. +. + +MessageId=0x14 +Severity=Error +Facility=System +SymbolicName=STATUS_UNRECOGNIZED_MEDIA +Language=English +{Unknown Disk Format} +The disk in drive %hs is not formatted properly. +Please check the disk, and reformat if necessary. +. + +MessageId=0x15 +Severity=Error +Facility=System +SymbolicName=STATUS_NONEXISTENT_SECTOR +Language=English +{Sector Not Found} +The specified sector does not exist. +. + +MessageId=0x16 +Severity=Error +Facility=System +SymbolicName=STATUS_MORE_PROCESSING_REQUIRED +Language=English +{Still Busy} +The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete. +. + +MessageId=0x17 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_MEMORY +Language=English +{Not Enough Quota} +Not enough virtual memory or paging file quota is available to complete the specified operation. +. + +MessageId=0x18 +Severity=Error +Facility=System +SymbolicName=STATUS_CONFLICTING_ADDRESSES +Language=English +{Conflicting Address Range} +The specified address range conflicts with the address space. +. + +MessageId=0x19 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_MAPPED_VIEW +Language=English +Address range to unmap is not a mapped view. +. + +MessageId=0x1c +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_SYSTEM_SERVICE +Language=English +An invalid system service was specified in a system service call. +. + +MessageId=0x20 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_FILE_FOR_SECTION +Language=English +{Bad File} +The attributes of the specified mapping file for a section of memory cannot be read. +. + +MessageId=0x21 +Severity=Error +Facility=System +SymbolicName=STATUS_ALREADY_COMMITTED +Language=English +{Already Committed} +The specified address range is already committed. +. + +MessageId=0x22 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCESS_DENIED +Language=English +{Access Denied} +A process has requested access to an object, but has not been granted those access rights. +. + +MessageId=0x23 +Severity=Error +Facility=System +SymbolicName=STATUS_BUFFER_TOO_SMALL +Language=English +{Buffer Too Small} +The buffer is too small to contain the entry. No information has been written to the buffer. +. + +MessageId=0x24 +Severity=Error +Facility=System +SymbolicName=STATUS_OBJECT_TYPE_MISMATCH +Language=English +{Wrong Type} +There is a mismatch between the type of object required by the requested operation and the type of object that is specified in the request. +. + +MessageId=0x25 +Severity=Error +Facility=System +SymbolicName=STATUS_NONCONTINUABLE_EXCEPTION +Language=English +{EXCEPTION} +Cannot Continue +ReactOS cannot continue from this exception. +. + +MessageId=0x26 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_DISPOSITION +Language=English +An invalid exception disposition was returned by an exception handler. +. + +MessageId=0x27 +Severity=Error +Facility=System +SymbolicName=STATUS_UNWIND +Language=English +Unwind exception code. +. + +MessageId=0x28 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_STACK +Language=English +An invalid or unaligned stack was encountered during an unwind operation. +. + +MessageId=0x29 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_UNWIND_TARGET +Language=English +An invalid unwind target was encountered during an unwind operation. +. + +MessageId=0x2c +Severity=Error +Facility=System +SymbolicName=STATUS_UNABLE_TO_DECOMMIT_VM +Language=English +An attempt was made to decommit uncommitted virtual memory. +. + +MessageId=0x30 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_PARAMETER_MIX +Language=English +An invalid combination of parameters was specified. +. + +MessageId=0x31 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_QUOTA_LOWER +Language=English +An attempt was made to lower a quota limit below the current usage. +. + +MessageId=0x32 +Severity=Error +Facility=System +SymbolicName=STATUS_DISK_CORRUPT_ERROR +Language=English +{Corrupt Disk} +The file system structure on the disk is corrupt and unusable. +Please run the Chkdsk utility on the volume %hs. +. + +MessageId=0x33 +Severity=Error +Facility=System +SymbolicName=STATUS_OBJECT_NAME_INVALID +Language=English +Object Name invalid. +. + +MessageId=0x34 +Severity=Error +Facility=System +SymbolicName=STATUS_OBJECT_NAME_NOT_FOUND +Language=English +Object Name not found. +. + +MessageId=0x35 +Severity=Error +Facility=System +SymbolicName=STATUS_OBJECT_NAME_COLLISION +Language=English +Object Name already exists. +. + +MessageId=0x37 +Severity=Error +Facility=System +SymbolicName=STATUS_PORT_DISCONNECTED +Language=English +Attempt to send a message to a disconnected communication port. +. + +MessageId=0x38 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_ALREADY_ATTACHED +Language=English +An attempt was made to attach to a device that was already attached to another device. +. + +MessageId=0x39 +Severity=Error +Facility=System +SymbolicName=STATUS_OBJECT_PATH_INVALID +Language=English +Object Path Component was not a directory object. +. + +MessageId=0x3c +Severity=Error +Facility=System +SymbolicName=STATUS_DATA_OVERRUN +Language=English +{Data Overrun} +A data overrun error occurred. +. + +MessageId=0x40 +Severity=Error +Facility=System +SymbolicName=STATUS_SECTION_TOO_BIG +Language=English +{Section Too Large} +The specified section is too big to map the file. +. + +MessageId=0x41 +Severity=Error +Facility=System +SymbolicName=STATUS_PORT_CONNECTION_REFUSED +Language=English +The NtConnectPort request is refused. +. + +MessageId=0x42 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_PORT_HANDLE +Language=English +The type of port handle is invalid for the operation requested. +. + +MessageId=0x43 +Severity=Error +Facility=System +SymbolicName=STATUS_SHARING_VIOLATION +Language=English +A file cannot be opened because the share access flags are incompatible. +. + +MessageId=0x44 +Severity=Error +Facility=System +SymbolicName=STATUS_QUOTA_EXCEEDED +Language=English +Insufficient quota exists to complete the operation +. + +MessageId=0x45 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_PAGE_PROTECTION +Language=English +The specified page protection was not valid. +. + +MessageId=0x46 +Severity=Error +Facility=System +SymbolicName=STATUS_MUTANT_NOT_OWNED +Language=English +An attempt to release a mutant object was made by a thread that was not the owner of the mutant object. +. + +MessageId=0x47 +Severity=Error +Facility=System +SymbolicName=STATUS_SEMAPHORE_LIMIT_EXCEEDED +Language=English +An attempt was made to release a semaphore such that its maximum count would have been exceeded. +. + +MessageId=0x48 +Severity=Error +Facility=System +SymbolicName=STATUS_PORT_ALREADY_SET +Language=English +An attempt to set a processes DebugPort or ExceptionPort was made, but a port already exists in the process or +an attempt to set a file's CompletionPort made, but a port was already set in the file. +. + +MessageId=0x49 +Severity=Error +Facility=System +SymbolicName=STATUS_SECTION_NOT_IMAGE +Language=English +An attempt was made to query image information on a section which does not map an image. +. + +MessageId=0x4c +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_WORKING_SET_LIMIT +Language=English +An attempt was made to set the working set limit to an invalid value (minimum greater than maximum, etc). +. + +MessageId=0x50 +Severity=Error +Facility=System +SymbolicName=STATUS_EA_TOO_LARGE +Language=English +An EA operation failed because EA set is too large. +. + +MessageId=0x51 +Severity=Error +Facility=System +SymbolicName=STATUS_NONEXISTENT_EA_ENTRY +Language=English +An EA operation failed because the name or EA index is invalid. +. + +MessageId=0x52 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_EAS_ON_FILE +Language=English +The file for which EAs were requested has no EAs. +. + +MessageId=0x53 +Severity=Error +Facility=System +SymbolicName=STATUS_EA_CORRUPT_ERROR +Language=English +The EA is corrupt and non-readable. +. + +MessageId=0x54 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_LOCK_CONFLICT +Language=English +A requested read/write cannot be granted due to a conflicting file lock. +. + +MessageId=0x55 +Severity=Error +Facility=System +SymbolicName=STATUS_LOCK_NOT_GRANTED +Language=English +A requested file lock cannot be granted due to other existing locks. +. + +MessageId=0x56 +Severity=Error +Facility=System +SymbolicName=STATUS_DELETE_PENDING +Language=English +A non close operation has been requested of a file object with a delete pending. +. + +MessageId=0x57 +Severity=Error +Facility=System +SymbolicName=STATUS_CTL_FILE_NOT_SUPPORTED +Language=English +An attempt was made to set the control attribute on a file. This attribute is not supported in the target file system. +. + +MessageId=0x58 +Severity=Error +Facility=System +SymbolicName=STATUS_UNKNOWN_REVISION +Language=English +Indicates a revision number encountered or specified is not one known by the service. It may be a more recent revision than the service is aware of. +. + +MessageId=0x59 +Severity=Error +Facility=System +SymbolicName=STATUS_REVISION_MISMATCH +Language=English +Indicates two revision levels are incompatible. +. + +MessageId=0x5a +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_OWNER +Language=English +The specified owner is not valid for this object. +. + +MessageId=0x5b +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_PRIMARY_GROUP +Language=English +The specified primary group is not valid for this object. +. + +MessageId=0x5c +Severity=Error +Facility=System +SymbolicName=STATUS_NO_IMPERSONATION_TOKEN +Language=English +An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client. +. + +MessageId=0x5d +Severity=Error +Facility=System +SymbolicName=STATUS_CANT_DISABLE_MANDATORY +Language=English +The specified group cannot be disabled because it is marked as mandatory. +. + +MessageId=0x5e +Severity=Error +Facility=System +SymbolicName=STATUS_NO_LOGON_SERVERS +Language=English +The logon failed because no valid logon servers were found. +. + +MessageId=0x5f +Severity=Error +Facility=System +SymbolicName=STATUS_NO_SUCH_LOGON_SESSION +Language=English +The specified logon session does not exist. +. + +MessageId=0x60 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_SUCH_PRIVILEGE +Language=English +A specified privilege does not exist. +. + +MessageId=0x61 +Severity=Error +Facility=System +SymbolicName=STATUS_PRIVILEGE_NOT_HELD +Language=English +A required privilege is not held by the client. +. + +MessageId=0x62 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_ACCOUNT_NAME +Language=English +The name provided is not a properly formed account name. +. + +MessageId=0x63 +Severity=Error +Facility=System +SymbolicName=STATUS_USER_EXISTS +Language=English +The specified user already exists. +. + +MessageId=0x64 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_SUCH_USER +Language=English +The specified user does not exist. +. + +MessageId=0x65 +Severity=Error +Facility=System +SymbolicName=STATUS_GROUP_EXISTS +Language=English +The specified group already exists. +. + +MessageId=0x66 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_SUCH_GROUP +Language=English +The specified group does not exist. +. + +MessageId=0x67 +Severity=Error +Facility=System +SymbolicName=STATUS_MEMBER_IN_GROUP +Language=English +The specified user account is already in the specified group account. +Also used to indicate a group cannot be deleted because it contains a member. +. + +MessageId=0x68 +Severity=Error +Facility=System +SymbolicName=STATUS_MEMBER_NOT_IN_GROUP +Language=English +The specified user account is not a member of the specified group account. +. + +MessageId=0x69 +Severity=Error +Facility=System +SymbolicName=STATUS_LAST_ADMIN +Language=English +Indicates the requested operation would disable or delete the last remaining administration account. +This is not allowed to prevent creating a situation in which the system cannot be administrated. +. + +MessageId=0x6a +Severity=Error +Facility=System +SymbolicName=STATUS_WRONG_PASSWORD +Language=English +The specified current password is not correct. +. + +MessageId=0x6b +Severity=Error +Facility=System +SymbolicName=STATUS_ILL_FORMED_PASSWORD +Language=English +The new password contains invalid characters. +. + +MessageId=0x6c +Severity=Error +Facility=System +SymbolicName=STATUS_PASSWORD_RESTRICTION +Language=English +When trying to update a password, this status indicates that some password update rule has been violated. For example, the password may not meet length criteria. +. + +MessageId=0x6d +Severity=Error +Facility=System +SymbolicName=STATUS_LOGON_FAILURE +Language=English +Logon failed because the specified user name or password is incorrect. +. + +MessageId=0x6e +Severity=Error +Facility=System +SymbolicName=STATUS_ACCOUNT_RESTRICTION +Language=English +The specified information is valid but an account restriction prevented logon. +. + +MessageId=0x6f +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_LOGON_HOURS +Language=English +The attempted logon is not allowed at this time. +. + +MessageId=0x70 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_WORKSTATION +Language=English +The user account is restricted such that it may not be used to log on from the source workstation. +. + +MessageId=0x71 +Severity=Error +Facility=System +SymbolicName=STATUS_PASSWORD_EXPIRED +Language=English +The user account's password has expired. +. + +MessageId=0x72 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCOUNT_DISABLED +Language=English +The referenced account is currently disabled and may not be logged on to. +. + +MessageId=0x73 +Severity=Error +Facility=System +SymbolicName=STATUS_NONE_MAPPED +Language=English +None of the information to be translated has been translated. +. + +MessageId=0x74 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_LUIDS_REQUESTED +Language=English +The number of LUIDs requested may not be allocated with a single allocation. +. + +MessageId=0x75 +Severity=Error +Facility=System +SymbolicName=STATUS_LUIDS_EXHAUSTED +Language=English +Indicates there are no more LUIDs to allocate. +. + +MessageId=0x76 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_SUB_AUTHORITY +Language=English +Indicates the sub-authority value is invalid for the particular use. +. + +MessageId=0x77 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_ACL +Language=English +Indicates the ACL structure is not valid. +. + +MessageId=0x78 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_SID +Language=English +Indicates the SID structure is not valid. +. + +MessageId=0x79 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_SECURITY_DESCR +Language=English +Indicates the SECURITY_DESCRIPTOR structure is not valid. +. + +MessageId=0x7a +Severity=Error +Facility=System +SymbolicName=STATUS_PROCEDURE_NOT_FOUND +Language=English +Indicates the specified procedure address cannot be found in the DLL. +. + +MessageId=0x7b +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_IMAGE_FORMAT +Language=English +{Bad Image} +%hs is either not designed for ReactOS or it contains an error. +Try reinstalling the application using the original installation media or contact the software vendor for support. +. + +MessageId=0x7c +Severity=Error +Facility=System +SymbolicName=STATUS_NO_TOKEN +Language=English +An attempt was made to reference a token that doesn't exist. +This is typically done by referencing the token associated with a thread when the thread is not impersonating a client. +. + +MessageId=0x7d +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_INHERITANCE_ACL +Language=English +The inherited access control list could not be created. +. + +MessageId=0x7e +Severity=Error +Facility=System +SymbolicName=STATUS_RANGE_NOT_LOCKED +Language=English +Attempt to unlock a file range that is not locked. +. + +MessageId=0x7f +Severity=Error +Facility=System +SymbolicName=STATUS_DISK_FULL +Language=English +The disk is full. Delete files and free up disk space to continue the operation. +. + +MessageId=0x80 +Severity=Error +Facility=System +SymbolicName=STATUS_SERVER_DISABLED +Language=English +The GUID allocation server is [already] disabled at the moment. +. + +MessageId=0x81 +Severity=Error +Facility=System +SymbolicName=STATUS_SERVER_NOT_DISABLED +Language=English +The GUID allocation server is [already] enabled at the moment. +. + +MessageId=0x82 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_GUIDS_REQUESTED +Language=English +Too many GUIDs were requested from the allocation server at once. +. + +MessageId=0x83 +Severity=Error +Facility=System +SymbolicName=STATUS_GUIDS_EXHAUSTED +Language=English +The GUIDs could not be allocated because the Authority Agent was exhausted. +. + +MessageId=0x84 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_ID_AUTHORITY +Language=English +The value provided was an invalid value for an identifier authority. +. + +MessageId=0x85 +Severity=Error +Facility=System +SymbolicName=STATUS_AGENTS_EXHAUSTED +Language=English +There are no more authority agent values available for the given identifier authority value. +. + +MessageId=0x86 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_VOLUME_LABEL +Language=English +An invalid volume label has been specified. +. + +MessageId=0x87 +Severity=Error +Facility=System +SymbolicName=STATUS_SECTION_NOT_EXTENDED +Language=English +A mapped section could not be extended. +. + +MessageId=0x88 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_MAPPED_DATA +Language=English +Specified section to flush does not map a data file. +. + +MessageId=0x89 +Severity=Error +Facility=System +SymbolicName=STATUS_RESOURCE_DATA_NOT_FOUND +Language=English +Indicates the specified image file did not contain a resource section. +. + +MessageId=0x8a +Severity=Error +Facility=System +SymbolicName=STATUS_RESOURCE_TYPE_NOT_FOUND +Language=English +A resource of the specified type could not be found in the image file. +. + +MessageId=0x8b +Severity=Error +Facility=System +SymbolicName=STATUS_RESOURCE_NAME_NOT_FOUND +Language=English +A resource with the specified name could not be found in the image file. +. + +MessageId=0x8c +Severity=Error +Facility=System +SymbolicName=STATUS_ARRAY_BOUNDS_EXCEEDED +Language=English +{EXCEPTION} +Array bounds exceeded. +. + +MessageId=0x8d +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_DENORMAL_OPERAND +Language=English +{EXCEPTION} +Floating-point denormal operand. +. + +MessageId=0x8e +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_DIVIDE_BY_ZERO +Language=English +{EXCEPTION} +Floating-point division by zero. +. + +MessageId=0x8f +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_INEXACT_RESULT +Language=English +{EXCEPTION} +Floating-point inexact result. +. + +MessageId=0x90 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_INVALID_OPERATION +Language=English +{EXCEPTION} +Floating-point invalid operation. +. + +MessageId=0x91 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_OVERFLOW +Language=English +{EXCEPTION} +Floating-point overflow. +. + +MessageId=0x92 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_STACK_CHECK +Language=English +{EXCEPTION} +Floating-point stack check. +. + +MessageId=0x93 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOAT_UNDERFLOW +Language=English +{EXCEPTION} +Floating-point underflow. +. + +MessageId=0x94 +Severity=Error +Facility=System +SymbolicName=STATUS_INTEGER_DIVIDE_BY_ZERO +Language=English +{EXCEPTION} +Integer division by zero. +. + +MessageId=0x95 +Severity=Error +Facility=System +SymbolicName=STATUS_INTEGER_OVERFLOW +Language=English +{EXCEPTION} +Integer overflow. +. + +MessageId=0x96 +Severity=Error +Facility=System +SymbolicName=STATUS_PRIVILEGED_INSTRUCTION +Language=English +{EXCEPTION} +Privileged instruction. +. + +MessageId=0x97 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_PAGING_FILES +Language=English +An attempt was made to install more paging files than the system supports. +. + +MessageId=0x98 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_INVALID +Language=English +The volume for a file has been externally altered such that the opened file is no longer valid. +. + +MessageId=0x99 +Severity=Error +Facility=System +SymbolicName=STATUS_ALLOTTED_SPACE_EXCEEDED +Language=English +When a block of memory is allotted for future updates, such as the memory allocated to hold discretionary access control and primary group information, successive updates may exceed the amount of memory originally allotted. +Since quota may already have been charged to several processes which have handles to the object, it is not reasonable to alter the size of the allocated memory. +Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTED_SPACE_EXCEEDED error returned. +. + +MessageId=0x9a +Severity=Error +Facility=System +SymbolicName=STATUS_INSUFFICIENT_RESOURCES +Language=English +Insufficient system resources exist to complete this API. +. + +MessageId=0x9b +Severity=Error +Facility=System +SymbolicName=STATUS_DFS_EXIT_PATH_FOUND +Language=English +The specified file cannot be opened because it is a DFS exit path file. +. + +MessageId=0x9c +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_DATA_ERROR +Language=English +STATUS_DEVICE_DATA_ERROR +. + +MessageId=0x9d +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_NOT_CONNECTED +Language=English +The specified device is not connected. +. + +MessageId=0x9f +Severity=Error +Facility=System +SymbolicName=STATUS_FREE_VM_NOT_AT_BASE +Language=English +The specified memory could not be freed because it is not at the start of the allocation. +. + +MessageId=0xa0 +Severity=Error +Facility=System +SymbolicName=STATUS_MEMORY_NOT_ALLOCATED +Language=English +The specified memory could not be freed because it was not allocated. +. + +MessageId=0xa1 +Severity=Error +Facility=System +SymbolicName=STATUS_WORKING_SET_QUOTA +Language=English +The process working set quota was exceeded +. + +MessageId=0xa2 +Severity=Error +Facility=System +SymbolicName=STATUS_MEDIA_WRITE_PROTECTED +Language=English +{Write Protect Error} +The media in volume %hs cannot be written to because it is write-protected. +. + +MessageId=0xa3 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_NOT_READY +Language=English +{Device Not Ready} +The device %hs is not ready. +. + +MessageId=0xc0 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_DOES_NOT_EXIST +Language=English +This device does not exist. +. + +MessageId=0xc1 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_COMMANDS +Language=English +The network BIOS command limit has been reached. +. + +MessageId=0xc2 +Severity=Error +Facility=System +SymbolicName=STATUS_ADAPTER_HARDWARE_ERROR +Language=English +An I/O adapter hardware error has occurred. +. + +MessageId=0xc3 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_NETWORK_RESPONSE +Language=English +The network responded incorrectly. +. + +MessageId=0xc4 +Severity=Error +Facility=System +SymbolicName=STATUS_UNEXPECTED_NETWORK_ERROR +Language=English +An unexpected network error occurred. +. + +MessageId=0xc5 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_REMOTE_ADAPTER +Language=English +The remote adapter is not compatible. +. + +MessageId=0xc6 +Severity=Error +Facility=System +SymbolicName=STATUS_PRINT_QUEUE_FULL +Language=English +The printer queue is full. +. + +MessageId=0xc7 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_SPOOL_SPACE +Language=English +Space to store the file waiting to be printed is not available on the server. +. + +MessageId=0xc8 +Severity=Error +Facility=System +SymbolicName=STATUS_PRINT_CANCELLED +Language=English +The requested print file has been canceled. +. + +MessageId=0xc9 +Severity=Error +Facility=System +SymbolicName=STATUS_NETWORK_NAME_DELETED +Language=English +The network name was deleted. +. + +MessageId=0xcc +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_NETWORK_NAME +Language=English +{Network Name Not Found} +The specified share name cannot be found on the remote server. +. + +MessageId=0x100 +Severity=Error +Facility=System +SymbolicName=STATUS_VARIABLE_NOT_FOUND +Language=English +Indicates the specified environment variable name was not found in the specified environment block. +. + +MessageId=0x101 +Severity=Error +Facility=System +SymbolicName=STATUS_DIRECTORY_NOT_EMPTY +Language=English +Indicates that the directory trying to be deleted is not empty. +. + +MessageId=0x102 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_CORRUPT_ERROR +Language=English +{Corrupt File} +The file or directory %hs is corrupt and unreadable. +Please run the Chkdsk utility. +. + +MessageId=0x103 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_A_DIRECTORY +Language=English +A requested opened file is not a directory. +. + +MessageId=0x104 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_LOGON_SESSION_STATE +Language=English +The logon session is not in a state that is consistent with the requested operation. +. + +MessageId=0x105 +Severity=Error +Facility=System +SymbolicName=STATUS_LOGON_SESSION_COLLISION +Language=English +An internal LSA error has occurred. An authentication package has requested the creation of a Logon Session but the ID of an already existing Logon Session has been specified. +. + +MessageId=0x106 +Severity=Error +Facility=System +SymbolicName=STATUS_NAME_TOO_LONG +Language=English +A specified name string is too long for its intended use. +. + +MessageId=0x107 +Severity=Error +Facility=System +SymbolicName=STATUS_FILES_OPEN +Language=English +The user attempted to force close the files on a redirected drive, but there were opened files on the drive, and the user did not specify a sufficient level of force. +. + +MessageId=0x108 +Severity=Error +Facility=System +SymbolicName=STATUS_CONNECTION_IN_USE +Language=English +The user attempted to force close the files on a redirected drive, but there were opened directories on the drive, and the user did not specify a sufficient level of force. +. + +MessageId=0x109 +Severity=Error +Facility=System +SymbolicName=STATUS_MESSAGE_NOT_FOUND +Language=English +RtlFindMessage could not locate the requested message ID in the message table resource. +. + +MessageId=0x10c +Severity=Error +Facility=System +SymbolicName=STATUS_NO_GUID_TRANSLATION +Language=English +Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system. +This causes the protection attempt to fail, which may cause a file creation attempt to fail. +. + +MessageId=0x110 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_LID_NOT_EXIST +Language=English +STATUS_ABIOS_LID_NOT_EXIST +. + +MessageId=0x111 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_LID_ALREADY_OWNED +Language=English +STATUS_ABIOS_LID_ALREADY_OWNED +. + +MessageId=0x112 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_NOT_LID_OWNER +Language=English +STATUS_ABIOS_NOT_LID_OWNER +. + +MessageId=0x113 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_INVALID_COMMAND +Language=English +STATUS_ABIOS_INVALID_COMMAND +. + +MessageId=0x114 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_INVALID_LID +Language=English +STATUS_ABIOS_INVALID_LID +. + +MessageId=0x115 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_SELECTOR_NOT_AVAILABLE +Language=English +STATUS_ABIOS_SELECTOR_NOT_AVAILABLE +. + +MessageId=0x116 +Severity=Error +Facility=System +SymbolicName=STATUS_ABIOS_INVALID_SELECTOR +Language=English +STATUS_ABIOS_INVALID_SELECTOR +. + +MessageId=0x117 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_LDT +Language=English +Indicates that an attempt was made to change the size of the LDT for a process that has no LDT. +. + +MessageId=0x118 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_LDT_SIZE +Language=English +Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors. +. + +MessageId=0x119 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_LDT_OFFSET +Language=English +Indicates that the starting value for the LDT information was not an integral multiple of the selector size. +. + +MessageId=0x11c +Severity=Error +Facility=System +SymbolicName=STATUS_RXACT_INVALID_STATE +Language=English +Indicates that the transaction state of a registry sub-tree is incompatible with the requested operation. +For example, a request has been made to start a new transaction with one already in progress, +or a request has been made to apply a transaction when one is not currently in progress. +. + +MessageId=0x120 +Severity=Error +Facility=System +SymbolicName=STATUS_CANCELLED +Language=English +The I/O request was canceled. +. + +MessageId=0x121 +Severity=Error +Facility=System +SymbolicName=STATUS_CANNOT_DELETE +Language=English +An attempt has been made to remove a file or directory that cannot be deleted. +. + +MessageId=0x122 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_COMPUTER_NAME +Language=English +Indicates a name specified as a remote computer name is syntactically invalid. +. + +MessageId=0x123 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_DELETED +Language=English +An I/O request other than close was performed on a file after it has been deleted, +which can only happen to a request which did not complete before the last handle was closed via NtClose. +. + +MessageId=0x124 +Severity=Error +Facility=System +SymbolicName=STATUS_SPECIAL_ACCOUNT +Language=English +Indicates an operation has been attempted on a built-in (special) SAM account which is incompatible with built-in accounts. +For example, built-in accounts cannot be deleted. +. + +MessageId=0x125 +Severity=Error +Facility=System +SymbolicName=STATUS_SPECIAL_GROUP +Language=English +The operation requested may not be performed on the specified group because it is a built-in special group. +. + +MessageId=0x126 +Severity=Error +Facility=System +SymbolicName=STATUS_SPECIAL_USER +Language=English +The operation requested may not be performed on the specified user because it is a built-in special user. +. + +MessageId=0x127 +Severity=Error +Facility=System +SymbolicName=STATUS_MEMBERS_PRIMARY_GROUP +Language=English +Indicates a member cannot be removed from a group because the group is currently the member's primary group. +. + +MessageId=0x128 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_CLOSED +Language=English +An I/O request other than close and several other special case operations was attempted using a file object that had already been closed. +. + +MessageId=0x129 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_THREADS +Language=English +Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads. +. + +MessageId=0x12c +Severity=Error +Facility=System +SymbolicName=STATUS_PAGEFILE_QUOTA_EXCEEDED +Language=English +Page file quota was exceeded. +. + +MessageId=0x130 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_IMAGE_PROTECT +Language=English +The specified image file did not have the correct format, it did not have a proper e_lfarlc in the MZ header. +. + +MessageId=0x131 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_IMAGE_WIN_16 +Language=English +The specified image file did not have the correct format, it appears to be a 16-bit Windows image. +. + +MessageId=0x132 +Severity=Error +Facility=System +SymbolicName=STATUS_LOGON_SERVER_CONFLICT +Language=English +The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role. +. + +MessageId=0x133 +Severity=Error +Facility=System +SymbolicName=STATUS_TIME_DIFFERENCE_AT_DC +Language=English +The time at the Primary Domain Controller is different than the time at the Backup Domain Controller or member server by too large an amount. +. + +MessageId=0x134 +Severity=Error +Facility=System +SymbolicName=STATUS_SYNCHRONIZATION_REQUIRED +Language=English +The SAM database on a ReactOS Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required. +. + +MessageId=0x135 +Severity=Error +Facility=System +SymbolicName=STATUS_DLL_NOT_FOUND +Language=English +{Unable To Locate Component} +This application has failed to start because %hs was not found. Re-installing the application may fix this problem. +. + +MessageId=0x136 +Severity=Error +Facility=System +SymbolicName=STATUS_OPEN_FAILED +Language=English +The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the ReactOS Lan Manager Redirector to use in its internal error mapping routines. +. + +MessageId=0x137 +Severity=Error +Facility=System +SymbolicName=STATUS_IO_PRIVILEGE_FAILED +Language=English +{Privilege Failed} +The I/O permissions for the process could not be changed. +. + +MessageId=0x138 +Severity=Error +Facility=System +SymbolicName=STATUS_ORDINAL_NOT_FOUND +Language=English +{Ordinal Not Found} +The ordinal %ld could not be located in the dynamic link library %hs. +. + +MessageId=0x139 +Severity=Error +Facility=System +SymbolicName=STATUS_ENTRYPOINT_NOT_FOUND +Language=English +{Entry Point Not Found} +The procedure entry point %hs could not be located in the dynamic link library %hs. +. + +MessageId=0x13c +Severity=Error +Facility=System +SymbolicName=STATUS_REMOTE_DISCONNECT +Language=English +{Virtual Circuit Closed} +The network transport on a remote computer has closed a network connection. There may or may not be I/O requests outstanding. +. + +MessageId=0x140 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_CONNECTION +Language=English +The connection handle given to the transport was invalid. +. + +MessageId=0x141 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_ADDRESS +Language=English +The address handle given to the transport was invalid. +. + +MessageId=0x142 +Severity=Error +Facility=System +SymbolicName=STATUS_DLL_INIT_FAILED +Language=English +{DLL Initialization Failed} +Initialization of the dynamic link library %hs failed. The process is terminating abnormally. +. + +MessageId=0x143 +Severity=Error +Facility=System +SymbolicName=STATUS_MISSING_SYSTEMFILE +Language=English +{Missing System File} +The required system file %hs is bad or missing. +. + +MessageId=0x144 +Severity=Error +Facility=System +SymbolicName=STATUS_UNHANDLED_EXCEPTION +Language=English +{Application Error} +The exception %s (0x%08lx) occurred in the application at location 0x%08lx. +. + +MessageId=0x145 +Severity=Error +Facility=System +SymbolicName=STATUS_APP_INIT_FAILURE +Language=English +{Application Error} +The application failed to initialize properly (0x%lx). Click on OK to terminate the application. +. + +MessageId=0x146 +Severity=Error +Facility=System +SymbolicName=STATUS_PAGEFILE_CREATE_FAILED +Language=English +{Unable to Create Paging File} +The creation of the paging file %hs failed (%lx). The requested size was %ld. +. + +MessageId=0x147 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_PAGEFILE +Language=English +{No Paging File Specified} +No paging file was specified in the system configuration. +. + +MessageId=0x148 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_LEVEL +Language=English +{Incorrect System Call Level} +An invalid level was passed into the specified system call. +. + +MessageId=0x149 +Severity=Error +Facility=System +SymbolicName=STATUS_WRONG_PASSWORD_CORE +Language=English +{Incorrect Password to LAN Manager Server} +You specified an incorrect password to a LAN Manager 2.x or MS-NET server. +. + +MessageId=0x14c +Severity=Error +Facility=System +SymbolicName=STATUS_REGISTRY_CORRUPT +Language=English +{The Registry Is Corrupt} +The structure of one of the files that contains Registry data is corrupt, or the image of the file in memory is corrupt, or the file could not be recovered because the alternate copy or log was absent or corrupt. +. + +MessageId=0x150 +Severity=Error +Facility=System +SymbolicName=STATUS_SERIAL_NO_DEVICE_INITED +Language=English +No serial device was successfully initialized. The serial driver will unload. +. + +MessageId=0x151 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_SUCH_ALIAS +Language=English +The specified local group does not exist. +. + +MessageId=0x152 +Severity=Error +Facility=System +SymbolicName=STATUS_MEMBER_NOT_IN_ALIAS +Language=English +The specified account name is not a member of the local group. +. + +MessageId=0x153 +Severity=Error +Facility=System +SymbolicName=STATUS_MEMBER_IN_ALIAS +Language=English +The specified account name is already a member of the local group. +. + +MessageId=0x154 +Severity=Error +Facility=System +SymbolicName=STATUS_ALIAS_EXISTS +Language=English +The specified local group already exists. +. + +MessageId=0x155 +Severity=Error +Facility=System +SymbolicName=STATUS_LOGON_NOT_GRANTED +Language=English +A requested type of logon (e.g., Interactive, Network, Service) is not granted by the target system's local security policy. +Please ask the system administrator to grant the necessary form of logon. +. + +MessageId=0x156 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_SECRETS +Language=English +The maximum number of secrets that may be stored in a single system has been exceeded. The length and number of secrets is limited to satisfy United States State Department export restrictions. +. + +MessageId=0x157 +Severity=Error +Facility=System +SymbolicName=STATUS_SECRET_TOO_LONG +Language=English +The length of a secret exceeds the maximum length allowed. The length and number of secrets is limited to satisfy United States State Department export restrictions. +. + +MessageId=0x158 +Severity=Error +Facility=System +SymbolicName=STATUS_INTERNAL_DB_ERROR +Language=English +The Local Security Authority (LSA) database contains an internal inconsistency. +. + +MessageId=0x159 +Severity=Error +Facility=System +SymbolicName=STATUS_FULLSCREEN_MODE +Language=English +The requested operation cannot be performed in fullscreen mode. +. + +MessageId=0x15c +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_REGISTRY_FILE +Language=English +The system has attempted to load or restore a file into the registry, and the specified file is not in the format of a registry file. +. + +MessageId=0x160 +Severity=Error +Facility=System +SymbolicName=STATUS_ILL_FORMED_SERVICE_ENTRY +Language=English +A configuration registry node representing a driver service entry was ill-formed and did not contain required value entries. +. + +MessageId=0x161 +Severity=Error +Facility=System +SymbolicName=STATUS_ILLEGAL_CHARACTER +Language=English +An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE. +. + +MessageId=0x162 +Severity=Error +Facility=System +SymbolicName=STATUS_UNMAPPABLE_CHARACTER +Language=English +No mapping for the Unicode character exists in the target multi-byte code page. +. + +MessageId=0x163 +Severity=Error +Facility=System +SymbolicName=STATUS_UNDEFINED_CHARACTER +Language=English +The Unicode character is not defined in the Unicode character set installed on the system. +. + +MessageId=0x164 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOPPY_VOLUME +Language=English +The paging file cannot be created on a floppy diskette. +. + +MessageId=0x165 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOPPY_ID_MARK_NOT_FOUND +Language=English +{Floppy Disk Error} +While accessing a floppy disk, an ID address mark was not found. +. + +MessageId=0x166 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOPPY_WRONG_CYLINDER +Language=English +{Floppy Disk Error} +While accessing a floppy disk, the track address from the sector ID field was found to be different than the track address maintained by the controller. +. + +MessageId=0x167 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOPPY_UNKNOWN_ERROR +Language=English +{Floppy Disk Error} +The floppy disk controller reported an error that is not recognized by the floppy disk driver. +. + +MessageId=0x168 +Severity=Error +Facility=System +SymbolicName=STATUS_FLOPPY_BAD_REGISTERS +Language=English +{Floppy Disk Error} +While accessing a floppy-disk, the controller returned inconsistent results via its registers. +. + +MessageId=0x169 +Severity=Error +Facility=System +SymbolicName=STATUS_DISK_RECALIBRATE_FAILED +Language=English +{Hard Disk Error} +While accessing the hard disk, a recalibrate operation failed, even after retries. +. + +MessageId=0x16c +Severity=Error +Facility=System +SymbolicName=STATUS_SHARED_IRQ_BUSY +Language=English +An attempt was made to open a device that was sharing an IRQ with other devices. +At least one other device that uses that IRQ was already opened. +Two concurrent opens of devices that share an IRQ and only work via interrupts is not supported for the particular bus type that the devices use. +. + +MessageId=0x172 +Severity=Error +Facility=System +SymbolicName=STATUS_PARTITION_FAILURE +Language=English +Tape could not be partitioned. +. + +MessageId=0x173 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_BLOCK_LENGTH +Language=English +When accessing a new tape of a multivolume partition, the current blocksize is incorrect. +. + +MessageId=0x174 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_NOT_PARTITIONED +Language=English +Tape partition information could not be found when loading a tape. +. + +MessageId=0x175 +Severity=Error +Facility=System +SymbolicName=STATUS_UNABLE_TO_LOCK_MEDIA +Language=English +Attempt to lock the eject media mechanism fails. +. + +MessageId=0x176 +Severity=Error +Facility=System +SymbolicName=STATUS_UNABLE_TO_UNLOAD_MEDIA +Language=English +Unload media fails. +. + +MessageId=0x177 +Severity=Error +Facility=System +SymbolicName=STATUS_EOM_OVERFLOW +Language=English +Physical end of tape was detected. +. + +MessageId=0x178 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_MEDIA +Language=English +{No Media} +There is no media in the drive. +Please insert media into drive %hs. +. + +MessageId=0x17c +Severity=Error +Facility=System +SymbolicName=STATUS_KEY_DELETED +Language=English +Illegal operation attempted on a registry key which has been marked for deletion. +. + +MessageId=0x180 +Severity=Error +Facility=System +SymbolicName=STATUS_KEY_HAS_CHILDREN +Language=English +An attempt was made to create a symbolic link in a registry key that already has subkeys or values. +. + +MessageId=0x181 +Severity=Error +Facility=System +SymbolicName=STATUS_CHILD_MUST_BE_VOLATILE +Language=English +An attempt was made to create a Stable subkey under a Volatile parent key. +. + +MessageId=0x182 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_CONFIGURATION_ERROR +Language=English +The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect. +. + +MessageId=0x183 +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_INTERNAL_ERROR +Language=English +An error was detected between two drivers or within an I/O driver. +. + +MessageId=0x184 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_DEVICE_STATE +Language=English +The device is not in a valid state to perform this request. +. + +MessageId=0x185 +Severity=Error +Facility=System +SymbolicName=STATUS_IO_DEVICE_ERROR +Language=English +The I/O device reported an I/O error. +. + +MessageId=0x186 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_PROTOCOL_ERROR +Language=English +A protocol error was detected between the driver and the device. +. + +MessageId=0x187 +Severity=Error +Facility=System +SymbolicName=STATUS_BACKUP_CONTROLLER +Language=English +This operation is only allowed for the Primary Domain Controller of the domain. +. + +MessageId=0x188 +Severity=Error +Facility=System +SymbolicName=STATUS_LOG_FILE_FULL +Language=English +Log file space is insufficient to support this operation. +. + +MessageId=0x189 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_LATE +Language=English +A write operation was attempted to a volume after it was dismounted. +. + +MessageId=0x18c +Severity=Error +Facility=System +SymbolicName=STATUS_TRUSTED_DOMAIN_FAILURE +Language=English +The logon request failed because the trust relationship between the primary domain and the trusted domain failed. +. + +MessageId=0x190 +Severity=Error +Facility=System +SymbolicName=STATUS_TRUST_FAILURE +Language=English +The network logon failed. This may be because the validation authority can't be reached. +. + +MessageId=0x191 +Severity=Error +Facility=System +SymbolicName=STATUS_MUTANT_LIMIT_EXCEEDED +Language=English +An attempt was made to acquire a mutant such that its maximum count would have been exceeded. +. + +MessageId=0x192 +Severity=Error +Facility=System +SymbolicName=STATUS_NETLOGON_NOT_STARTED +Language=English +An attempt was made to logon, but the netlogon service was not started. +. + +MessageId=0x193 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCOUNT_EXPIRED +Language=English +The user's account has expired. +. + +MessageId=0x194 +Severity=Error +Facility=System +SymbolicName=STATUS_POSSIBLE_DEADLOCK +Language=English +{EXCEPTION} +Possible deadlock condition. +. + +MessageId=0x195 +Severity=Error +Facility=System +SymbolicName=STATUS_NETWORK_CREDENTIAL_CONFLICT +Language=English +Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again. +. + +MessageId=0x196 +Severity=Error +Facility=System +SymbolicName=STATUS_REMOTE_SESSION_LIMIT +Language=English +An attempt was made to establish a session to a network server, but there are already too many sessions established to that server. +. + +MessageId=0x197 +Severity=Error +Facility=System +SymbolicName=STATUS_EVENTLOG_FILE_CHANGED +Language=English +The log file has changed between reads. +. + +MessageId=0x198 +Severity=Error +Facility=System +SymbolicName=STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT +Language=English +The account used is an Interdomain Trust account. Use your global user account or local user account to access this server. +. + +MessageId=0x199 +Severity=Error +Facility=System +SymbolicName=STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT +Language=English +The account used is a Computer Account. Use your global user account or local user account to access this server. +. + +MessageId=0x19c +Severity=Error +Facility=System +SymbolicName=STATUS_FS_DRIVER_REQUIRED +Language=English +A volume has been accessed for which a file system driver is required that has not yet been loaded. +. + +MessageId=0x202 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_USER_SESSION_KEY +Language=English +There is no user session key for the specified logon session. +. + +MessageId=0x203 +Severity=Error +Facility=System +SymbolicName=STATUS_USER_SESSION_DELETED +Language=English +The remote user session has been deleted. +. + +MessageId=0x204 +Severity=Error +Facility=System +SymbolicName=STATUS_RESOURCE_LANG_NOT_FOUND +Language=English +Indicates the specified resource language ID cannot be found in the +image file. +. + +MessageId=0x205 +Severity=Error +Facility=System +SymbolicName=STATUS_INSUFF_SERVER_RESOURCES +Language=English +Insufficient server resources exist to complete the request. +. + +MessageId=0x206 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_BUFFER_SIZE +Language=English +The size of the buffer is invalid for the specified operation. +. + +MessageId=0x207 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_ADDRESS_COMPONENT +Language=English +The transport rejected the network address specified as invalid. +. + +MessageId=0x208 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_ADDRESS_WILDCARD +Language=English +The transport rejected the network address specified due to an invalid use of a wildcard. +. + +MessageId=0x209 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_ADDRESSES +Language=English +The transport address could not be opened because all the available addresses are in use. +. + +MessageId=0x20c +Severity=Error +Facility=System +SymbolicName=STATUS_CONNECTION_DISCONNECTED +Language=English +The transport connection is now disconnected. +. + +MessageId=0x210 +Severity=Error +Facility=System +SymbolicName=STATUS_TRANSACTION_TIMED_OUT +Language=English +The transport timed out a request waiting for a response. +. + +MessageId=0x211 +Severity=Error +Facility=System +SymbolicName=STATUS_TRANSACTION_NO_RELEASE +Language=English +The transport did not receive a release for a pending response. +. + +MessageId=0x212 +Severity=Error +Facility=System +SymbolicName=STATUS_TRANSACTION_NO_MATCH +Language=English +The transport did not find a transaction matching the specific +token. +. + +MessageId=0x213 +Severity=Error +Facility=System +SymbolicName=STATUS_TRANSACTION_RESPONDED +Language=English +The transport had previously responded to a transaction request. +. + +MessageId=0x214 +Severity=Error +Facility=System +SymbolicName=STATUS_TRANSACTION_INVALID_ID +Language=English +The transport does not recognized the transaction request identifier specified. +. + +MessageId=0x215 +Severity=Error +Facility=System +SymbolicName=STATUS_TRANSACTION_INVALID_TYPE +Language=English +The transport does not recognize the transaction request type specified. +. + +MessageId=0x216 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_SERVER_SESSION +Language=English +The transport can only process the specified request on the server side of a session. +. + +MessageId=0x217 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_CLIENT_SESSION +Language=English +The transport can only process the specified request on the client side of a session. +. + +MessageId=0x218 +Severity=Error +Facility=System +SymbolicName=STATUS_CANNOT_LOAD_REGISTRY_FILE +Language=English +{Registry File Failure} +The registry cannot load the hive (file): +%hs +or its log or alternate. +It is corrupt, absent, or not writable. +. + +MessageId=0x219 +Severity=Error +Facility=System +SymbolicName=STATUS_DEBUG_ATTACH_FAILED +Language=English +{Unexpected Failure in DebugActiveProcess} +An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error. +. + +MessageId=0x21c +Severity=Error +Facility=System +SymbolicName=STATUS_NO_BROWSER_SERVERS_FOUND +Language=English +{Unable to Retrieve Browser Server List} +The list of servers for this workgroup is not currently available. +. + +MessageId=0x220 +Severity=Error +Facility=System +SymbolicName=STATUS_MAPPED_ALIGNMENT +Language=English +{Mapped View Alignment Incorrect} +An attempt was made to map a view of a file, but either the specified base address or the offset into the file were not aligned on the proper allocation granularity. +. + +MessageId=0x221 +Severity=Error +Facility=System +SymbolicName=STATUS_IMAGE_CHECKSUM_MISMATCH +Language=English +{Bad Image Checksum} +The image %hs is possibly corrupt. The header checksum does not match the computed checksum. +. + +MessageId=0x222 +Severity=Error +Facility=System +SymbolicName=STATUS_LOST_WRITEBEHIND_DATA +Language=English +{Delayed Write Failed} +ReactOS was unable to save all the data for the file %hs. The data has been lost. +This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere. +. + +MessageId=0x223 +Severity=Error +Facility=System +SymbolicName=STATUS_CLIENT_SERVER_PARAMETERS_INVALID +Language=English +The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window. +. + +MessageId=0x224 +Severity=Error +Facility=System +SymbolicName=STATUS_PASSWORD_MUST_CHANGE +Language=English +The user's password must be changed before logging on the first time. +. + +MessageId=0x225 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_FOUND +Language=English +The object was not found. +. + +MessageId=0x226 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_TINY_STREAM +Language=English +The stream is not a tiny stream. +. + +MessageId=0x227 +Severity=Error +Facility=System +SymbolicName=STATUS_RECOVERY_FAILURE +Language=English +A transaction recover failed. +. + +MessageId=0x228 +Severity=Error +Facility=System +SymbolicName=STATUS_STACK_OVERFLOW_READ +Language=English +The request must be handled by the stack overflow code. +. + +MessageId=0x229 +Severity=Error +Facility=System +SymbolicName=STATUS_FAIL_CHECK +Language=English +A consistency check failed. +. + +MessageId=0x22c +Severity=Error +Facility=System +SymbolicName=STATUS_CONVERT_TO_LARGE +Language=English +Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream. +. + +MessageId=0x230 +Severity=Error +Facility=System +SymbolicName=STATUS_PROPSET_NOT_FOUND +Language=English +The property set specified does not exist on the object. +. + +MessageId=0x231 +Severity=Error +Facility=System +SymbolicName=STATUS_MARSHALL_OVERFLOW +Language=English +The user/kernel marshalling buffer has overflowed. +. + +MessageId=0x232 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_VARIANT +Language=English +The supplied variant structure contains invalid data. +. + +MessageId=0x233 +Severity=Error +Facility=System +SymbolicName=STATUS_DOMAIN_CONTROLLER_NOT_FOUND +Language=English +Could not find a domain controller for this domain. +. + +MessageId=0x234 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCOUNT_LOCKED_OUT +Language=English +The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested. +. + +MessageId=0x235 +Severity=Error +Facility=System +SymbolicName=STATUS_HANDLE_NOT_CLOSABLE +Language=English +NtClose was called on a handle that was protected from close via NtSetInformationObject. +. + +MessageId=0x236 +Severity=Error +Facility=System +SymbolicName=STATUS_CONNECTION_REFUSED +Language=English +The transport connection attempt was refused by the remote system. +. + +MessageId=0x237 +Severity=Error +Facility=System +SymbolicName=STATUS_GRACEFUL_DISCONNECT +Language=English +The transport connection was gracefully closed. +. + +MessageId=0x238 +Severity=Error +Facility=System +SymbolicName=STATUS_ADDRESS_ALREADY_ASSOCIATED +Language=English +The transport endpoint already has an address associated with it. +. + +MessageId=0x239 +Severity=Error +Facility=System +SymbolicName=STATUS_ADDRESS_NOT_ASSOCIATED +Language=English +An address has not yet been associated with the transport endpoint. +. + +MessageId=0x23c +Severity=Error +Facility=System +SymbolicName=STATUS_NETWORK_UNREACHABLE +Language=English +The remote network is not reachable by the transport. +. + +MessageId=0x240 +Severity=Error +Facility=System +SymbolicName=STATUS_REQUEST_ABORTED +Language=English +The request was aborted. +. + +MessageId=0x241 +Severity=Error +Facility=System +SymbolicName=STATUS_CONNECTION_ABORTED +Language=English +The transport connection was aborted by the local system. +. + +MessageId=0x242 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_COMPRESSION_BUFFER +Language=English +The specified buffer contains ill-formed data. +. + +MessageId=0x243 +Severity=Error +Facility=System +SymbolicName=STATUS_USER_MAPPED_FILE +Language=English +The requested operation cannot be performed on a file with a user mapped section open. +. + +MessageId=0x244 +Severity=Error +Facility=System +SymbolicName=STATUS_AUDIT_FAILED +Language=English +{Audit Failed} +An attempt to generate a security audit failed. +. + +MessageId=0x245 +Severity=Error +Facility=System +SymbolicName=STATUS_TIMER_RESOLUTION_NOT_SET +Language=English +The timer resolution was not previously set by the current process. +. + +MessageId=0x246 +Severity=Error +Facility=System +SymbolicName=STATUS_CONNECTION_COUNT_LIMIT +Language=English +A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached. +. + +MessageId=0x247 +Severity=Error +Facility=System +SymbolicName=STATUS_LOGIN_TIME_RESTRICTION +Language=English +Attempting to login during an unauthorized time of day for this account. +. + +MessageId=0x248 +Severity=Error +Facility=System +SymbolicName=STATUS_LOGIN_WKSTA_RESTRICTION +Language=English +The account is not authorized to login from this station. +. + +MessageId=0x249 +Severity=Error +Facility=System +SymbolicName=STATUS_IMAGE_MP_UP_MISMATCH +Language=English +{UP/MP Image Mismatch} +The image %hs has been modified for use on a uniprocessor system, but you are running it on a multiprocessor machine. +Please reinstall the image file. +. + +MessageId=0x250 +Severity=Error +Facility=System +SymbolicName=STATUS_INSUFFICIENT_LOGON_INFO +Language=English +There is insufficient account information to log you on. +. + +MessageId=0x251 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_DLL_ENTRYPOINT +Language=English +{Invalid DLL Entrypoint} +The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. +The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly. +. + +MessageId=0x252 +Severity=Error +Facility=System +SymbolicName=STATUS_BAD_SERVICE_ENTRYPOINT +Language=English +{Invalid Service Callback Entrypoint} +The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. +The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly. +. + +MessageId=0x253 +Severity=Error +Facility=System +SymbolicName=STATUS_LPC_REPLY_LOST +Language=English +The server received the messages but did not send a reply. +. + +MessageId=0x254 +Severity=Error +Facility=System +SymbolicName=STATUS_IP_ADDRESS_CONFLICT1 +Language=English +There is an IP address conflict with another system on the network +. + +MessageId=0x255 +Severity=Error +Facility=System +SymbolicName=STATUS_IP_ADDRESS_CONFLICT2 +Language=English +There is an IP address conflict with another system on the network +. + +MessageId=0x256 +Severity=Error +Facility=System +SymbolicName=STATUS_REGISTRY_QUOTA_LIMIT +Language=English +{Low On Registry Space} +The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored. +. + +MessageId=0x257 +Severity=Error +Facility=System +SymbolicName=STATUS_PATH_NOT_COVERED +Language=English +The contacted server does not support the indicated part of the DFS namespace. +. + +MessageId=0x258 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_CALLBACK_ACTIVE +Language=English +A callback return system service cannot be executed when no callback is active. +. + +MessageId=0x259 +Severity=Error +Facility=System +SymbolicName=STATUS_LICENSE_QUOTA_EXCEEDED +Language=English +The service being accessed is licensed for a particular number of connections. +No more connections can be made to the service at this time because there are already as many connections as the service can accept. +. + +MessageId=0x25c +Severity=Error +Facility=System +SymbolicName=STATUS_PWD_HISTORY_CONFLICT +Language=English +You have attempted to change your password to one that you have used in the past. +The policy of your user account does not allow this. Please select a password that you have not previously used. +. + +MessageId=0x260 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_HW_PROFILE +Language=English +The specified hardware profile configuration is invalid. +. + +MessageId=0x261 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_PLUGPLAY_DEVICE_PATH +Language=English +The specified Plug and Play registry device path is invalid. +. + +MessageId=0x262 +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_ORDINAL_NOT_FOUND +Language=English +{Driver Entry Point Not Found} +The %hs device driver could not locate the ordinal %ld in driver %hs. +. + +MessageId=0x263 +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_ENTRYPOINT_NOT_FOUND +Language=English +{Driver Entry Point Not Found} +The %hs device driver could not locate the entry point %hs in driver %hs. +. + +MessageId=0x264 +Severity=Error +Facility=System +SymbolicName=STATUS_RESOURCE_NOT_OWNED +Language=English +{Application Error} +The application attempted to release a resource it did not own. Click on OK to terminate the application. +. + +MessageId=0x265 +Severity=Error +Facility=System +SymbolicName=STATUS_TOO_MANY_LINKS +Language=English +An attempt was made to create more links on a file than the file system supports. +. + +MessageId=0x266 +Severity=Error +Facility=System +SymbolicName=STATUS_QUOTA_LIST_INCONSISTENT +Language=English +The specified quota list is internally inconsistent with its descriptor. +. + +MessageId=0x267 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_IS_OFFLINE +Language=English +The specified file has been relocated to offline storage. +. + +MessageId=0x268 +Severity=Error +Facility=System +SymbolicName=STATUS_EVALUATION_EXPIRATION +Language=English +{ReactOS Evaluation Notification} +Your ReactOS will NEVER expire!. +. + +MessageId=0x269 +Severity=Error +Facility=System +SymbolicName=STATUS_ILLEGAL_DLL_RELOCATION +Language=English +{Illegal System DLL Relocation} +The system DLL %hs was relocated in memory. The application will not run properly. +The relocation occurred because the DLL %hs occupied an address range reserved for ReactOS system DLLs. The vendor supplying the DLL should be contacted for a new DLL. +. + +MessageId=0x26c +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_UNABLE_TO_LOAD +Language=English +{Unable to Load Device Driver} +%hs device driver could not be loaded. +Error Status was 0x%x +. + +MessageId=0x270 +Severity=Error +Facility=System +SymbolicName=STATUS_WX86_FLOAT_STACK_CHECK +Language=English +Win32 x86 emulation subsystem Floating-point stack check. +. + +MessageId=0x271 +Severity=Error +Facility=System +SymbolicName=STATUS_VALIDATE_CONTINUE +Language=English +The validation process needs to continue on to the next step. +. + +MessageId=0x272 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_MATCH +Language=English +There was no match for the specified key in the index. +. + +MessageId=0x273 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_MORE_MATCHES +Language=English +There are no more matches for the current index enumeration. +. + +MessageId=0x275 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_A_REPARSE_POINT +Language=English +The NTFS file or directory is not a reparse point. +. + +MessageId=0x276 +Severity=Error +Facility=System +SymbolicName=STATUS_IO_REPARSE_TAG_INVALID +Language=English +The ReactOS I/O reparse tag passed for the NTFS reparse point is invalid. +. + +MessageId=0x277 +Severity=Error +Facility=System +SymbolicName=STATUS_IO_REPARSE_TAG_MISMATCH +Language=English +The ReactOS I/O reparse tag does not match the one present in the NTFS reparse point. +. + +MessageId=0x278 +Severity=Error +Facility=System +SymbolicName=STATUS_IO_REPARSE_DATA_INVALID +Language=English +The user data passed for the NTFS reparse point is invalid. +. + +MessageId=0x279 +Severity=Error +Facility=System +SymbolicName=STATUS_IO_REPARSE_TAG_NOT_HANDLED +Language=English +The layered file system driver for this IO tag did not handle it when needed. +. + +MessageId=0x280 +Severity=Error +Facility=System +SymbolicName=STATUS_REPARSE_POINT_NOT_RESOLVED +Language=English +The NTFS symbolic link could not be resolved even though the initial file name is valid. +. + +MessageId=0x281 +Severity=Error +Facility=System +SymbolicName=STATUS_DIRECTORY_IS_A_REPARSE_POINT +Language=English +The NTFS directory is a reparse point. +. + +MessageId=0x282 +Severity=Error +Facility=System +SymbolicName=STATUS_RANGE_LIST_CONFLICT +Language=English +The range could not be added to the range list because of a conflict. +. + +MessageId=0x283 +Severity=Error +Facility=System +SymbolicName=STATUS_SOURCE_ELEMENT_EMPTY +Language=English +The specified medium changer source element contains no media. +. + +MessageId=0x284 +Severity=Error +Facility=System +SymbolicName=STATUS_DESTINATION_ELEMENT_FULL +Language=English +The specified medium changer destination element already contains media. +. + +MessageId=0x285 +Severity=Error +Facility=System +SymbolicName=STATUS_ILLEGAL_ELEMENT_ADDRESS +Language=English +The specified medium changer element does not exist. +. + +MessageId=0x286 +Severity=Error +Facility=System +SymbolicName=STATUS_MAGAZINE_NOT_PRESENT +Language=English +The specified element is contained within a magazine that is no longer present. +. + +MessageId=0x287 +Severity=Error +Facility=System +SymbolicName=STATUS_REINITIALIZATION_NEEDED +Language=English +The device requires reinitialization due to hardware errors. +. + +MessageId=0x28c +Severity=Error +Facility=System +SymbolicName=STATUS_RANGE_NOT_FOUND +Language=English +The specified range could not be found in the range list. +. + +MessageId=0x290 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_USER_KEYS +Language=English +There are no EFS keys defined for the user. +. + +MessageId=0x291 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_NOT_ENCRYPTED +Language=English +The specified file is not encrypted. +. + +MessageId=0x292 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_EXPORT_FORMAT +Language=English +The specified file is not in the defined EFS export format. +. + +MessageId=0x293 +Severity=Error +Facility=System +SymbolicName=STATUS_FILE_ENCRYPTED +Language=English +The specified file is encrypted and the user does not have the ability to decrypt it. +. + +MessageId=0x295 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_GUID_NOT_FOUND +Language=English +The guid passed was not recognized as valid by a WMI data provider. +. + +MessageId=0x296 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_INSTANCE_NOT_FOUND +Language=English +The instance name passed was not recognized as valid by a WMI data provider. +. + +MessageId=0x297 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_ITEMID_NOT_FOUND +Language=English +The data item id passed was not recognized as valid by a WMI data provider. +. + +MessageId=0x298 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_TRY_AGAIN +Language=English +The WMI request could not be completed and should be retried. +. + +MessageId=0x299 +Severity=Error +Facility=System +SymbolicName=STATUS_SHARED_POLICY +Language=English +The policy object is shared and can only be modified at the root +. + +MessageId=0x29c +Severity=Error +Facility=System +SymbolicName=STATUS_VOLUME_NOT_UPGRADED +Language=English +The volume must be upgraded to enable this feature +. + +MessageId=0x2c1 +Severity=Error +Facility=System +SymbolicName=STATUS_DS_ADMIN_LIMIT_EXCEEDED +Language=English +A directory service resource limit has been exceeded. +. + +MessageId=0x2c2 +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_FAILED_SLEEP +Language=English +{System Standby Failed} +The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode. +. + +MessageId=0x2c3 +Severity=Error +Facility=System +SymbolicName=STATUS_MUTUAL_AUTHENTICATION_FAILED +Language=English +Mutual Authentication failed. The server's password is out of date at the domain controller. +. + +MessageId=0x2c4 +Severity=Error +Facility=System +SymbolicName=STATUS_CORRUPT_SYSTEM_FILE +Language=English +The system file %1 has become corrupt and has been replaced. +. + +MessageId=0x2c5 +Severity=Error +Facility=System +SymbolicName=STATUS_DATATYPE_MISALIGNMENT_ERROR +Language=English +{EXCEPTION} +Alignment Error +A datatype misalignment error was detected in a load or store instruction. +. + +MessageId=0x2c6 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_READ_ONLY +Language=English +The WMI data item or data block is read only. +. + +MessageId=0x2c7 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_SET_FAILURE +Language=English +The WMI data item or data block could not be changed. +. + +MessageId=0x2c8 +Severity=Error +Facility=System +SymbolicName=STATUS_COMMITMENT_MINIMUM +Language=English +{Virtual Memory Minimum Too Low} +Your system is low on virtual memory. ReactOS is increasing the size of your virtual memory paging file. +During this process, memory requests for some applications may be denied. +. + +MessageId=0x2c9 +Severity=Error +Facility=System +SymbolicName=STATUS_REG_NAT_CONSUMPTION +Language=English +{EXCEPTION} +Register NaT consumption faults. +A NaT value is consumed on a non speculative instruction. +. + +MessageId=0x2cc +Severity=Error +Facility=System +SymbolicName=STATUS_ONLY_IF_CONNECTED +Language=English +This operation is supported only when you are connected to the server. +. + +MessageId=0x300 +Severity=Error +Facility=System +SymbolicName=STATUS_NOT_SUPPORTED_ON_SBS +Language=English +ReactOS doesn't have any Small Business Support editions, so this error never appears. +. + +MessageId=0x301 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_GUID_DISCONNECTED +Language=English +The WMI GUID is no longer available +. + +MessageId=0x302 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_ALREADY_DISABLED +Language=English +Collection or events for the WMI GUID is already disabled. +. + +MessageId=0x303 +Severity=Error +Facility=System +SymbolicName=STATUS_WMI_ALREADY_ENABLED +Language=English +Collection or events for the WMI GUID is already enabled. +. + +MessageId=0x304 +Severity=Error +Facility=System +SymbolicName=STATUS_MFT_TOO_FRAGMENTED +Language=English +The Master File Table on the volume is too fragmented to complete this operation. +. + +MessageId=0x305 +Severity=Error +Facility=System +SymbolicName=STATUS_COPY_PROTECTION_FAILURE +Language=English +Copy protection failure. +. + +MessageId=0x306 +Severity=Error +Facility=System +SymbolicName=STATUS_CSS_AUTHENTICATION_FAILURE +Language=English +Copy protection error - DVD CSS Authentication failed. +. + +MessageId=0x307 +Severity=Error +Facility=System +SymbolicName=STATUS_CSS_KEY_NOT_PRESENT +Language=English +Copy protection error - The given sector does not contain a valid key. +. + +MessageId=0x308 +Severity=Error +Facility=System +SymbolicName=STATUS_CSS_KEY_NOT_ESTABLISHED +Language=English +Copy protection error - DVD session key not established. +. + +MessageId=0x309 +Severity=Error +Facility=System +SymbolicName=STATUS_CSS_SCRAMBLED_SECTOR +Language=English +Copy protection error - The read failed because the sector is encrypted. +. + +MessageId=0x320 +Severity=Error +Facility=System +SymbolicName=STATUS_PKINIT_FAILURE +Language=English +The kerberos protocol encountered an error while validating the KDC certificate during smartcard Logon. There +is more information in the system event log. +. + +MessageId=0x321 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_SUBSYSTEM_FAILURE +Language=English +The kerberos protocol encountered an error while attempting to utilize the smartcard subsystem. +. + +MessageId=0x322 +Severity=Error +Facility=System +SymbolicName=STATUS_NO_KERB_KEY +Language=English +The target server does not have acceptable kerberos credentials. +. + +MessageId=0x350 +Severity=Error +Facility=System +SymbolicName=STATUS_HOST_DOWN +Language=English +The transport determined that the remote system is down. +. + +MessageId=0x351 +Severity=Error +Facility=System +SymbolicName=STATUS_UNSUPPORTED_PREAUTH +Language=English +An unsupported preauthentication mechanism was presented to the kerberos package. +. + +MessageId=0x352 +Severity=Error +Facility=System +SymbolicName=STATUS_EFS_ALG_BLOB_TOO_BIG +Language=English +The encryption algorithm used on the source file needs a bigger key buffer than the one used on the destination file. +. + +MessageId=0x353 +Severity=Error +Facility=System +SymbolicName=STATUS_PORT_NOT_SET +Language=English +An attempt to remove a processes DebugPort was made, but a port was not already associated with the process. +. + +MessageId=0x354 +Severity=Error +Facility=System +SymbolicName=STATUS_DEBUGGER_INACTIVE +Language=English +An attempt to do an operation on a debug port failed because the port is in the process of being deleted. +. + +MessageId=0x355 +Severity=Error +Facility=System +SymbolicName=STATUS_DS_VERSION_CHECK_FAILURE +Language=English +This version of ReactOS is not compatible with the behavior version of directory forest, domain or domain controller. +. + +MessageId=0x356 +Severity=Error +Facility=System +SymbolicName=STATUS_AUDITING_DISABLED +Language=English +The specified event is currently not being audited. +. + +MessageId=0x357 +Severity=Error +Facility=System +SymbolicName=STATUS_PRENT4_MACHINE_ACCOUNT +Language=English +The machine account was created pre-NT4. The account needs to be recreated. +. + +MessageId=0x358 +Severity=Error +Facility=System +SymbolicName=STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER +Language=English +A account group can not have a universal group as a member. +. + +MessageId=0x359 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_IMAGE_WIN_32 +Language=English +The specified image file did not have the correct format, it appears to be a 32-bit Windows image. +. + +MessageId=0x35c +Severity=Error +Facility=System +SymbolicName=STATUS_NETWORK_SESSION_EXPIRED +Language=English +The client's session has expired, so the client must reauthenticate to continue accessing the remote resources. +. + +MessageId=0x361 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT +Language=English +Access to %1 has been restricted by your Administrator by the default software restriction policy level. +. + +MessageId=0x362 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_PATH +Language=English +Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3 +. + +MessageId=0x363 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER +Language=English +Access to %1 has been restricted by your Administrator by software publisher policy. +. + +MessageId=0x364 +Severity=Error +Facility=System +SymbolicName=STATUS_ACCESS_DISABLED_BY_POLICY_OTHER +Language=English +Access to %1 has been restricted by your Administrator by policy rule %2. +. + +MessageId=0x365 +Severity=Error +Facility=System +SymbolicName=STATUS_FAILED_DRIVER_ENTRY +Language=English +The driver was not loaded because it failed it's initialization call. +. + +MessageId=0x366 +Severity=Error +Facility=System +SymbolicName=STATUS_DEVICE_ENUMERATION_ERROR +Language=English +The "%hs" encountered an error while applying power or reading the device configuration. +This may be caused by a failure of your hardware or by a poor connection. +. + +MessageId=0x368 +Severity=Error +Facility=System +SymbolicName=STATUS_MOUNT_POINT_NOT_RESOLVED +Language=English +The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached. +. + +MessageId=0x369 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_DEVICE_OBJECT_PARAMETER +Language=English +The device object parameter is either not a valid device object or is not attached to the volume specified by the file name. +. + +MessageId=0x36c +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_BLOCKED +Language=English +Driver %2 has been blocked from loading. +. + +MessageId=0x380 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_WRONG_PIN +Language=English +An incorrect PIN was presented to the smart card +. + +MessageId=0x381 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_CARD_BLOCKED +Language=English +The smart card is blocked +. + +MessageId=0x382 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED +Language=English +No PIN was presented to the smart card +. + +MessageId=0x383 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_NO_CARD +Language=English +No smart card available +. + +MessageId=0x384 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_NO_KEY_CONTAINER +Language=English +The requested key container does not exist on the smart card +. + +MessageId=0x385 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_NO_CERTIFICATE +Language=English +The requested certificate does not exist on the smart card +. + +MessageId=0x386 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_NO_KEYSET +Language=English +The requested keyset does not exist +. + +MessageId=0x387 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_IO_ERROR +Language=English +A communication error with the smart card has been detected. +. + +MessageId=0x388 +Severity=Error +Facility=System +SymbolicName=STATUS_DOWNGRADE_DETECTED +Language=English +The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you. +. + +MessageId=0x389 +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_CERT_REVOKED +Language=English +The smartcard certificate used for authentication has been revoked. +Please contact your system administrator. There may be additional information in the +event log. +. + +MessageId=0x38c +Severity=Error +Facility=System +SymbolicName=STATUS_PKINIT_CLIENT_FAILURE +Language=English +The smartcard certificate used for authentication was not trusted. Please +contact your system administrator. +. + +MessageId=0x38d +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_CERT_EXPIRED +Language=English +The smartcard certificate used for authentication has expired. Please +contact your system administrator. +. + +MessageId=0x38e +Severity=Error +Facility=System +SymbolicName=STATUS_DRIVER_FAILED_PRIOR_UNLOAD +Language=English +The driver could not be installed because a previous version is still loaded. +. + +MessageId=0x38f +Severity=Error +Facility=System +SymbolicName=STATUS_SMARTCARD_SILENT_CONTEXT +Language=English +The smartcard operation requires user interaction but the context was acquired as silent. +. + +MessageId=0x401 +Severity=Error +Facility=System +SymbolicName=STATUS_PER_USER_TRUST_QUOTA_EXCEEDED +Language=English +The quota for delegated trust creation was exceeded for the current user. +. + +MessageId=0x402 +Severity=Error +Facility=System +SymbolicName=STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED +Language=English +The overall quota for delegated trust creation was exceeded. +. + +MessageId=0x403 +Severity=Error +Facility=System +SymbolicName=STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED +Language=English +The quota for delegated trust deletion was exceeded for the current user. +. + +MessageId=0x404 +Severity=Error +Facility=System +SymbolicName=STATUS_DS_NAME_NOT_UNIQUE +Language=English +The specified Directory Services name already exists. +. + +MessageId=0x405 +Severity=Error +Facility=System +SymbolicName=STATUS_DS_DUPLICATE_ID_FOUND +Language=English +The requested object could not be retrieved because the specified identifier is not unique. +. + +MessageId=0x406 +Severity=Error +Facility=System +SymbolicName=STATUS_DS_GROUP_CONVERSION_ERROR +Language=English +The Directory Services group cannot be converted. +. + +MessageId=0x407 +Severity=Error +Facility=System +SymbolicName=STATUS_VOLSNAP_PREPARE_HIBERNATE +Language=English +{Volume Shadow Copy Service} +The volume %hs is busy because it is being prepared for hibernation. +. + +MessageId=0x408 +Severity=Error +Facility=System +SymbolicName=STATUS_USER2USER_REQUIRED +Language=English +The Kerberos User to User protocol is required. +. + +MessageId=0x409 +Severity=Error +Facility=System +SymbolicName=STATUS_STACK_BUFFER_OVERRUN +Language=English +An out-of-bounds access to a stack buffer was detected. This indicates an +error in the application that could be exploited by a malicious user. +. + +MessageId=0x40a +Severity=Error +Facility=System +SymbolicName=STATUS_NO_S4U_PROT_SUPPORT +Language=English +The domain controller does not support the Kerberos Service for User protocol. +. + +MessageId=0x425 +Severity=Error +Facility=System +SymbolicName=STATUS_HIVE_UNLOADED +Language=English +The operation is not valid because the registry hive was unloaded. +. + +MessageId=0x9898 +Severity=Error +Facility=System +SymbolicName=STATUS_WOW_ASSERTION +Language=English +WOW Assertion Error. +. + +MessageId=0xa000 +Severity=Error +Facility=System +SymbolicName=STATUS_INVALID_SIGNATURE +Language=English +The cryptographic signature is invalid. +. + +MessageId=0xa001 +Severity=Error +Facility=System +SymbolicName=STATUS_HMAC_NOT_SUPPORTED +Language=English +Keyed-hash message authentication code (HMAC) is not supported. +. + +MessageId=0xa010 +Severity=Error +Facility=System +SymbolicName=STATUS_IPSEC_QUEUE_OVERFLOW +Language=English +An overflow of the IPSec queue was encountered. +. + +MessageId=0xa011 +Severity=Error +Facility=System +SymbolicName=STATUS_ND_QUEUE_OVERFLOW +Language=English +An overflow of the Neighbor Discovery (NDP) queue was encountered. +. + +MessageId=0xa012 +Severity=Error +Facility=System +SymbolicName=STATUS_HOPLIMIT_EXCEEDED +Language=English +An ICMP "Time Exceeded" error message was received. +. + +MessageId=0xa013 +Severity=Error +Facility=System +SymbolicName=STATUS_PROTOCOL_NOT_SUPPORTED +Language=English +The protocol is not installed. +. + +MessageId=0x1 +Severity=Error +Facility=Debugger +SymbolicName=DBG_NO_STATE_CHANGE +Language=English +Debugger did not perform a state change. +. + +MessageId=0x2 +Severity=Error +Facility=Debugger +SymbolicName=DBG_APP_NOT_IDLE +Language=English +Debugger has found the application is not idle. +. + +MessageId=0x1 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_STRING_BINDING +Language=English +The string binding is invalid. +. + +MessageId=0x2 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_WRONG_KIND_OF_BINDING +Language=English +The binding handle is not the correct type. +. + +MessageId=0x3 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_BINDING +Language=English +The binding handle is invalid. +. + +MessageId=0x4 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_PROTSEQ_NOT_SUPPORTED +Language=English +The RPC protocol sequence is not supported. +. + +MessageId=0x5 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_RPC_PROTSEQ +Language=English +The RPC protocol sequence is invalid. +. + +MessageId=0x6 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_STRING_UUID +Language=English +The string UUID is invalid. +. + +MessageId=0x7 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_ENDPOINT_FORMAT +Language=English +The endpoint format is invalid. +. + +MessageId=0x8 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_NET_ADDR +Language=English +The network address is invalid. +. + +MessageId=0x9 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NO_ENDPOINT_FOUND +Language=English +No endpoint was found. +. + +MessageId=0xc +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_ALREADY_REGISTERED +Language=English +The object UUID has already been registered. +. + +MessageId=0x10 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NOT_LISTENING +Language=English +The RPC server is not listening. +. + +MessageId=0x11 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNKNOWN_MGR_TYPE +Language=English +The manager type is unknown. +. + +MessageId=0x12 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNKNOWN_IF +Language=English +The interface is unknown. +. + +MessageId=0x13 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NO_BINDINGS +Language=English +There are no bindings. +. + +MessageId=0x14 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NO_PROTSEQS +Language=English +There are no protocol sequences. +. + +MessageId=0x15 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_CANT_CREATE_ENDPOINT +Language=English +The endpoint cannot be created. +. + +MessageId=0x16 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_OUT_OF_RESOURCES +Language=English +Not enough resources are available to complete this operation. +. + +MessageId=0x17 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_SERVER_UNAVAILABLE +Language=English +The RPC server is unavailable. +. + +MessageId=0x18 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_SERVER_TOO_BUSY +Language=English +The RPC server is too busy to complete this operation. +. + +MessageId=0x19 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_NETWORK_OPTIONS +Language=English +The network options are invalid. +. + +MessageId=0x1c +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_CALL_FAILED_DNE +Language=English +The remote procedure call failed and did not execute. +. + +MessageId=0x21 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNSUPPORTED_TYPE +Language=English +The type UUID is not supported. +. + +MessageId=0x22 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_TAG +Language=English +The tag is invalid. +. + +MessageId=0x23 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_BOUND +Language=English +The array bounds are invalid. +. + +MessageId=0x24 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NO_ENTRY_NAME +Language=English +The binding does not contain an entry name. +. + +MessageId=0x25 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_NAME_SYNTAX +Language=English +The name syntax is invalid. +. + +MessageId=0x26 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNSUPPORTED_NAME_SYNTAX +Language=English +The name syntax is not supported. +. + +MessageId=0x28 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UUID_NO_ADDRESS +Language=English +No network address is available to use to construct a UUID. +. + +MessageId=0x29 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_DUPLICATE_ENDPOINT +Language=English +The endpoint is a duplicate. +. + +MessageId=0x2c +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_STRING_TOO_LONG +Language=English +The string is too long. +. + +MessageId=0x30 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNKNOWN_AUTHN_SERVICE +Language=English +The authentication service is unknown. +. + +MessageId=0x31 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNKNOWN_AUTHN_LEVEL +Language=English +The authentication level is unknown. +. + +MessageId=0x32 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_AUTH_IDENTITY +Language=English +The security context is invalid. +. + +MessageId=0x33 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNKNOWN_AUTHZ_SERVICE +Language=English +The authorization service is unknown. +. + +MessageId=0x34 +Severity=Error +Facility=RpcRuntime +SymbolicName=EPT_NT_INVALID_ENTRY +Language=English +The entry is invalid. +. + +MessageId=0x35 +Severity=Error +Facility=RpcRuntime +SymbolicName=EPT_NT_CANT_PERFORM_OP +Language=English +The operation cannot be performed. +. + +MessageId=0x36 +Severity=Error +Facility=RpcRuntime +SymbolicName=EPT_NT_NOT_REGISTERED +Language=English +There are no more endpoints available from the endpoint mapper. +. + +MessageId=0x37 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NOTHING_TO_EXPORT +Language=English +No interfaces have been exported. +. + +MessageId=0x38 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INCOMPLETE_NAME +Language=English +The entry name is incomplete. +. + +MessageId=0x39 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_VERS_OPTION +Language=English +The version option is invalid. +. + +MessageId=0x3c +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INTERFACE_NOT_FOUND +Language=English +The interface was not found. +. + +MessageId=0x40 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_NAF_ID +Language=English +The network address family is invalid. +. + +MessageId=0x41 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_CANNOT_SUPPORT +Language=English +The requested operation is not supported. +. + +MessageId=0x42 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NO_CONTEXT_AVAILABLE +Language=English +No security context is available to allow impersonation. +. + +MessageId=0x43 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INTERNAL_ERROR +Language=English +An internal error occurred in RPC. +. + +MessageId=0x44 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_ZERO_DIVIDE +Language=English +The RPC server attempted an integer divide by zero. +. + +MessageId=0x45 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_ADDRESS_ERROR +Language=English +An addressing error occurred in the RPC server. +. + +MessageId=0x46 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_FP_DIV_ZERO +Language=English +A floating point operation at the RPC server caused a divide by zero. +. + +MessageId=0x47 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_FP_UNDERFLOW +Language=English +A floating point underflow occurred at the RPC server. +. + +MessageId=0x48 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_FP_OVERFLOW +Language=English +A floating point overflow occurred at the RPC server. +. + +MessageId=0x49 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_CALL_IN_PROGRESS +Language=English +A remote procedure call is already in progress for this thread. +. + +MessageId=0x4c +Severity=Error +Facility=RpcRuntime +SymbolicName=EPT_NT_CANT_CREATE +Language=English +The endpoint mapper database entry could not be created. +. + +MessageId=0x50 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_CALL_CANCELLED +Language=English +The remote procedure call was cancelled. +. + +MessageId=0x51 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_BINDING_INCOMPLETE +Language=English +The binding handle does not contain all required information. +. + +MessageId=0x52 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_COMM_FAILURE +Language=English +A communications failure occurred during a remote procedure call. +. + +MessageId=0x53 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_UNSUPPORTED_AUTHN_LEVEL +Language=English +The requested authentication level is not supported. +. + +MessageId=0x54 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NO_PRINC_NAME +Language=English +No principal name registered. +. + +MessageId=0x55 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NOT_RPC_ERROR +Language=English +The error specified is not a valid ReactOS RPC error code. +. + +MessageId=0x57 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_SEC_PKG_ERROR +Language=English +A security package specific error occurred. +. + +MessageId=0x58 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_NOT_CANCELLED +Language=English +Thread is not cancelled. +. + +MessageId=0x62 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_ASYNC_HANDLE +Language=English +Invalid asynchronous remote procedure call handle. +. + +MessageId=0x63 +Severity=Error +Facility=RpcRuntime +SymbolicName=RPC_NT_INVALID_ASYNC_CALL +Language=English +Invalid asynchronous RPC call handle for this operation. +. + +MessageId=0x1 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_NO_MORE_ENTRIES +Language=English +The list of RPC servers available for auto-handle binding has been exhausted. +. + +MessageId=0x2 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_CHAR_TRANS_OPEN_FAIL +Language=English +The file designated by DCERPCCHARTRANS cannot be opened. +. + +MessageId=0x3 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_CHAR_TRANS_SHORT_FILE +Language=English +The file containing the character translation table has fewer than 512 bytes. +. + +MessageId=0x4 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_IN_NULL_CONTEXT +Language=English +A null context handle is passed as an [in] parameter. +. + +MessageId=0x5 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_CONTEXT_MISMATCH +Language=English +The context handle does not match any known context handles. +. + +MessageId=0x6 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_CONTEXT_DAMAGED +Language=English +The context handle changed during a call. +. + +MessageId=0x7 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_HANDLES_MISMATCH +Language=English +The binding handles passed to a remote procedure call do not match. +. + +MessageId=0x8 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_SS_CANNOT_GET_CALL_HANDLE +Language=English +The stub is unable to get the call handle. +. + +MessageId=0x9 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_NULL_REF_POINTER +Language=English +A null reference pointer was passed to the stub. +. + +MessageId=0xc +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_BAD_STUB_DATA +Language=English +The stub received bad data. +. + +MessageId=0x59 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_INVALID_ES_ACTION +Language=English +Invalid operation on the encoding/decoding handle. +. + +MessageId=0x5c +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_INVALID_PIPE_OBJECT +Language=English +The RPC pipe object is invalid or corrupted. +. + +MessageId=0x60 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_PIPE_DISCIPLINE_ERROR +Language=English +The RPC call completed before all pipes were processed. +. + +MessageId=0x61 +Severity=Error +Facility=RpcStubs +SymbolicName=RPC_NT_PIPE_EMPTY +Language=English +No more data is available from the RPC pipe. +. + +MessageId=0x35 +Severity=Error +Facility=Io +SymbolicName=STATUS_PNP_BAD_MPS_TABLE +Language=English +A device is missing in the system BIOS MPS table. This device will not be used. +Please contact your system vendor for system BIOS update. +. + +MessageId=0x36 +Severity=Error +Facility=Io +SymbolicName=STATUS_PNP_TRANSLATION_FAILED +Language=English +A translator failed to translate resources. +. + +MessageId=0x37 +Severity=Error +Facility=Io +SymbolicName=STATUS_PNP_IRQ_TRANSLATION_FAILED +Language=English +A IRQ translator failed to translate resources. +. + +MessageId=0x1 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_INVALID_NODE +Language=English +The cluster node is not valid. +. + +MessageId=0x2 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_EXISTS +Language=English +The cluster node already exists. +. + +MessageId=0x3 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_JOIN_IN_PROGRESS +Language=English +A node is in the process of joining the cluster. +. + +MessageId=0x4 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_NOT_FOUND +Language=English +The cluster node was not found. +. + +MessageId=0x5 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND +Language=English +The cluster local node information was not found. +. + +MessageId=0x6 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETWORK_EXISTS +Language=English +The cluster network already exists. +. + +MessageId=0x7 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETWORK_NOT_FOUND +Language=English +The cluster network was not found. +. + +MessageId=0x8 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETINTERFACE_EXISTS +Language=English +The cluster network interface already exists. +. + +MessageId=0x9 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETINTERFACE_NOT_FOUND +Language=English +The cluster network interface was not found. +. + +MessageId=0xc +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_DOWN +Language=English +The cluster node is down. +. + +MessageId=0x10 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_INVALID_NETWORK +Language=English +The cluster network is not valid. +. + +MessageId=0x11 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NO_NET_ADAPTERS +Language=English +No network adapters are available. +. + +MessageId=0x12 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_UP +Language=English +The cluster node is up. +. + +MessageId=0x13 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_PAUSED +Language=English +The cluster node is paused. +. + +MessageId=0x14 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NODE_NOT_PAUSED +Language=English +The cluster node is not paused. +. + +MessageId=0x15 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NO_SECURITY_CONTEXT +Language=English +No cluster security context is available. +. + +MessageId=0x16 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_NETWORK_NOT_INTERNAL +Language=English +The cluster network is not configured for internal cluster communication. +. + +MessageId=0x17 +Severity=Error +Facility=Cluster +SymbolicName=STATUS_CLUSTER_POISONED +Language=English +The cluster node has been poisoned. +. + +MessageId=0x1 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_OPCODE +Language=English +An attempt was made to run an invalid AML opcode +. + +MessageId=0x2 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_STACK_OVERFLOW +Language=English +The AML Interpreter Stack has overflowed +. + +MessageId=0x3 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_ASSERT_FAILED +Language=English +An inconsistent state has occurred +. + +MessageId=0x4 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_INDEX +Language=English +An attempt was made to access an array outside of its bounds +. + +MessageId=0x5 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_ARGUMENT +Language=English +A required argument was not specified +. + +MessageId=0x6 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_FATAL +Language=English +A fatal error has occurred +. + +MessageId=0x7 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_SUPERNAME +Language=English +An invalid SuperName was specified +. + +MessageId=0x8 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_ARGTYPE +Language=English +An argument with an incorrect type was specified +. + +MessageId=0x9 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_OBJTYPE +Language=English +An object with an incorrect type was specified +. + +MessageId=0xc +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_ADDRESS_NOT_MAPPED +Language=English +An address failed to translate +. + +MessageId=0x10 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_REGION +Language=English +An invalid region for the target was specified +. + +MessageId=0x11 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_ACCESS_SIZE +Language=English +An attempt was made to access a field outside of the defined range +. + +MessageId=0x12 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_ACQUIRE_GLOBAL_LOCK +Language=English +The Global system lock could not be acquired +. + +MessageId=0x13 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_ALREADY_INITIALIZED +Language=English +An attempt was made to reinitialize the ACPI subsystem +. + +MessageId=0x14 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_NOT_INITIALIZED +Language=English +The ACPI subsystem has not been initialized +. + +MessageId=0x15 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_MUTEX_LEVEL +Language=English +An incorrect mutex was specified +. + +MessageId=0x16 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_MUTEX_NOT_OWNED +Language=English +The mutex is not currently owned +. + +MessageId=0x17 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_MUTEX_NOT_OWNER +Language=English +An attempt was made to access the mutex by a process that was not the owner +. + +MessageId=0x18 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_RS_ACCESS +Language=English +An error occurred during an access to Region Space +. + +MessageId=0x19 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_INVALID_TABLE +Language=English +An attempt was made to use an incorrect table +. + +MessageId=0x20 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_REG_HANDLER_FAILED +Language=English +The registration of an ACPI event failed +. + +MessageId=0x21 +Severity=Error +Facility=ACPI +SymbolicName=STATUS_ACPI_POWER_REQUEST_FAILED +Language=English +An ACPI Power Object failed to transition state +. + +MessageId=0x1 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_SECTION_NOT_FOUND +Language=English +The requested section is not present in the activation context. +. + +MessageId=0x2 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_CANT_GEN_ACTCTX +Language=English +ReactOS was not able to process the application binding information. +Please refer to your System Event Log for further information. +. + +MessageId=0x3 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_INVALID_ACTCTXDATA_FORMAT +Language=English +The application binding data format is invalid. +. + +MessageId=0x4 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_ASSEMBLY_NOT_FOUND +Language=English +The referenced assembly is not installed on your system. +. + +MessageId=0x5 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_MANIFEST_FORMAT_ERROR +Language=English +The manifest file does not begin with the required tag and format information. +. + +MessageId=0x6 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_MANIFEST_PARSE_ERROR +Language=English +The manifest file contains one or more syntax errors. +. + +MessageId=0x7 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_ACTIVATION_CONTEXT_DISABLED +Language=English +The application attempted to activate a disabled activation context. +. + +MessageId=0x8 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_KEY_NOT_FOUND +Language=English +The requested lookup key was not found in any active activation context. +. + +MessageId=0x9 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_VERSION_CONFLICT +Language=English +A component version required by the application conflicts with another component version already active. +. + +MessageId=0xc +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_ASSEMBLY_MISSING +Language=English +The referenced assembly could not be found. +. + +MessageId=0x10 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_INVALID_DEACTIVATION +Language=English +The activation context being deactivated is not active for the current thread of execution. +. + +MessageId=0x11 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_MULTIPLE_DEACTIVATION +Language=English +The activation context being deactivated has already been deactivated. +. + +MessageId=0x12 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY +Language=English +The activation context of system default assembly could not be generated. +. + +MessageId=0x13 +Severity=Error +Facility=SXS +SymbolicName=STATUS_SXS_PROCESS_TERMINATION_REQUESTED +Language=English +A component used by the isolation facility has requested to terminate the process. +. diff --git a/sdk/include/reactos/mc/pciclass.mc b/sdk/include/reactos/mc/pciclass.mc index a90a9e77d93..d41b6f35a78 100644 --- a/sdk/include/reactos/mc/pciclass.mc +++ b/sdk/include/reactos/mc/pciclass.mc @@ -1,599 +1,599 @@ -MessageId=0 -SymbolicName=NONE -Language=English -PCI Device -. - -MessageId=1 -SymbolicName=NONE -Language=English -VGA Device -. - -MessageId=256 -SymbolicName=NONE -Language=English -SCSI Controller -. - -MessageId=257 -SymbolicName=NONE -Language=English -IDE Controller -. - -MessageId=258 -SymbolicName=NONE -Language=English -Floppy Controller -. - -MessageId=259 -SymbolicName=NONE -Language=English -IPI Controller -. - -MessageId=260 -SymbolicName=NONE -Language=English -RAID Controller -. - -MessageId=261 -SymbolicName=NONE -Language=English -ATA Controller -. - -MessageId=262 -SymbolicName=NONE -Language=English -Serial ATA Controller -. - -MessageId=263 -SymbolicName=NONE -Language=English -SAS Controller -. - -MessageId=384 -SymbolicName=NONE -Language=English -Mass Storage Controller -. - -MessageId=512 -SymbolicName=NONE -Language=English -Ethernet Controller -. - -MessageId=513 -SymbolicName=NONE -Language=English -Token Ring Network Controller -. - -MessageId=514 -SymbolicName=NONE -Language=English -FDDI Network Controller -. - -MessageId=515 -SymbolicName=NONE -Language=English -ATM Network Controller -. - -MessageId=516 -SymbolicName=NONE -Language=English -ISDN Controller -. - -MessageId=517 -SymbolicName=NONE -Language=English -WorldFip Controller -. - -MessageId=640 -SymbolicName=NONE -Language=English -Network Controller -. - -MessageId=768 -SymbolicName=NONE -Language=English -Video Controller (VGA Compatible) -. - -MessageId=769 -SymbolicName=NONE -Language=English -Video Controller (VGA Compatible) -. - -MessageId=770 -SymbolicName=NONE -Language=English -3D Video Controller -. - -MessageId=896 -SymbolicName=NONE -Language=English -Video Controller -. - -MessageId=1024 -SymbolicName=NONE -Language=English -Multimedia Video Controller -. - -MessageId=1025 -SymbolicName=NONE -Language=English -Multimedia Audio Controller -. - -MessageId=1026 -SymbolicName=NONE -Language=English -Computer Telephony Device -. - -MessageId=1152 -SymbolicName=NONE -Language=English -Multimedia Controller -. - -MessageId=1280 -SymbolicName=NONE -Language=English -PCI Memory -. - -MessageId=1281 -SymbolicName=NONE -Language=English -PCI FLASH Memory -. - -MessageId=1408 -SymbolicName=NONE -Language=English -PCI Memory Controller -. - -MessageId=1536 -SymbolicName=NONE -Language=English -PCI HOST Bridge -. - -MessageId=1537 -SymbolicName=NONE -Language=English -PCI to ISA Bridge -. - -MessageId=1538 -SymbolicName=NONE -Language=English -PCI to EISA Bridge -. - -MessageId=1539 -SymbolicName=NONE -Language=English -PCI to Micro Channel Bridge -. - -MessageId=1540 -SymbolicName=NONE -Language=English -PCI to PCI Bridge -. - -MessageId=1541 -SymbolicName=NONE -Language=English -PCI to PCMCIA Bridge -. - -MessageId=1542 -SymbolicName=NONE -Language=English -PCI to NUBUS Bridge -. - -MessageId=1543 -SymbolicName=NONE -Language=English -PCI to CARDBUS Bridge -. - -MessageId=1544 -SymbolicName=NONE -Language=English -PCI to RACEway Bridge -. - -MessageId=1545 -SymbolicName=NONE -Language=English -Semi-transparent PCI to PCI Bridge -. - -MessageId=1546 -SymbolicName=NONE -Language=English -Infiniband to PCI Host Bridge -. - -MessageId=1664 -SymbolicName=NONE -Language=English -Other PCI Bridge Device -. - -MessageId=1792 -SymbolicName=NONE -Language=English -PCI Serial Port -. - -MessageId=1793 -SymbolicName=NONE -Language=English -PCI Parallel Port -. - -MessageId=1794 -SymbolicName=NONE -Language=English -PCI Multiport Serial Controller -. - -MessageId=1795 -SymbolicName=NONE -Language=English -PCI Modem -. - -MessageId=1796 -SymbolicName=NONE -Language=English -PCI GBIB Controller -. - -MessageId=1797 -SymbolicName=NONE -Language=English -PCI Smart Card -. - -MessageId=1920 -SymbolicName=NONE -Language=English -PCI Simple Communications Controller -. - -MessageId=2048 -SymbolicName=NONE -Language=English -System Interrupt Controller -. - -MessageId=2049 -SymbolicName=NONE -Language=English -System DMA Controller -. - -MessageId=2050 -SymbolicName=NONE -Language=English -System Timer -. - -MessageId=2051 -SymbolicName=NONE -Language=English -Real Time CLock -. - -MessageId=2052 -SymbolicName=NONE -Language=English -Generic PCI Hot-Plug Controller -. - -MessageId=2053 -SymbolicName=NONE -Language=English -SD Host Controller -. - -MessageId=2173 -SymbolicName=NONE -Language=English -Base System Device -. - -MessageId=2304 -SymbolicName=NONE -Language=English -PCI Keyboard Controller -. - -MessageId=2305 -SymbolicName=NONE -Language=English -PCI Digitizer -. - -MessageId=2306 -SymbolicName=NONE -Language=English -PCI Mouse Controller -. - -MessageId=2307 -SymbolicName=NONE -Language=English -PCI Scanner Controller -. - -MessageId=2308 -SymbolicName=NONE -Language=English -PCI Gameport Controller -. - -MessageId=2432 -SymbolicName=NONE -Language=English -PCI Input Device -. - -MessageId=2560 -SymbolicName=NONE -Language=English -Docking Station -. - -MessageId=2688 -SymbolicName=NONE -Language=English -Docking Station (Unknown type) -. - -MessageId=2816 -SymbolicName=NONE -Language=English -386 Processor -. - -MessageId=2817 -SymbolicName=NONE -Language=English -486 Processor -. - -MessageId=2818 -SymbolicName=NONE -Language=English -Pentium Processor -. - -MessageId=2832 -SymbolicName=NONE -Language=English -ALPHA Processor -. - -MessageId=2848 -SymbolicName=NONE -Language=English -PowerPC Processor -. - -MessageId=2880 -SymbolicName=NONE -Language=English -Coprocessor -. - -MessageId=3072 -SymbolicName=NONE -Language=English -IEEE 1394 Controller -. - -MessageId=3073 -SymbolicName=NONE -Language=English -ACCESS Bus Controller -. - -MessageId=3074 -SymbolicName=NONE -Language=English -SSA Controller -. - -MessageId=3075 -SymbolicName=NONE -Language=English -Universal Serial Bus (USB) Controller -. - -MessageId=3076 -SymbolicName=NONE -Language=English -Fibre Channel Controller -. - -MessageId=3077 -SymbolicName=NONE -Language=English -SM Bus Controller -. - -MessageId=3078 -SymbolicName=NONE -Language=English -Infiniband Controller -. - -MessageId=3079 -SymbolicName=NONE -Language=English -IPMI Interface -. - -MessageId=3080 -SymbolicName=NONE -Language=English -SERCOS Interface -. - -MessageId=3081 -SymbolicName=NONE -Language=English -CANbus Controller -. - -MessageId=3328 -SymbolicName=NONE -Language=English -iRDA Compatible Controller -. - -MessageId=3329 -SymbolicName=NONE -Language=English -Consumer IR Controller -. - -MessageId=3344 -SymbolicName=NONE -Language=English -RF Controller -. - -MessageId=3345 -SymbolicName=NONE -Language=English -Bluetooth Controller -. - -MessageId=3346 -SymbolicName=NONE -Language=English -Broadband Controller -. - -MessageId=3360 -SymbolicName=NONE -Language=English -Ethernet 802.11a Controller -. - -MessageId=3361 -SymbolicName=NONE -Language=English -Ethernet 802.11b Controller -. - -MessageId=3456 -SymbolicName=NONE -Language=English -PCI Wireless Controller -. - -MessageId=3584 -SymbolicName=NONE -Language=English -Intelligent I/O (I2O) Controller -. - -MessageId=3841 -SymbolicName=NONE -Language=English -Satellite Communications Television Controller -. - -MessageId=3842 -SymbolicName=NONE -Language=English -Satellite Communications Audio Controller -. - -MessageId=3843 -SymbolicName=NONE -Language=English -Satellite Communications Voice Controller -. - -MessageId=3844 -SymbolicName=NONE -Language=English -Satellite Communications Data Controller -. - -MessageId=4096 -SymbolicName=NONE -Language=English -Network and Computing Encryption/Decryption Controller -. - -MessageId=4112 -SymbolicName=NONE -Language=English -Entertainment Encryption/Decryption Controller -. - -MessageId=4224 -SymbolicName=NONE -Language=English -PCI Encryption/Decryption Controller -. - -MessageId=4352 -SymbolicName=NONE -Language=English -DPIO Module -. - -MessageId=4353 -SymbolicName=NONE -Language=English -Performance Counters -. - -MessageId=4368 -SymbolicName=NONE -Language=English -PCI Communications Synchronization plus Time and Frequency Test/Measurement Controller -. - -MessageId=4384 -SymbolicName=NONE -Language=English -Management Card -. - -MessageId=4480 -SymbolicName=NONE -Language=English -PCI Data Acquisition and Signal Processing Controller -. +MessageId=0 +SymbolicName=NONE +Language=English +PCI Device +. + +MessageId=1 +SymbolicName=NONE +Language=English +VGA Device +. + +MessageId=256 +SymbolicName=NONE +Language=English +SCSI Controller +. + +MessageId=257 +SymbolicName=NONE +Language=English +IDE Controller +. + +MessageId=258 +SymbolicName=NONE +Language=English +Floppy Controller +. + +MessageId=259 +SymbolicName=NONE +Language=English +IPI Controller +. + +MessageId=260 +SymbolicName=NONE +Language=English +RAID Controller +. + +MessageId=261 +SymbolicName=NONE +Language=English +ATA Controller +. + +MessageId=262 +SymbolicName=NONE +Language=English +Serial ATA Controller +. + +MessageId=263 +SymbolicName=NONE +Language=English +SAS Controller +. + +MessageId=384 +SymbolicName=NONE +Language=English +Mass Storage Controller +. + +MessageId=512 +SymbolicName=NONE +Language=English +Ethernet Controller +. + +MessageId=513 +SymbolicName=NONE +Language=English +Token Ring Network Controller +. + +MessageId=514 +SymbolicName=NONE +Language=English +FDDI Network Controller +. + +MessageId=515 +SymbolicName=NONE +Language=English +ATM Network Controller +. + +MessageId=516 +SymbolicName=NONE +Language=English +ISDN Controller +. + +MessageId=517 +SymbolicName=NONE +Language=English +WorldFip Controller +. + +MessageId=640 +SymbolicName=NONE +Language=English +Network Controller +. + +MessageId=768 +SymbolicName=NONE +Language=English +Video Controller (VGA Compatible) +. + +MessageId=769 +SymbolicName=NONE +Language=English +Video Controller (VGA Compatible) +. + +MessageId=770 +SymbolicName=NONE +Language=English +3D Video Controller +. + +MessageId=896 +SymbolicName=NONE +Language=English +Video Controller +. + +MessageId=1024 +SymbolicName=NONE +Language=English +Multimedia Video Controller +. + +MessageId=1025 +SymbolicName=NONE +Language=English +Multimedia Audio Controller +. + +MessageId=1026 +SymbolicName=NONE +Language=English +Computer Telephony Device +. + +MessageId=1152 +SymbolicName=NONE +Language=English +Multimedia Controller +. + +MessageId=1280 +SymbolicName=NONE +Language=English +PCI Memory +. + +MessageId=1281 +SymbolicName=NONE +Language=English +PCI FLASH Memory +. + +MessageId=1408 +SymbolicName=NONE +Language=English +PCI Memory Controller +. + +MessageId=1536 +SymbolicName=NONE +Language=English +PCI HOST Bridge +. + +MessageId=1537 +SymbolicName=NONE +Language=English +PCI to ISA Bridge +. + +MessageId=1538 +SymbolicName=NONE +Language=English +PCI to EISA Bridge +. + +MessageId=1539 +SymbolicName=NONE +Language=English +PCI to Micro Channel Bridge +. + +MessageId=1540 +SymbolicName=NONE +Language=English +PCI to PCI Bridge +. + +MessageId=1541 +SymbolicName=NONE +Language=English +PCI to PCMCIA Bridge +. + +MessageId=1542 +SymbolicName=NONE +Language=English +PCI to NUBUS Bridge +. + +MessageId=1543 +SymbolicName=NONE +Language=English +PCI to CARDBUS Bridge +. + +MessageId=1544 +SymbolicName=NONE +Language=English +PCI to RACEway Bridge +. + +MessageId=1545 +SymbolicName=NONE +Language=English +Semi-transparent PCI to PCI Bridge +. + +MessageId=1546 +SymbolicName=NONE +Language=English +Infiniband to PCI Host Bridge +. + +MessageId=1664 +SymbolicName=NONE +Language=English +Other PCI Bridge Device +. + +MessageId=1792 +SymbolicName=NONE +Language=English +PCI Serial Port +. + +MessageId=1793 +SymbolicName=NONE +Language=English +PCI Parallel Port +. + +MessageId=1794 +SymbolicName=NONE +Language=English +PCI Multiport Serial Controller +. + +MessageId=1795 +SymbolicName=NONE +Language=English +PCI Modem +. + +MessageId=1796 +SymbolicName=NONE +Language=English +PCI GBIB Controller +. + +MessageId=1797 +SymbolicName=NONE +Language=English +PCI Smart Card +. + +MessageId=1920 +SymbolicName=NONE +Language=English +PCI Simple Communications Controller +. + +MessageId=2048 +SymbolicName=NONE +Language=English +System Interrupt Controller +. + +MessageId=2049 +SymbolicName=NONE +Language=English +System DMA Controller +. + +MessageId=2050 +SymbolicName=NONE +Language=English +System Timer +. + +MessageId=2051 +SymbolicName=NONE +Language=English +Real Time CLock +. + +MessageId=2052 +SymbolicName=NONE +Language=English +Generic PCI Hot-Plug Controller +. + +MessageId=2053 +SymbolicName=NONE +Language=English +SD Host Controller +. + +MessageId=2173 +SymbolicName=NONE +Language=English +Base System Device +. + +MessageId=2304 +SymbolicName=NONE +Language=English +PCI Keyboard Controller +. + +MessageId=2305 +SymbolicName=NONE +Language=English +PCI Digitizer +. + +MessageId=2306 +SymbolicName=NONE +Language=English +PCI Mouse Controller +. + +MessageId=2307 +SymbolicName=NONE +Language=English +PCI Scanner Controller +. + +MessageId=2308 +SymbolicName=NONE +Language=English +PCI Gameport Controller +. + +MessageId=2432 +SymbolicName=NONE +Language=English +PCI Input Device +. + +MessageId=2560 +SymbolicName=NONE +Language=English +Docking Station +. + +MessageId=2688 +SymbolicName=NONE +Language=English +Docking Station (Unknown type) +. + +MessageId=2816 +SymbolicName=NONE +Language=English +386 Processor +. + +MessageId=2817 +SymbolicName=NONE +Language=English +486 Processor +. + +MessageId=2818 +SymbolicName=NONE +Language=English +Pentium Processor +. + +MessageId=2832 +SymbolicName=NONE +Language=English +ALPHA Processor +. + +MessageId=2848 +SymbolicName=NONE +Language=English +PowerPC Processor +. + +MessageId=2880 +SymbolicName=NONE +Language=English +Coprocessor +. + +MessageId=3072 +SymbolicName=NONE +Language=English +IEEE 1394 Controller +. + +MessageId=3073 +SymbolicName=NONE +Language=English +ACCESS Bus Controller +. + +MessageId=3074 +SymbolicName=NONE +Language=English +SSA Controller +. + +MessageId=3075 +SymbolicName=NONE +Language=English +Universal Serial Bus (USB) Controller +. + +MessageId=3076 +SymbolicName=NONE +Language=English +Fibre Channel Controller +. + +MessageId=3077 +SymbolicName=NONE +Language=English +SM Bus Controller +. + +MessageId=3078 +SymbolicName=NONE +Language=English +Infiniband Controller +. + +MessageId=3079 +SymbolicName=NONE +Language=English +IPMI Interface +. + +MessageId=3080 +SymbolicName=NONE +Language=English +SERCOS Interface +. + +MessageId=3081 +SymbolicName=NONE +Language=English +CANbus Controller +. + +MessageId=3328 +SymbolicName=NONE +Language=English +iRDA Compatible Controller +. + +MessageId=3329 +SymbolicName=NONE +Language=English +Consumer IR Controller +. + +MessageId=3344 +SymbolicName=NONE +Language=English +RF Controller +. + +MessageId=3345 +SymbolicName=NONE +Language=English +Bluetooth Controller +. + +MessageId=3346 +SymbolicName=NONE +Language=English +Broadband Controller +. + +MessageId=3360 +SymbolicName=NONE +Language=English +Ethernet 802.11a Controller +. + +MessageId=3361 +SymbolicName=NONE +Language=English +Ethernet 802.11b Controller +. + +MessageId=3456 +SymbolicName=NONE +Language=English +PCI Wireless Controller +. + +MessageId=3584 +SymbolicName=NONE +Language=English +Intelligent I/O (I2O) Controller +. + +MessageId=3841 +SymbolicName=NONE +Language=English +Satellite Communications Television Controller +. + +MessageId=3842 +SymbolicName=NONE +Language=English +Satellite Communications Audio Controller +. + +MessageId=3843 +SymbolicName=NONE +Language=English +Satellite Communications Voice Controller +. + +MessageId=3844 +SymbolicName=NONE +Language=English +Satellite Communications Data Controller +. + +MessageId=4096 +SymbolicName=NONE +Language=English +Network and Computing Encryption/Decryption Controller +. + +MessageId=4112 +SymbolicName=NONE +Language=English +Entertainment Encryption/Decryption Controller +. + +MessageId=4224 +SymbolicName=NONE +Language=English +PCI Encryption/Decryption Controller +. + +MessageId=4352 +SymbolicName=NONE +Language=English +DPIO Module +. + +MessageId=4353 +SymbolicName=NONE +Language=English +Performance Counters +. + +MessageId=4368 +SymbolicName=NONE +Language=English +PCI Communications Synchronization plus Time and Frequency Test/Measurement Controller +. + +MessageId=4384 +SymbolicName=NONE +Language=English +Management Card +. + +MessageId=4480 +SymbolicName=NONE +Language=English +PCI Data Acquisition and Signal Processing Controller +. diff --git a/sdk/include/reactos/mc/sacmsg.mc b/sdk/include/reactos/mc/sacmsg.mc index 65af01f64b5..b5589eee3ff 100644 --- a/sdk/include/reactos/mc/sacmsg.mc +++ b/sdk/include/reactos/mc/sacmsg.mc @@ -1,760 +1,760 @@ -MessageId=1 -SymbolicName=SAC_INIT_STATUS -Language=English - -Computer is booting, SAC started and initialized. - -Use the "ch -?" command for information about using channels. -Use the "?" command for general help. - -. - -MessageId=2 -SymbolicName=SAC_NEWLINE -Language=English - -. - -MessageId=3 -SymbolicName=SAC_PROMPT -Language=English -SAC>%0 -. - -MessageId=4 -SymbolicName=SACDRV_4 -Language=English -The SAC is unavailable, it was directly unloaded. -. - -MessageId=5 -SymbolicName=SACDRV_5 -Language=English -The SAC will become unavailable soon. The computer is shutting down. - -. - -MessageId=6 -SymbolicName=SACDRV_6 -Language=English -A parameter was incorrect or missing. Try the 'help' command for more details. -. - -MessageId=7 -SymbolicName=SACDRV_7 -Language=English -Thread information is now ON. -. - -MessageId=8 -SymbolicName=SACDRV_8 -Language=English -Thread information is now OFF. -. - -MessageId=9 -SymbolicName=SACDRV_9 -Language=English -Paging is now ON. -. - -MessageId=10 -SymbolicName=SACDRV_10 -Language=English -Paging is now OFF. -. - -MessageId=11 -SymbolicName=SAC_OUT_OF_MEMORY_PROMPT -Language=English -THIS LOOKS LIKE A BUG??? -. - -MessageId=12 -SymbolicName=SACDRV_12 -Language=English -d Dump the current kernel log. -. - -MessageId=13 -SymbolicName=SACDRV_13 -Language=English -f Toggle detailed or abbreviated tlist info. -. - -MessageId=14 -SymbolicName=SACDRV_14 -Language=English -? or help Display this list. -. - -MessageId=15 -SymbolicName=SACDRV_15 -Language=English -i List all IP network numbers and their IP addresses. -. - -MessageId=16 -SymbolicName=SACDRV_16 -Language=English -i <#> Set IP addr., subnet and gateway. -. - -MessageId=18 -SymbolicName=SACDRV_18 -Language=English -k Kill the given process. -. - -MessageId=19 -SymbolicName=SACDRV_19 -Language=English -l Lower the priority of a process to the lowest possible. -. - -MessageId=20 -SymbolicName=SACDRV_20 -Language=English -m Limit the memory usage of a process to . -. - -MessageId=21 -SymbolicName=SACDRV_21 -Language=English -p Toggle paging the display. -. - -MessageId=22 -SymbolicName=SACDRV_22 -Language=English -r Raise the priority of a process by one. -. - -MessageId=23 -SymbolicName=SACDRV_23 -Language=English -s Display the current time and date (24 hour clock used). -. - -MessageId=24 -SymbolicName=SACDRV_24 -Language=English -s mm/dd/yyyy hh:mm Set the current time and date (24 hour clock used). -. - -MessageId=25 -SymbolicName=SACDRV_25 -Language=English -t Tlist. -. - -MessageId=27 -SymbolicName=SACDRV_27 -Language=English -restart Restart the system immediately. -. - -MessageId=28 -SymbolicName=SACDRV_28 -Language=English -shutdown Shutdown the system immediately. -. - -MessageId=29 -SymbolicName=SACDRV_29 -Language=English -crashdump Crash the system. You must have crash dump enabled. -. - -MessageId=31 -SymbolicName=SACDRV_31 -Language=English -id Display the computer identification information. -. - -MessageId=32 -SymbolicName=SACDRV_32 -Language=English -lock Lock access to Command Prompt channels. -. - -MessageId=48 -SymbolicName=SAC_FAIL_PROMPT -Language=English -Failed with status 0x%%X. -. - -MessageId=49 -SymbolicName=SACDRV_49 -Language=English -Date: %%02d/%%02d/%%02d Time (GMT): %%02d:%%02d:%%02d:%%04d -. - -MessageId=50 -SymbolicName=SACDRV_50 -Language=English -SAC could not retrieve the IP Address. -. - -MessageId=51 -SymbolicName=SACDRV_51 -Language=English -SAC could not clear the existing IP Address. -. - -MessageId=52 -SymbolicName=SACDRV_52 -Language=English -SAC could not set the IP Address. -. - -MessageId=54 -SymbolicName=SACDRV_54 -Language=English -SAC successfully set the IP Address, subnet mask, and gateway. -. - -MessageId=55 -SymbolicName=SACDRV_55 -Language=English -SAC failed to terminate the process. -. - -MessageId=56 -SymbolicName=SACDRV_56 -Language=English -SAC successfully terminated the process. -. - -MessageId=57 -SymbolicName=SACDRV_57 -Language=English -SAC failed to lower the process priority. -. - -MessageId=58 -SymbolicName=SACDRV_58 -Language=English -SAC successfully lowered the process priority. -. - -MessageId=59 -SymbolicName=SACDRV_59 -Language=English -SAC failed to raise the process priority. -. - -MessageId=60 -SymbolicName=SACDRV_60 -Language=English -SAC successfully raised the process priority. -. - -MessageId=61 -SymbolicName=SACDRV_61 -Language=English -SAC failed to limit the available process memory. -. - -MessageId=62 -SymbolicName=SACDRV_62 -Language=English -SAC successfully limited the available process memory. -. - -MessageId=63 -SymbolicName=SACDRV_63 -Language=English -SAC cannot raise the priority of a process that was not previously lowered. -. - -MessageId=64 -SymbolicName=SACDRV_64 -Language=English -SAC cannot raise the process priority any higher. -. - -MessageId=65 -SymbolicName=SAC_SHUTDOWN_FAIL_PROMPT -Language=English -SAC failed to shutdown the system. -. - -MessageId=66 -SymbolicName=SAC_RESTART_FAIL_PROMPT -Language=English -SAC failed to restart the system. -. - -MessageId=67 -SymbolicName=SACDRV_67 -Language=English -SAC failed to crashdump the system. -. - -MessageId=68 -SymbolicName=SACDRV_68 -Language=English -SAC failed to retrieve the task list. -. - -MessageId=69 -SymbolicName=SACDRV_69 -Language=English -memory: %%4ld kb uptime:%%3ld %%2ld:%%02ld:%%02ld.%%03ld - - -. - -MessageId=70 -SymbolicName=SACDRV_70 -Language=English -No pagefile in use. -. - -MessageId=71 -SymbolicName=SACDRV_71 -Language=English -PageFile: %%wZ -. - -MessageId=72 -SymbolicName=SACDRV_72 -Language=English - Current Size: %%6ld kb Total Used: %%6ld kb Peak Used %%6ld kb -. - -MessageId=73 -SymbolicName=SACDRV_73 -Language=English - - Memory:%%7ldK Avail:%%7ldK TotalWs:%%7ldK InRam Kernel:%%5ldK P:%%5ldK -. - -MessageId=74 -SymbolicName=SACDRV_74 -Language=English - Commit:%%7ldK/%%7ldK Limit:%%7ldK Peak:%%7ldK Pool N:%%5ldK P:%%5ldK -. - -MessageId=75 -SymbolicName=SACDRV_75 -Language=English - User Time Kernel Time Ws Faults Commit Pri Hnd Thd Pid Name -. - -MessageId=76 -SymbolicName=SACDRV_76 -Language=English - %%6ld %%8ld File Cache -. - -MessageId=77 -SymbolicName=SACDRV_77 -Language=English -%%3ld:%%02ld:%%02ld.%%03ld %%3ld:%%02ld:%%02ld.%%03ld%%6ld %%8ld %%7ld %%2ld %%4ld %%3ld %%4ld %%wZ -. - -MessageId=78 -SymbolicName=SACDRV_78 -Language=English -%%3ld:%%02ld:%%02ld.%%03ld %%3ld:%%02ld:%%02ld.%%03ld -. - -MessageId=79 -SymbolicName=SACDRV_79 -Language=English -pid:%%3lx pri:%%2ld Hnd:%%5ld Pf:%%7ld Ws:%%7ldK %%wZ -. - -MessageId=80 -SymbolicName=SACDRV_80 -Language=English - tid pri Ctx Swtch StrtAddr User Time Kernel Time State -. - -MessageId=81 -SymbolicName=SACDRV_81 -Language=English - %%3lx %%2ld %%9ld %%p %%2ld:%%02ld:%%02ld.%%03ld %%2ld:%%02ld:%%02ld.%%03ld %%s%%s -. - -MessageId=82 -SymbolicName=SACDRV_82 -Language=English -----Press for more---- -. - -MessageId=83 -SymbolicName=SACDRV_83 -Language=English -SAC is retrieving IP Addresses... -. - -MessageId=84 -SymbolicName=SACDRV_84 -Language=English -Could not retrieve IP Address(es). -. - -MessageId=85 -SymbolicName=SACDRV_85 -Language=English -There are no IP Addresses available. -. - -MessageId=86 -SymbolicName=SACDRV_86 -Language=English -Net: %%d, Ip=%%d.%%d.%%d.%%d Subnet=%%d.%%d.%%d.%%d Gateway=%%d.%%d.%%d.%%d -. - -MessageId=87 -SymbolicName=SACDRV_87 -Language=English -Date: %%02d/%%02d/%%02d Time (GMT): %%02d:%%02d -. - -MessageId=88 -SymbolicName=SACDRV_88 -Language=English -The year is restricted from 1980 to 2099. -. - -MessageId=89 -SymbolicName=SACDRV_89 -Language=English -That process has been killed and is being cleaned up by the system. -. - -MessageId=90 -SymbolicName=SACDRV_90 -Language=English -A duplicate process id is being cleaned up by the system. Try the -command again in a few seconds. -. - -MessageId=92 -SymbolicName=SACDRV_92 -Language=English - Computer Name: %%ws -. - -MessageId=93 -SymbolicName=SACDRV_93 -Language=English - Computer GUID: %%ws -. - -MessageId=94 -SymbolicName=SACDRV_94 -Language=English - Processor Architecture: %%ws -. - -MessageId=95 -SymbolicName=SACDRV_95 -Language=English - Build Number: %%ws -. - -MessageId=96 -SymbolicName=SACDRV_96 -Language=English - Product: %%ws -. - -MessageId=97 -SymbolicName=SACDRV_97 -Language=English - Applied Service Pack: %%ws -. - -MessageId=98 -SymbolicName=SAC_NO_DATA_MSG -Language=English -None%0 -. - -MessageId=99 -SymbolicName=SACDRV_99 -Language=English - Version Number: %%ws -. - -MessageId=100 -SymbolicName=SAC_DATACENTER_SUITE_MSG -Language=English -Windows Server 2003 Datacenter Edition%0 -. - -MessageId=101 -SymbolicName=SAC_EMBEDDED_SUITE_MSG -Language=English -Windows Server 2003 Embedded%0 -. - -MessageId=102 -SymbolicName=SAC_ENTERPRISE_SUITE_MSG -Language=English -Windows Server 2003 Enterprise Edition%0 -. - -MessageId=103 -SymbolicName=SAC_NO_SUITE_MSG -Language=English -Windows Server 2003%0 -. - -MessageId=104 -SymbolicName=SACDRV_104 -Language=English -Computer identification information is unavailable. -. - -MessageId=105 -SymbolicName=SAC_UNKNOWN_COMMAND -Language=English -Unrecognized command. Try the 'help' command for more details. -. - -MessageId=106 -SymbolicName=SACDRV_106 -Language=English -Error: The SAC channel cannot be closed. -. - -MessageId=107 -SymbolicName=SACDRV_107 -Language=English -Error: Could not find a channel with that name. -. - -MessageId=108 -SymbolicName=SACDRV_108 -Language=English -Channel List - -(Use "ch -?" for information on using channels) - -# Status Channel Name -. - -MessageId=109 -SymbolicName=SACDRV_109 -Language=English -EVENT: A new channel has been created. Use "ch -?" for channel help. -Channel: %%s -. - -MessageId=110 -SymbolicName=SACDRV_110 -Language=English -EVENT: A channel has been closed. -Channel: %%s -. - -MessageId=111 -SymbolicName=SACDRV_111 -Language=English -Name: %%s -Description: %%s -Type: %%s -Channel GUID: %%08lx-%%04x-%%04x-%%02x%%02x-%%02x%%02x%%02x%%02x%%02x%%02x -Application Type GUID: %%08lx-%%04x-%%04x-%%02x%%02x-%%02x%%02x%%02x%%02x%%02x%%02x - -Press for next channel. -Press 0 to return to the SAC channel. -Use any other key to view this channel. - -. - -MessageId=112 -SymbolicName=SACDRV_112 -Language=English -ch Channel management commands. Use ch -? for more help. -. - -MessageId=113 -SymbolicName=SAC_RESTART_TIME_PROMPT -Language=English - Time since last reboot: %%d:%%02d:%%02d -. - -MessageId=114 -SymbolicName=SAC_RESTART_PROMPT -Language=English -SAC preparing to restart the system. -. - -MessageId=115 -SymbolicName=SAC_SHUTDOWN_PROMPT -Language=English -SAC preparing to shutdown the system. -. - -MessageId=116 -SymbolicName=SACDRV_116 -Language=English -Error! Failed to remove channel! - -Please contact your system administrator. - -. - -MessageId=119 -SymbolicName=SACDRV_119 -Language=English -cmd Create a Command Prompt channel. -. - -MessageId=120 -SymbolicName=SACDRV_120 -Language=English -Timeout: Unable to launch a Command Prompt. The service responsible for - launching Command Prompt channels has timed out. This may be - because the service is malfunctioning or is unresponsive. -. - -MessageId=121 -SymbolicName=SACDRV_121 -Language=English -The Command Prompt session was successfully launched. -. - -MessageId=128 -SymbolicName=SACDRV_128 -Language=English -Error: The SAC Command Console session failed to be created. -. - -MessageId=131 -SymbolicName=SACDRV_131 -Language=English -Error: Unable to launch a Command Prompt. The service responsible for launching - Command Prompt channels has not yet registered. This may be because the - service is not yet started, is disabled by the administrator, is - malfunctioning or is unresponsive. -. - -MessageId=132 -SymbolicName=SACDRV_132 -Language=English -EVENT: The CMD command is now available. -. - -MessageId=133 -SymbolicName=SACDRV_133 -Language=English -EVENT: The CMD command is unavailable. -. - -MessageId=134 -SymbolicName=SACDRV_134 -Language=English -EVENT: An attempt was made to close a channel but failed. -Channel: %%s -. - -MessageId=135 -SymbolicName=SACDRV_135 -Language=English -EVENT: An attempt to close a channel failed because it is already closed. -Channel: %%s -. - -MessageId=136 -SymbolicName=SACDRV_136 -Language=English -Channel management commands: - -ch List all channels. - -Status Legend: (AB) -A: Channel operational status - 'A' = Channel is active. - 'I' = Channel is inactive. -B: Channel Type - 'V' = VT-UTF8 emulation. - 'R' = Raw - no emulation. - -ch -si <#> Switch to a channel by its number. -ch -sn Switch to a channel by its name. -ch -ci <#> Close a channel by its number. -ch -cn Close a channel by its name. - -Press to select a channel. -Press 0 to return to the SAC channel. -. - -MessageId=137 -SymbolicName=SACDRV_137 -Language=English -Error: There is no channel present at the specified index. -. - -MessageId=144 -SymbolicName=SAC_CHANNEL_NAME -Language=English -SAC%0 -. - -MessageId=145 -SymbolicName=SAC_CHANNEL_DESCRIPTION -Language=English -Special Administration Console%0 -. - -MessageId=146 -SymbolicName=SACDRV_146 -Language=English -Command Prompt%0 -. - -MessageId=147 -SymbolicName=SACDRV_147 -Language=English -Locked access to all Command Prompt channels. -. - -MessageId=148 -SymbolicName=SACDRV_148 -Language=English -Launching of Command Prompt channels is disabled. -. - -MessageId=149 -SymbolicName=SACDRV_149 -Language=English -The specified subnet mask is invalid. -. - -MessageId=150 -SymbolicName=SACDRV_150 -Language=English -Error, missing network interface number. -. - -MessageId=151 -SymbolicName=SACDRV_151 -Language=English -The specified IP address is invalid. -. - -MessageId=152 -SymbolicName=SACDRV_152 -Language=English -The specified gateway IP address is invalid. -. - -MessageId=153 -SymbolicName=SAC_UNINITIALIZED_MSG -Language=English -not yet initialized%0 -. - -MessageId=154 -SymbolicName=SACDRV_154 -Language=English -The maximum number of channels has been reached. -. +MessageId=1 +SymbolicName=SAC_INIT_STATUS +Language=English + +Computer is booting, SAC started and initialized. + +Use the "ch -?" command for information about using channels. +Use the "?" command for general help. + +. + +MessageId=2 +SymbolicName=SAC_NEWLINE +Language=English + +. + +MessageId=3 +SymbolicName=SAC_PROMPT +Language=English +SAC>%0 +. + +MessageId=4 +SymbolicName=SACDRV_4 +Language=English +The SAC is unavailable, it was directly unloaded. +. + +MessageId=5 +SymbolicName=SACDRV_5 +Language=English +The SAC will become unavailable soon. The computer is shutting down. + +. + +MessageId=6 +SymbolicName=SACDRV_6 +Language=English +A parameter was incorrect or missing. Try the 'help' command for more details. +. + +MessageId=7 +SymbolicName=SACDRV_7 +Language=English +Thread information is now ON. +. + +MessageId=8 +SymbolicName=SACDRV_8 +Language=English +Thread information is now OFF. +. + +MessageId=9 +SymbolicName=SACDRV_9 +Language=English +Paging is now ON. +. + +MessageId=10 +SymbolicName=SACDRV_10 +Language=English +Paging is now OFF. +. + +MessageId=11 +SymbolicName=SAC_OUT_OF_MEMORY_PROMPT +Language=English +THIS LOOKS LIKE A BUG??? +. + +MessageId=12 +SymbolicName=SACDRV_12 +Language=English +d Dump the current kernel log. +. + +MessageId=13 +SymbolicName=SACDRV_13 +Language=English +f Toggle detailed or abbreviated tlist info. +. + +MessageId=14 +SymbolicName=SACDRV_14 +Language=English +? or help Display this list. +. + +MessageId=15 +SymbolicName=SACDRV_15 +Language=English +i List all IP network numbers and their IP addresses. +. + +MessageId=16 +SymbolicName=SACDRV_16 +Language=English +i <#> Set IP addr., subnet and gateway. +. + +MessageId=18 +SymbolicName=SACDRV_18 +Language=English +k Kill the given process. +. + +MessageId=19 +SymbolicName=SACDRV_19 +Language=English +l Lower the priority of a process to the lowest possible. +. + +MessageId=20 +SymbolicName=SACDRV_20 +Language=English +m Limit the memory usage of a process to . +. + +MessageId=21 +SymbolicName=SACDRV_21 +Language=English +p Toggle paging the display. +. + +MessageId=22 +SymbolicName=SACDRV_22 +Language=English +r Raise the priority of a process by one. +. + +MessageId=23 +SymbolicName=SACDRV_23 +Language=English +s Display the current time and date (24 hour clock used). +. + +MessageId=24 +SymbolicName=SACDRV_24 +Language=English +s mm/dd/yyyy hh:mm Set the current time and date (24 hour clock used). +. + +MessageId=25 +SymbolicName=SACDRV_25 +Language=English +t Tlist. +. + +MessageId=27 +SymbolicName=SACDRV_27 +Language=English +restart Restart the system immediately. +. + +MessageId=28 +SymbolicName=SACDRV_28 +Language=English +shutdown Shutdown the system immediately. +. + +MessageId=29 +SymbolicName=SACDRV_29 +Language=English +crashdump Crash the system. You must have crash dump enabled. +. + +MessageId=31 +SymbolicName=SACDRV_31 +Language=English +id Display the computer identification information. +. + +MessageId=32 +SymbolicName=SACDRV_32 +Language=English +lock Lock access to Command Prompt channels. +. + +MessageId=48 +SymbolicName=SAC_FAIL_PROMPT +Language=English +Failed with status 0x%%X. +. + +MessageId=49 +SymbolicName=SACDRV_49 +Language=English +Date: %%02d/%%02d/%%02d Time (GMT): %%02d:%%02d:%%02d:%%04d +. + +MessageId=50 +SymbolicName=SACDRV_50 +Language=English +SAC could not retrieve the IP Address. +. + +MessageId=51 +SymbolicName=SACDRV_51 +Language=English +SAC could not clear the existing IP Address. +. + +MessageId=52 +SymbolicName=SACDRV_52 +Language=English +SAC could not set the IP Address. +. + +MessageId=54 +SymbolicName=SACDRV_54 +Language=English +SAC successfully set the IP Address, subnet mask, and gateway. +. + +MessageId=55 +SymbolicName=SACDRV_55 +Language=English +SAC failed to terminate the process. +. + +MessageId=56 +SymbolicName=SACDRV_56 +Language=English +SAC successfully terminated the process. +. + +MessageId=57 +SymbolicName=SACDRV_57 +Language=English +SAC failed to lower the process priority. +. + +MessageId=58 +SymbolicName=SACDRV_58 +Language=English +SAC successfully lowered the process priority. +. + +MessageId=59 +SymbolicName=SACDRV_59 +Language=English +SAC failed to raise the process priority. +. + +MessageId=60 +SymbolicName=SACDRV_60 +Language=English +SAC successfully raised the process priority. +. + +MessageId=61 +SymbolicName=SACDRV_61 +Language=English +SAC failed to limit the available process memory. +. + +MessageId=62 +SymbolicName=SACDRV_62 +Language=English +SAC successfully limited the available process memory. +. + +MessageId=63 +SymbolicName=SACDRV_63 +Language=English +SAC cannot raise the priority of a process that was not previously lowered. +. + +MessageId=64 +SymbolicName=SACDRV_64 +Language=English +SAC cannot raise the process priority any higher. +. + +MessageId=65 +SymbolicName=SAC_SHUTDOWN_FAIL_PROMPT +Language=English +SAC failed to shutdown the system. +. + +MessageId=66 +SymbolicName=SAC_RESTART_FAIL_PROMPT +Language=English +SAC failed to restart the system. +. + +MessageId=67 +SymbolicName=SACDRV_67 +Language=English +SAC failed to crashdump the system. +. + +MessageId=68 +SymbolicName=SACDRV_68 +Language=English +SAC failed to retrieve the task list. +. + +MessageId=69 +SymbolicName=SACDRV_69 +Language=English +memory: %%4ld kb uptime:%%3ld %%2ld:%%02ld:%%02ld.%%03ld + + +. + +MessageId=70 +SymbolicName=SACDRV_70 +Language=English +No pagefile in use. +. + +MessageId=71 +SymbolicName=SACDRV_71 +Language=English +PageFile: %%wZ +. + +MessageId=72 +SymbolicName=SACDRV_72 +Language=English + Current Size: %%6ld kb Total Used: %%6ld kb Peak Used %%6ld kb +. + +MessageId=73 +SymbolicName=SACDRV_73 +Language=English + + Memory:%%7ldK Avail:%%7ldK TotalWs:%%7ldK InRam Kernel:%%5ldK P:%%5ldK +. + +MessageId=74 +SymbolicName=SACDRV_74 +Language=English + Commit:%%7ldK/%%7ldK Limit:%%7ldK Peak:%%7ldK Pool N:%%5ldK P:%%5ldK +. + +MessageId=75 +SymbolicName=SACDRV_75 +Language=English + User Time Kernel Time Ws Faults Commit Pri Hnd Thd Pid Name +. + +MessageId=76 +SymbolicName=SACDRV_76 +Language=English + %%6ld %%8ld File Cache +. + +MessageId=77 +SymbolicName=SACDRV_77 +Language=English +%%3ld:%%02ld:%%02ld.%%03ld %%3ld:%%02ld:%%02ld.%%03ld%%6ld %%8ld %%7ld %%2ld %%4ld %%3ld %%4ld %%wZ +. + +MessageId=78 +SymbolicName=SACDRV_78 +Language=English +%%3ld:%%02ld:%%02ld.%%03ld %%3ld:%%02ld:%%02ld.%%03ld +. + +MessageId=79 +SymbolicName=SACDRV_79 +Language=English +pid:%%3lx pri:%%2ld Hnd:%%5ld Pf:%%7ld Ws:%%7ldK %%wZ +. + +MessageId=80 +SymbolicName=SACDRV_80 +Language=English + tid pri Ctx Swtch StrtAddr User Time Kernel Time State +. + +MessageId=81 +SymbolicName=SACDRV_81 +Language=English + %%3lx %%2ld %%9ld %%p %%2ld:%%02ld:%%02ld.%%03ld %%2ld:%%02ld:%%02ld.%%03ld %%s%%s +. + +MessageId=82 +SymbolicName=SACDRV_82 +Language=English +----Press for more---- +. + +MessageId=83 +SymbolicName=SACDRV_83 +Language=English +SAC is retrieving IP Addresses... +. + +MessageId=84 +SymbolicName=SACDRV_84 +Language=English +Could not retrieve IP Address(es). +. + +MessageId=85 +SymbolicName=SACDRV_85 +Language=English +There are no IP Addresses available. +. + +MessageId=86 +SymbolicName=SACDRV_86 +Language=English +Net: %%d, Ip=%%d.%%d.%%d.%%d Subnet=%%d.%%d.%%d.%%d Gateway=%%d.%%d.%%d.%%d +. + +MessageId=87 +SymbolicName=SACDRV_87 +Language=English +Date: %%02d/%%02d/%%02d Time (GMT): %%02d:%%02d +. + +MessageId=88 +SymbolicName=SACDRV_88 +Language=English +The year is restricted from 1980 to 2099. +. + +MessageId=89 +SymbolicName=SACDRV_89 +Language=English +That process has been killed and is being cleaned up by the system. +. + +MessageId=90 +SymbolicName=SACDRV_90 +Language=English +A duplicate process id is being cleaned up by the system. Try the +command again in a few seconds. +. + +MessageId=92 +SymbolicName=SACDRV_92 +Language=English + Computer Name: %%ws +. + +MessageId=93 +SymbolicName=SACDRV_93 +Language=English + Computer GUID: %%ws +. + +MessageId=94 +SymbolicName=SACDRV_94 +Language=English + Processor Architecture: %%ws +. + +MessageId=95 +SymbolicName=SACDRV_95 +Language=English + Build Number: %%ws +. + +MessageId=96 +SymbolicName=SACDRV_96 +Language=English + Product: %%ws +. + +MessageId=97 +SymbolicName=SACDRV_97 +Language=English + Applied Service Pack: %%ws +. + +MessageId=98 +SymbolicName=SAC_NO_DATA_MSG +Language=English +None%0 +. + +MessageId=99 +SymbolicName=SACDRV_99 +Language=English + Version Number: %%ws +. + +MessageId=100 +SymbolicName=SAC_DATACENTER_SUITE_MSG +Language=English +Windows Server 2003 Datacenter Edition%0 +. + +MessageId=101 +SymbolicName=SAC_EMBEDDED_SUITE_MSG +Language=English +Windows Server 2003 Embedded%0 +. + +MessageId=102 +SymbolicName=SAC_ENTERPRISE_SUITE_MSG +Language=English +Windows Server 2003 Enterprise Edition%0 +. + +MessageId=103 +SymbolicName=SAC_NO_SUITE_MSG +Language=English +Windows Server 2003%0 +. + +MessageId=104 +SymbolicName=SACDRV_104 +Language=English +Computer identification information is unavailable. +. + +MessageId=105 +SymbolicName=SAC_UNKNOWN_COMMAND +Language=English +Unrecognized command. Try the 'help' command for more details. +. + +MessageId=106 +SymbolicName=SACDRV_106 +Language=English +Error: The SAC channel cannot be closed. +. + +MessageId=107 +SymbolicName=SACDRV_107 +Language=English +Error: Could not find a channel with that name. +. + +MessageId=108 +SymbolicName=SACDRV_108 +Language=English +Channel List + +(Use "ch -?" for information on using channels) + +# Status Channel Name +. + +MessageId=109 +SymbolicName=SACDRV_109 +Language=English +EVENT: A new channel has been created. Use "ch -?" for channel help. +Channel: %%s +. + +MessageId=110 +SymbolicName=SACDRV_110 +Language=English +EVENT: A channel has been closed. +Channel: %%s +. + +MessageId=111 +SymbolicName=SACDRV_111 +Language=English +Name: %%s +Description: %%s +Type: %%s +Channel GUID: %%08lx-%%04x-%%04x-%%02x%%02x-%%02x%%02x%%02x%%02x%%02x%%02x +Application Type GUID: %%08lx-%%04x-%%04x-%%02x%%02x-%%02x%%02x%%02x%%02x%%02x%%02x + +Press for next channel. +Press 0 to return to the SAC channel. +Use any other key to view this channel. + +. + +MessageId=112 +SymbolicName=SACDRV_112 +Language=English +ch Channel management commands. Use ch -? for more help. +. + +MessageId=113 +SymbolicName=SAC_RESTART_TIME_PROMPT +Language=English + Time since last reboot: %%d:%%02d:%%02d +. + +MessageId=114 +SymbolicName=SAC_RESTART_PROMPT +Language=English +SAC preparing to restart the system. +. + +MessageId=115 +SymbolicName=SAC_SHUTDOWN_PROMPT +Language=English +SAC preparing to shutdown the system. +. + +MessageId=116 +SymbolicName=SACDRV_116 +Language=English +Error! Failed to remove channel! + +Please contact your system administrator. + +. + +MessageId=119 +SymbolicName=SACDRV_119 +Language=English +cmd Create a Command Prompt channel. +. + +MessageId=120 +SymbolicName=SACDRV_120 +Language=English +Timeout: Unable to launch a Command Prompt. The service responsible for + launching Command Prompt channels has timed out. This may be + because the service is malfunctioning or is unresponsive. +. + +MessageId=121 +SymbolicName=SACDRV_121 +Language=English +The Command Prompt session was successfully launched. +. + +MessageId=128 +SymbolicName=SACDRV_128 +Language=English +Error: The SAC Command Console session failed to be created. +. + +MessageId=131 +SymbolicName=SACDRV_131 +Language=English +Error: Unable to launch a Command Prompt. The service responsible for launching + Command Prompt channels has not yet registered. This may be because the + service is not yet started, is disabled by the administrator, is + malfunctioning or is unresponsive. +. + +MessageId=132 +SymbolicName=SACDRV_132 +Language=English +EVENT: The CMD command is now available. +. + +MessageId=133 +SymbolicName=SACDRV_133 +Language=English +EVENT: The CMD command is unavailable. +. + +MessageId=134 +SymbolicName=SACDRV_134 +Language=English +EVENT: An attempt was made to close a channel but failed. +Channel: %%s +. + +MessageId=135 +SymbolicName=SACDRV_135 +Language=English +EVENT: An attempt to close a channel failed because it is already closed. +Channel: %%s +. + +MessageId=136 +SymbolicName=SACDRV_136 +Language=English +Channel management commands: + +ch List all channels. + +Status Legend: (AB) +A: Channel operational status + 'A' = Channel is active. + 'I' = Channel is inactive. +B: Channel Type + 'V' = VT-UTF8 emulation. + 'R' = Raw - no emulation. + +ch -si <#> Switch to a channel by its number. +ch -sn Switch to a channel by its name. +ch -ci <#> Close a channel by its number. +ch -cn Close a channel by its name. + +Press to select a channel. +Press 0 to return to the SAC channel. +. + +MessageId=137 +SymbolicName=SACDRV_137 +Language=English +Error: There is no channel present at the specified index. +. + +MessageId=144 +SymbolicName=SAC_CHANNEL_NAME +Language=English +SAC%0 +. + +MessageId=145 +SymbolicName=SAC_CHANNEL_DESCRIPTION +Language=English +Special Administration Console%0 +. + +MessageId=146 +SymbolicName=SACDRV_146 +Language=English +Command Prompt%0 +. + +MessageId=147 +SymbolicName=SACDRV_147 +Language=English +Locked access to all Command Prompt channels. +. + +MessageId=148 +SymbolicName=SACDRV_148 +Language=English +Launching of Command Prompt channels is disabled. +. + +MessageId=149 +SymbolicName=SACDRV_149 +Language=English +The specified subnet mask is invalid. +. + +MessageId=150 +SymbolicName=SACDRV_150 +Language=English +Error, missing network interface number. +. + +MessageId=151 +SymbolicName=SACDRV_151 +Language=English +The specified IP address is invalid. +. + +MessageId=152 +SymbolicName=SACDRV_152 +Language=English +The specified gateway IP address is invalid. +. + +MessageId=153 +SymbolicName=SAC_UNINITIALIZED_MSG +Language=English +not yet initialized%0 +. + +MessageId=154 +SymbolicName=SACDRV_154 +Language=English +The maximum number of channels has been reached. +. diff --git a/sdk/lib/3rdparty/stlport/INSTALL b/sdk/lib/3rdparty/stlport/INSTALL index c22b62647fc..8617ef9ff21 100644 --- a/sdk/lib/3rdparty/stlport/INSTALL +++ b/sdk/lib/3rdparty/stlport/INSTALL @@ -1,166 +1,166 @@ -********************************************************************** -* INSTALL file for STLport * -* * -********************************************************************** - -STLport is a full ANSI C++ Standard library. - -This distribution contains STLport sources only, no binaries. -To use STLport iostreams, locale and complex numbers, you have to build STLport -library from sources in "build/lib" directory and link your programs with it. - -Starting with 5.0 the 'wrapper' mode is not supported anymore. You cannot use native -compiler iostreams implementation with STLport STL (see doc/FAQ for explanations). -Now you have to choose between STLport iostreams or no iostreams. - -==== Unpacking and installing STLport ========== - -1) Unpack STLport archive to a directory accessible during compilation. - NOTE: DO NOT overwrite header files coming with the compiler, even if you made - a backup - this won't work! Most probably, you've already unpacked the archive before - reading this file though ;) - -2) Make sure "stlport" directory of this distribution comes before compiler's one - in your include paths when you compile the project. - - Note: for SunPro CC 5.0 and higher, there used to be special directory "stlport/SC5" - this is now obsolete, please make sure you do not use it anymore. - -3) Make sure you do not rename this "stlport" subdirectory - - that may result in compilation errors. - - NOTE: Your compiler should be recognized by STLport source code with no configuring. - Please edit appropriate configuration header for your compiler - directly if you have to make compiler-specific configuration changes - (see stlport/stl/config). - -4) Run: - - configure --help - - Depending on your environment, Windows command shell or Unix like shell, - configure.bat or configure script will be run respectively. For Windows users - running configure script is mandatory in order to declare the compiler you are - going to use. - -5) Go to "build/lib" subdirectory. It contains various makefiles for different - compilers and 'make' utilities (GNU Make and Microsoft's nmake supported). - - Verify you can do command line compiles. IDE users may have to do something - special, like add environment variables (for Microsoft) or install - additional compiler components (for Metrowerks), before they can use their - command line compilers (see doc/README.xxxx for additionnal information). - - configure script should have already created a Makefile file so that you only - have to call 'make' or 'nmake' (for some platforms GNU make might be hidden - behind 'gmake'). - - IMPORTANT: - - If you DO NOT plan to use STLport iostreams and/or locale implementation but just - the STL, you do not have to build the library. - - If you have decided to disable STLport iostreams and locale using _STLP_NO_IOSTREAMS - configuration macro in stlport/stl/config/user_config.h, you may stop reading here. - - -==== Building STLport iostreams library ========== - -Below are step-by-step instructions to build STLport streams library. This is a general -build process description, for a more detailed one check README files in the doc folder: - -5) Using appropriate make command (make or nmake), do - - make clean install - - to build the STLport libraries. Make files are set up to build several different - flavors - debug/nondebug, static/dynamic versions. But not all flavors will be build - by default. See build/lib/README for other make targets. - - Note: 'install' target work slightly different than usual - it installs libraries into - /lib and bin catalogs, NOT IN SYSTEM CATALOG. You can do the system - install by just copying stlport and lib folder to the destination of your choise. For - example on UNIX-like platforms this can be done with the following commands: - - su - tar cf - stlport | (cd /usr/local/include; tar xf -) - chmod -R a+r /usr/local/include/stlport - chown -R root:root /usr/local/include/stlport - (cd lib; tar cf - --exclude=CVS --exclude=.cvsignore .) | (cd /usr/local/lib; tar xf -) - chown -R root:root /usr/local/lib/libstlport* - exit - - Note: System install is optional, most of compilers/linkers support searching for includes - and libs throught out the whole filesystem, just check your documentation on how to achieve - this. - - If you use cross-compiler, you can find libraries in the /lib/ - catalog. - -6) If build fails, you may choose to : - - try fixing the build ;) - - wait until somebody else will submit corresponding changes to be incorporated in next STLport - release/snapshot. - - In case you do patch STLport, please submit your patches to - https://sourceforge.net/tracker/?atid=766246&group_id=146814&func=browse - -==== Linking your application with STLport library ========== - -7) Check the build: - - Example: - - - under Linux and other Unixes: - - cd build/test/unit - make install - ../../../bin/stl_unit_test - ../../../bin-g/stl_unit_test - - - under Windows: - - cd build\test\unit - nmake install - cd ..\..\..\bin - stl_unit_test - stl_unit_testd - stl_unit_teststld - -8) Supply the "lib" subdirectory to the library search path and add desired - library to the list of libraries to link with. - Examples (imagine you have mytest.cpp in the same directory as this file is): - With GCC : g++ -pthread -I./stlport mytest.cpp -L./lib/ -lstlport - With DEC CC : cxx -I./stlport mytest.cpp -L./lib/ -lstlport - With SUN CC : CC -mt -I./stlport mytest.cpp -L./lib/ -lstlport - ..... - For several compilers supporting auto linking feature (VC++, Borland, DMC), - you do not have to specify "stlport.M.m.lib" explicitly, as it is being choosen - and forced to link automatically by "#pragma"'s in compiler config files - Appropriate version is being selected based on compiler options and _STLP_DEBUG - setting. All you have to do is to set library search path for the linker. - - Example : - cl.exe /I.\stlport mytest.cpp /link /libpath:.\lib /MD - -9) If you linked your application with shared STLport library (.so or .dll), please - make suze that your .so or .dll can be found by the dynamic linker. - Under Windows, the paths searched depend on the particular flavor, see the MSDN - documentation for LoadLibrary at http://msdn.microsoft.com. The easiest ways are to - either modify the PATH environment variable or copy all .dll's next to the - executable like it is done per default when unit tests executable are put next - to dlls. - Under Linux, the environment variable LD_LIBRARY_PATH can be adjusted to point - to the dir containing .so. See the manpage for ld.so for more info. - -10) STLport builds only multithreaded libraries, so your application should be compiled - as multithreaded, too. Use -pthread (or -pthreads on Solaris) option for GCC, -mt for SunPro, - /MT for VC, and so on. Sometimes you should define _REENTRANT or something else, depends - upon platform/compiler. See compiler's and linker's options on command line when you build - unit tests (build/test/unit) for reference. The last is useful for ANY platform. - -11) Don't hesitate to read READMEs (doc/README*, build/lib/README*, build/test/unit/README*) - and doc/FAQ. - -12) Have fun! - +********************************************************************** +* INSTALL file for STLport * +* * +********************************************************************** + +STLport is a full ANSI C++ Standard library. + +This distribution contains STLport sources only, no binaries. +To use STLport iostreams, locale and complex numbers, you have to build STLport +library from sources in "build/lib" directory and link your programs with it. + +Starting with 5.0 the 'wrapper' mode is not supported anymore. You cannot use native +compiler iostreams implementation with STLport STL (see doc/FAQ for explanations). +Now you have to choose between STLport iostreams or no iostreams. + +==== Unpacking and installing STLport ========== + +1) Unpack STLport archive to a directory accessible during compilation. + NOTE: DO NOT overwrite header files coming with the compiler, even if you made + a backup - this won't work! Most probably, you've already unpacked the archive before + reading this file though ;) + +2) Make sure "stlport" directory of this distribution comes before compiler's one + in your include paths when you compile the project. + + Note: for SunPro CC 5.0 and higher, there used to be special directory "stlport/SC5" + this is now obsolete, please make sure you do not use it anymore. + +3) Make sure you do not rename this "stlport" subdirectory - + that may result in compilation errors. + + NOTE: Your compiler should be recognized by STLport source code with no configuring. + Please edit appropriate configuration header for your compiler + directly if you have to make compiler-specific configuration changes + (see stlport/stl/config). + +4) Run: + + configure --help + + Depending on your environment, Windows command shell or Unix like shell, + configure.bat or configure script will be run respectively. For Windows users + running configure script is mandatory in order to declare the compiler you are + going to use. + +5) Go to "build/lib" subdirectory. It contains various makefiles for different + compilers and 'make' utilities (GNU Make and Microsoft's nmake supported). + + Verify you can do command line compiles. IDE users may have to do something + special, like add environment variables (for Microsoft) or install + additional compiler components (for Metrowerks), before they can use their + command line compilers (see doc/README.xxxx for additionnal information). + + configure script should have already created a Makefile file so that you only + have to call 'make' or 'nmake' (for some platforms GNU make might be hidden + behind 'gmake'). + + IMPORTANT: + + If you DO NOT plan to use STLport iostreams and/or locale implementation but just + the STL, you do not have to build the library. + + If you have decided to disable STLport iostreams and locale using _STLP_NO_IOSTREAMS + configuration macro in stlport/stl/config/user_config.h, you may stop reading here. + + +==== Building STLport iostreams library ========== + +Below are step-by-step instructions to build STLport streams library. This is a general +build process description, for a more detailed one check README files in the doc folder: + +5) Using appropriate make command (make or nmake), do + + make clean install + + to build the STLport libraries. Make files are set up to build several different + flavors - debug/nondebug, static/dynamic versions. But not all flavors will be build + by default. See build/lib/README for other make targets. + + Note: 'install' target work slightly different than usual - it installs libraries into + /lib and bin catalogs, NOT IN SYSTEM CATALOG. You can do the system + install by just copying stlport and lib folder to the destination of your choise. For + example on UNIX-like platforms this can be done with the following commands: + + su + tar cf - stlport | (cd /usr/local/include; tar xf -) + chmod -R a+r /usr/local/include/stlport + chown -R root:root /usr/local/include/stlport + (cd lib; tar cf - --exclude=CVS --exclude=.cvsignore .) | (cd /usr/local/lib; tar xf -) + chown -R root:root /usr/local/lib/libstlport* + exit + + Note: System install is optional, most of compilers/linkers support searching for includes + and libs throught out the whole filesystem, just check your documentation on how to achieve + this. + + If you use cross-compiler, you can find libraries in the /lib/ + catalog. + +6) If build fails, you may choose to : + - try fixing the build ;) + - wait until somebody else will submit corresponding changes to be incorporated in next STLport + release/snapshot. + + In case you do patch STLport, please submit your patches to + https://sourceforge.net/tracker/?atid=766246&group_id=146814&func=browse + +==== Linking your application with STLport library ========== + +7) Check the build: + + Example: + + - under Linux and other Unixes: + + cd build/test/unit + make install + ../../../bin/stl_unit_test + ../../../bin-g/stl_unit_test + + - under Windows: + + cd build\test\unit + nmake install + cd ..\..\..\bin + stl_unit_test + stl_unit_testd + stl_unit_teststld + +8) Supply the "lib" subdirectory to the library search path and add desired + library to the list of libraries to link with. + Examples (imagine you have mytest.cpp in the same directory as this file is): + With GCC : g++ -pthread -I./stlport mytest.cpp -L./lib/ -lstlport + With DEC CC : cxx -I./stlport mytest.cpp -L./lib/ -lstlport + With SUN CC : CC -mt -I./stlport mytest.cpp -L./lib/ -lstlport + ..... + For several compilers supporting auto linking feature (VC++, Borland, DMC), + you do not have to specify "stlport.M.m.lib" explicitly, as it is being choosen + and forced to link automatically by "#pragma"'s in compiler config files + Appropriate version is being selected based on compiler options and _STLP_DEBUG + setting. All you have to do is to set library search path for the linker. + + Example : + cl.exe /I.\stlport mytest.cpp /link /libpath:.\lib /MD + +9) If you linked your application with shared STLport library (.so or .dll), please + make suze that your .so or .dll can be found by the dynamic linker. + Under Windows, the paths searched depend on the particular flavor, see the MSDN + documentation for LoadLibrary at http://msdn.microsoft.com. The easiest ways are to + either modify the PATH environment variable or copy all .dll's next to the + executable like it is done per default when unit tests executable are put next + to dlls. + Under Linux, the environment variable LD_LIBRARY_PATH can be adjusted to point + to the dir containing .so. See the manpage for ld.so for more info. + +10) STLport builds only multithreaded libraries, so your application should be compiled + as multithreaded, too. Use -pthread (or -pthreads on Solaris) option for GCC, -mt for SunPro, + /MT for VC, and so on. Sometimes you should define _REENTRANT or something else, depends + upon platform/compiler. See compiler's and linker's options on command line when you build + unit tests (build/test/unit) for reference. The last is useful for ANY platform. + +11) Don't hesitate to read READMEs (doc/README*, build/lib/README*, build/test/unit/README*) + and doc/FAQ. + +12) Have fun! + diff --git a/sdk/lib/3rdparty/stlport/INSTALL.unixes b/sdk/lib/3rdparty/stlport/INSTALL.unixes index 4cd1ecf1ebf..f9b2e21c34c 100644 --- a/sdk/lib/3rdparty/stlport/INSTALL.unixes +++ b/sdk/lib/3rdparty/stlport/INSTALL.unixes @@ -1,120 +1,120 @@ -********************************************************************** -* INSTALL file for STLport 5.2 * -* * -********************************************************************** - -STLport is a full ANSI C++ Standard library. - -This distribution contains STLport sources only, no binaries. -To use STLport iostreams, locale and complex numbers, you have -to build STLport library from sources and link your programs with it. - -Starting with 5.0 the 'wrapper' mode is not supported anymore. -You cannot use native compiler iostreams implementation with STLport STL -(see doc/FAQ for explanations). - -==== Installing STLport ========== - -0) DO NOT overwrite/move/rename header files coming with the compiler, - even if you made a backup---STLport need this headers and don't - override ones. - -1) Run - - ./configure --help - - read options description; if you use compiler - different from gcc, pay attention to --use-compiler-family= option. - -2) Run - - ./configure