LCOV - code coverage report
Current view: top level - libcli/util - hresult.c (source / functions) Hit Total Coverage
Test: coverage report for abartlet/fix-coverage dd10fb34 Lines: 5 16 31.2 %
Date: 2021-09-23 10:06:22 Functions: 1 2 50.0 %

          Line data    Source code
       1             : /*
       2             :  * Unix SMB/CIFS implementation.
       3             :  *
       4             :  * HRESULT Error definitions
       5             :  *
       6             :  * Copyright (C) Noel Power <noel.power@suse.com> 2014
       7             :  *
       8             :  * This program is free software; you can redistribute it and/or modify
       9             :  * it under the terms of the GNU General Public License as published by
      10             :  * the Free Software Foundation; either version 3 of the License, or
      11             :  * (at your option) any later version.
      12             :  *
      13             :  * This program is distributed in the hope that it will be useful,
      14             :  * but WITHOUT ANY WARRANTY; without even the implied warranty of
      15             :  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      16             :  * GNU General Public License for more details.
      17             :  *
      18             :  * You should have received a copy of the GNU General Public License
      19             :  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
      20             :  */
      21             : 
      22             : #include "includes.h"
      23             : #include "hresult.h"
      24             : /*
      25             :  * The following error codes and descriptions are autogenerated from [MS-ERREF]
      26             :  * see http://msdn.microsoft.com/en-us/library/cc704587.aspx
      27             :  */
      28             : 
      29             : static const struct {
      30             :         HRESULT error_code;
      31             :         const char *error_str;
      32             :         const char *error_message;
      33             : } hresult_errs[] = {
      34             :         {
      35             :                 HRES_STG_S_CONVERTED,
      36             :                 "HRES_STG_S_CONVERTED",
      37             :                 "The underlying file was converted to compound file format."
      38             :         },
      39             :         {
      40             :                 HRES_STG_S_BLOCK,
      41             :                 "HRES_STG_S_BLOCK",
      42             :                 "The storage operation should block until more data is available."
      43             :         },
      44             :         {
      45             :                 HRES_STG_S_RETRYNOW,
      46             :                 "HRES_STG_S_RETRYNOW",
      47             :                 "The storage operation should retry immediately."
      48             :         },
      49             :         {
      50             :                 HRES_STG_S_MONITORING,
      51             :                 "HRES_STG_S_MONITORING",
      52             :                 "The notified event sink will not influence the storage operation."
      53             :         },
      54             :         {
      55             :                 HRES_STG_S_MULTIPLEOPENS,
      56             :                 "HRES_STG_S_MULTIPLEOPENS",
      57             :                 "Multiple opens prevent consolidated (commit succeeded)."
      58             :         },
      59             :         {
      60             :                 HRES_STG_S_CONSOLIDATIONFAILED,
      61             :                 "HRES_STG_S_CONSOLIDATIONFAILED",
      62             :                 "Consolidation of the storage file failed (commit succeeded)."
      63             :         },
      64             :         {
      65             :                 HRES_STG_S_CANNOTCONSOLIDATE,
      66             :                 "HRES_STG_S_CANNOTCONSOLIDATE",
      67             :                 "Consolidation of the storage file is inappropriate (commit succeeded)."
      68             :         },
      69             :         {
      70             :                 HRES_OLE_S_USEREG,
      71             :                 "HRES_OLE_S_USEREG",
      72             :                 "Use the registry database to provide the requested information."
      73             :         },
      74             :         {
      75             :                 HRES_OLE_S_STATIC,
      76             :                 "HRES_OLE_S_STATIC",
      77             :                 "Success, but static."
      78             :         },
      79             :         {
      80             :                 HRES_OLE_S_MAC_CLIPFORMAT,
      81             :                 "HRES_OLE_S_MAC_CLIPFORMAT",
      82             :                 "Macintosh clipboard format."
      83             :         },
      84             :         {
      85             :                 HRES_DRAGDROP_S_DROP,
      86             :                 "HRES_DRAGDROP_S_DROP",
      87             :                 "Successful drop took place."
      88             :         },
      89             :         {
      90             :                 HRES_DRAGDROP_S_CANCEL,
      91             :                 "HRES_DRAGDROP_S_CANCEL",
      92             :                 "Drag-drop operation canceled."
      93             :         },
      94             :         {
      95             :                 HRES_DRAGDROP_S_USEDEFAULTCURSORS,
      96             :                 "HRES_DRAGDROP_S_USEDEFAULTCURSORS",
      97             :                 "Use the default cursor."
      98             :         },
      99             :         {
     100             :                 HRES_DATA_S_SAMEFORMATETC,
     101             :                 "HRES_DATA_S_SAMEFORMATETC",
     102             :                 "Data has same FORMATETC."
     103             :         },
     104             :         {
     105             :                 HRES_VIEW_S_ALREADY_FROZEN,
     106             :                 "HRES_VIEW_S_ALREADY_FROZEN",
     107             :                 "View is already frozen."
     108             :         },
     109             :         {
     110             :                 HRES_CACHE_S_FORMATETC_NOTSUPPORTED,
     111             :                 "HRES_CACHE_S_FORMATETC_NOTSUPPORTED",
     112             :                 "FORMATETC not supported."
     113             :         },
     114             :         {
     115             :                 HRES_CACHE_S_SAMECACHE,
     116             :                 "HRES_CACHE_S_SAMECACHE",
     117             :                 "Same cache."
     118             :         },
     119             :         {
     120             :                 HRES_CACHE_S_SOMECACHES_NOTUPDATED,
     121             :                 "HRES_CACHE_S_SOMECACHES_NOTUPDATED",
     122             :                 "Some caches are not updated."
     123             :         },
     124             :         {
     125             :                 HRES_OLEOBJ_S_INVALIDVERB,
     126             :                 "HRES_OLEOBJ_S_INVALIDVERB",
     127             :                 "Invalid verb for OLE object."
     128             :         },
     129             :         {
     130             :                 HRES_OLEOBJ_S_CANNOT_DOVERB_NOW,
     131             :                 "HRES_OLEOBJ_S_CANNOT_DOVERB_NOW",
     132             :                 "Verb number is valid but verb cannot be done now."
     133             :         },
     134             :         {
     135             :                 HRES_OLEOBJ_S_INVALIDHWND,
     136             :                 "HRES_OLEOBJ_S_INVALIDHWND",
     137             :                 "Invalid window handle passed."
     138             :         },
     139             :         {
     140             :                 HRES_INPLACE_S_TRUNCATED,
     141             :                 "HRES_INPLACE_S_TRUNCATED",
     142             :                 "Message is too long; some of it had to be truncated before displaying."
     143             :         },
     144             :         {
     145             :                 HRES_CONVERT10_S_NO_PRESENTATION,
     146             :                 "HRES_CONVERT10_S_NO_PRESENTATION",
     147             :                 "Unable to convert OLESTREAM to IStorage."
     148             :         },
     149             :         {
     150             :                 HRES_MK_S_REDUCED_TO_SELF,
     151             :                 "HRES_MK_S_REDUCED_TO_SELF",
     152             :                 "Moniker reduced to itself."
     153             :         },
     154             :         {
     155             :                 HRES_MK_S_ME,
     156             :                 "HRES_MK_S_ME",
     157             :                 "Common prefix is this moniker."
     158             :         },
     159             :         {
     160             :                 HRES_MK_S_HIM,
     161             :                 "HRES_MK_S_HIM",
     162             :                 "Common prefix is input moniker."
     163             :         },
     164             :         {
     165             :                 HRES_MK_S_US,
     166             :                 "HRES_MK_S_US",
     167             :                 "Common prefix is both monikers."
     168             :         },
     169             :         {
     170             :                 HRES_MK_S_MONIKERALREADYREGISTERED,
     171             :                 "HRES_MK_S_MONIKERALREADYREGISTERED",
     172             :                 "Moniker is already registered in running object table."
     173             :         },
     174             :         {
     175             :                 HRES_EVENT_S_SOME_SUBSCRIBERS_FAILED,
     176             :                 "HRES_EVENT_S_SOME_SUBSCRIBERS_FAILED",
     177             :                 "An event was able to invoke some, but not all, of the subscribers."
     178             :         },
     179             :         {
     180             :                 HRES_EVENT_S_NOSUBSCRIBERS,
     181             :                 "HRES_EVENT_S_NOSUBSCRIBERS",
     182             :                 "An event was delivered, but there were no subscribers."
     183             :         },
     184             :         {
     185             :                 HRES_SCHED_S_TASK_READY,
     186             :                 "HRES_SCHED_S_TASK_READY",
     187             :                 "The task is ready to run at its next scheduled time."
     188             :         },
     189             :         {
     190             :                 HRES_SCHED_S_TASK_RUNNING,
     191             :                 "HRES_SCHED_S_TASK_RUNNING",
     192             :                 "The task is currently running."
     193             :         },
     194             :         {
     195             :                 HRES_SCHED_S_TASK_DISABLED,
     196             :                 "HRES_SCHED_S_TASK_DISABLED",
     197             :                 "The task will not run at the scheduled times because it has been disabled."
     198             :         },
     199             :         {
     200             :                 HRES_SCHED_S_TASK_HAS_NOT_RUN,
     201             :                 "HRES_SCHED_S_TASK_HAS_NOT_RUN",
     202             :                 "The task has not yet run."
     203             :         },
     204             :         {
     205             :                 HRES_SCHED_S_TASK_NO_MORE_RUNS,
     206             :                 "HRES_SCHED_S_TASK_NO_MORE_RUNS",
     207             :                 "There are no more runs scheduled for this task."
     208             :         },
     209             :         {
     210             :                 HRES_SCHED_S_TASK_NOT_SCHEDULED,
     211             :                 "HRES_SCHED_S_TASK_NOT_SCHEDULED",
     212             :                 "One or more of the properties that are needed to run this task on a schedule have not been set."
     213             :         },
     214             :         {
     215             :                 HRES_SCHED_S_TASK_TERMINATED,
     216             :                 "HRES_SCHED_S_TASK_TERMINATED",
     217             :                 "The last run of the task was terminated by the user."
     218             :         },
     219             :         {
     220             :                 HRES_SCHED_S_TASK_NO_VALID_TRIGGERS,
     221             :                 "HRES_SCHED_S_TASK_NO_VALID_TRIGGERS",
     222             :                 "Either the task has no triggers, or the existing triggers are disabled or not set."
     223             :         },
     224             :         {
     225             :                 HRES_SCHED_S_EVENT_TRIGGER,
     226             :                 "HRES_SCHED_S_EVENT_TRIGGER",
     227             :                 "Event triggers do not have set run times."
     228             :         },
     229             :         {
     230             :                 HRES_SCHED_S_SOME_TRIGGERS_FAILED,
     231             :                 "HRES_SCHED_S_SOME_TRIGGERS_FAILED",
     232             :                 "The task is registered, but not all specified triggers will start the task."
     233             :         },
     234             :         {
     235             :                 HRES_SCHED_S_BATCH_LOGON_PROBLEM,
     236             :                 "HRES_SCHED_S_BATCH_LOGON_PROBLEM",
     237             :                 "The task is registered, but it might fail to start. Batch logon privilege needs to be enabled for the task principal."
     238             :         },
     239             :         {
     240             :                 HRES_XACT_S_ASYNC,
     241             :                 "HRES_XACT_S_ASYNC",
     242             :                 "An asynchronous operation was specified. The operation has begun, but its outcome is not known yet."
     243             :         },
     244             :         {
     245             :                 HRES_XACT_S_READONLY,
     246             :                 "HRES_XACT_S_READONLY",
     247             :                 "The method call succeeded because the transaction was read-only."
     248             :         },
     249             :         {
     250             :                 HRES_XACT_S_SOMENORETAIN,
     251             :                 "HRES_XACT_S_SOMENORETAIN",
     252             :                 "The transaction was successfully aborted. However, this is a coordinated transaction, and a number of enlisted resources were aborted outright because they could not support abort-retaining semantics."
     253             :         },
     254             :         {
     255             :                 HRES_XACT_S_OKINFORM,
     256             :                 "HRES_XACT_S_OKINFORM",
     257             :                 "No changes were made during this call, but the sink wants another chance to look if any other sinks make further changes."
     258             :         },
     259             :         {
     260             :                 HRES_XACT_S_MADECHANGESCONTENT,
     261             :                 "HRES_XACT_S_MADECHANGESCONTENT",
     262             :                 "The sink is content and wants the transaction to proceed. Changes were made to one or more resources during this call."
     263             :         },
     264             :         {
     265             :                 HRES_XACT_S_MADECHANGESINFORM,
     266             :                 "HRES_XACT_S_MADECHANGESINFORM",
     267             :                 "The sink is for the moment and wants the transaction to proceed, but if other changes are made following this return by other event sinks, this sink wants another chance to look."
     268             :         },
     269             :         {
     270             :                 HRES_XACT_S_ALLNORETAIN,
     271             :                 "HRES_XACT_S_ALLNORETAIN",
     272             :                 "The transaction was successfully aborted. However, the abort was nonretaining."
     273             :         },
     274             :         {
     275             :                 HRES_XACT_S_ABORTING,
     276             :                 "HRES_XACT_S_ABORTING",
     277             :                 "An abort operation was already in progress."
     278             :         },
     279             :         {
     280             :                 HRES_XACT_S_SINGLEPHASE,
     281             :                 "HRES_XACT_S_SINGLEPHASE",
     282             :                 "The resource manager has performed a single-phase commit of the transaction."
     283             :         },
     284             :         {
     285             :                 HRES_XACT_S_LOCALLY_OK,
     286             :                 "HRES_XACT_S_LOCALLY_OK",
     287             :                 "The local transaction has not aborted."
     288             :         },
     289             :         {
     290             :                 HRES_XACT_S_LASTRESOURCEMANAGER,
     291             :                 "HRES_XACT_S_LASTRESOURCEMANAGER",
     292             :                 "The resource manager has requested to be the coordinator (last resource manager) for the transaction."
     293             :         },
     294             :         {
     295             :                 HRES_CO_S_NOTALLINTERFACES,
     296             :                 "HRES_CO_S_NOTALLINTERFACES",
     297             :                 "Not all the requested interfaces were available."
     298             :         },
     299             :         {
     300             :                 HRES_CO_S_MACHINENAMENOTFOUND,
     301             :                 "HRES_CO_S_MACHINENAMENOTFOUND",
     302             :                 "The specified machine name was not found in the cache."
     303             :         },
     304             :         {
     305             :                 HRES_SEC_I_CONTINUE_NEEDED,
     306             :                 "HRES_SEC_I_CONTINUE_NEEDED",
     307             :                 "The function completed successfully, but it must be called again to complete the context."
     308             :         },
     309             :         {
     310             :                 HRES_SEC_I_COMPLETE_NEEDED,
     311             :                 "HRES_SEC_I_COMPLETE_NEEDED",
     312             :                 "The function completed successfully, but CompleteToken must be called."
     313             :         },
     314             :         {
     315             :                 HRES_SEC_I_COMPLETE_AND_CONTINUE,
     316             :                 "HRES_SEC_I_COMPLETE_AND_CONTINUE",
     317             :                 "The function completed successfully, but both CompleteToken and this function must be called to complete the context."
     318             :         },
     319             :         {
     320             :                 HRES_SEC_I_LOCAL_LOGON,
     321             :                 "HRES_SEC_I_LOCAL_LOGON",
     322             :                 "The logon was completed, but no network authority was available. The logon was made using locally known information."
     323             :         },
     324             :         {
     325             :                 HRES_SEC_I_CONTEXT_EXPIRED,
     326             :                 "HRES_SEC_I_CONTEXT_EXPIRED",
     327             :                 "The context has expired and can no longer be used."
     328             :         },
     329             :         {
     330             :                 HRES_SEC_I_INCOMPLETE_CREDENTIALS,
     331             :                 "HRES_SEC_I_INCOMPLETE_CREDENTIALS",
     332             :                 "The credentials supplied were not complete and could not be verified. Additional information can be returned from the context."
     333             :         },
     334             :         {
     335             :                 HRES_SEC_I_RENEGOTIATE,
     336             :                 "HRES_SEC_I_RENEGOTIATE",
     337             :                 "The context data must be renegotiated with the peer."
     338             :         },
     339             :         {
     340             :                 HRES_SEC_I_NO_LSA_CONTEXT,
     341             :                 "HRES_SEC_I_NO_LSA_CONTEXT",
     342             :                 "There is no LSA mode context associated with this context."
     343             :         },
     344             :         {
     345             :                 HRES_SEC_I_SIGNATURE_NEEDED,
     346             :                 "HRES_SEC_I_SIGNATURE_NEEDED",
     347             :                 "A signature operation must be performed before the user can authenticate."
     348             :         },
     349             :         {
     350             :                 HRES_CRYPT_I_NEW_PROTECTION_REQUIRED,
     351             :                 "HRES_CRYPT_I_NEW_PROTECTION_REQUIRED",
     352             :                 "The protected data needs to be reprotected."
     353             :         },
     354             :         {
     355             :                 HRES_NS_S_CALLPENDING,
     356             :                 "HRES_NS_S_CALLPENDING",
     357             :                 "The requested operation is pending completion."
     358             :         },
     359             :         {
     360             :                 HRES_NS_S_CALLABORTED,
     361             :                 "HRES_NS_S_CALLABORTED",
     362             :                 "The requested operation was aborted by the client."
     363             :         },
     364             :         {
     365             :                 HRES_NS_S_STREAM_TRUNCATED,
     366             :                 "HRES_NS_S_STREAM_TRUNCATED",
     367             :                 "The stream was purposefully stopped before completion."
     368             :         },
     369             :         {
     370             :                 HRES_NS_S_REBUFFERING,
     371             :                 "HRES_NS_S_REBUFFERING",
     372             :                 "The requested operation has caused the source to rebuffer."
     373             :         },
     374             :         {
     375             :                 HRES_NS_S_DEGRADING_QUALITY,
     376             :                 "HRES_NS_S_DEGRADING_QUALITY",
     377             :                 "The requested operation has caused the source to degrade codec quality."
     378             :         },
     379             :         {
     380             :                 HRES_NS_S_TRANSCRYPTOR_EOF,
     381             :                 "HRES_NS_S_TRANSCRYPTOR_EOF",
     382             :                 "The transcryptor object has reached end of file."
     383             :         },
     384             :         {
     385             :                 HRES_NS_S_WMP_UI_VERSIONMISMATCH,
     386             :                 "HRES_NS_S_WMP_UI_VERSIONMISMATCH",
     387             :                 "An upgrade is needed for the theme manager to correctly show this skin. Skin reports version: %.1f."
     388             :         },
     389             :         {
     390             :                 HRES_NS_S_WMP_EXCEPTION,
     391             :                 "HRES_NS_S_WMP_EXCEPTION",
     392             :                 "An error occurred in one of the UI components."
     393             :         },
     394             :         {
     395             :                 HRES_NS_S_WMP_LOADED_GIF_IMAGE,
     396             :                 "HRES_NS_S_WMP_LOADED_GIF_IMAGE",
     397             :                 "Successfully loaded a GIF file."
     398             :         },
     399             :         {
     400             :                 HRES_NS_S_WMP_LOADED_PNG_IMAGE,
     401             :                 "HRES_NS_S_WMP_LOADED_PNG_IMAGE",
     402             :                 "Successfully loaded a PNG file."
     403             :         },
     404             :         {
     405             :                 HRES_NS_S_WMP_LOADED_BMP_IMAGE,
     406             :                 "HRES_NS_S_WMP_LOADED_BMP_IMAGE",
     407             :                 "Successfully loaded a BMP file."
     408             :         },
     409             :         {
     410             :                 HRES_NS_S_WMP_LOADED_JPG_IMAGE,
     411             :                 "HRES_NS_S_WMP_LOADED_JPG_IMAGE",
     412             :                 "Successfully loaded a JPG file."
     413             :         },
     414             :         {
     415             :                 HRES_NS_S_WMG_FORCE_DROP_FRAME,
     416             :                 "HRES_NS_S_WMG_FORCE_DROP_FRAME",
     417             :                 "Drop this frame."
     418             :         },
     419             :         {
     420             :                 HRES_NS_S_WMR_ALREADYRENDERED,
     421             :                 "HRES_NS_S_WMR_ALREADYRENDERED",
     422             :                 "The specified stream has already been rendered."
     423             :         },
     424             :         {
     425             :                 HRES_NS_S_WMR_PINTYPEPARTIALMATCH,
     426             :                 "HRES_NS_S_WMR_PINTYPEPARTIALMATCH",
     427             :                 "The specified type partially matches this pin type."
     428             :         },
     429             :         {
     430             :                 HRES_NS_S_WMR_PINTYPEFULLMATCH,
     431             :                 "HRES_NS_S_WMR_PINTYPEFULLMATCH",
     432             :                 "The specified type fully matches this pin type."
     433             :         },
     434             :         {
     435             :                 HRES_NS_S_WMG_ADVISE_DROP_FRAME,
     436             :                 "HRES_NS_S_WMG_ADVISE_DROP_FRAME",
     437             :                 "The timestamp is late compared to the current render position. Advise dropping this frame."
     438             :         },
     439             :         {
     440             :                 HRES_NS_S_WMG_ADVISE_DROP_TO_KEYFRAME,
     441             :                 "HRES_NS_S_WMG_ADVISE_DROP_TO_KEYFRAME",
     442             :                 "The timestamp is severely late compared to the current render position. Advise dropping everything up to the next key frame."
     443             :         },
     444             :         {
     445             :                 HRES_NS_S_NEED_TO_BUY_BURN_RIGHTS,
     446             :                 "HRES_NS_S_NEED_TO_BUY_BURN_RIGHTS",
     447             :                 "No burn rights. You will be prompted to buy burn rights when you try to burn this file to an audio CD."
     448             :         },
     449             :         {
     450             :                 HRES_NS_S_WMPCORE_PLAYLISTCLEARABORT,
     451             :                 "HRES_NS_S_WMPCORE_PLAYLISTCLEARABORT",
     452             :                 "Failed to clear playlist because it was aborted by user."
     453             :         },
     454             :         {
     455             :                 HRES_NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT,
     456             :                 "HRES_NS_S_WMPCORE_PLAYLISTREMOVEITEMABORT",
     457             :                 "Failed to remove item in the playlist since it was aborted by user."
     458             :         },
     459             :         {
     460             :                 HRES_NS_S_WMPCORE_PLAYLIST_CREATION_PENDING,
     461             :                 "HRES_NS_S_WMPCORE_PLAYLIST_CREATION_PENDING",
     462             :                 "Playlist is being generated asynchronously."
     463             :         },
     464             :         {
     465             :                 HRES_NS_S_WMPCORE_MEDIA_VALIDATION_PENDING,
     466             :                 "HRES_NS_S_WMPCORE_MEDIA_VALIDATION_PENDING",
     467             :                 "Validation of the media is pending."
     468             :         },
     469             :         {
     470             :                 HRES_NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED,
     471             :                 "HRES_NS_S_WMPCORE_PLAYLIST_REPEAT_SECONDARY_SEGMENTS_IGNORED",
     472             :                 "Encountered more than one Repeat block during ASX processing."
     473             :         },
     474             :         {
     475             :                 HRES_NS_S_WMPCORE_COMMAND_NOT_AVAILABLE,
     476             :                 "HRES_NS_S_WMPCORE_COMMAND_NOT_AVAILABLE",
     477             :                 "Current state of WMP disallows calling this method or property."
     478             :         },
     479             :         {
     480             :                 HRES_NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED,
     481             :                 "HRES_NS_S_WMPCORE_PLAYLIST_NAME_AUTO_GENERATED",
     482             :                 "Name for the playlist has been auto generated."
     483             :         },
     484             :         {
     485             :                 HRES_NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS,
     486             :                 "HRES_NS_S_WMPCORE_PLAYLIST_IMPORT_MISSING_ITEMS",
     487             :                 "The imported playlist does not contain all items from the original."
     488             :         },
     489             :         {
     490             :                 HRES_NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA,
     491             :                 "HRES_NS_S_WMPCORE_PLAYLIST_COLLAPSED_TO_SINGLE_MEDIA",
     492             :                 "The M3U playlist has been ignored because it only contains one item."
     493             :         },
     494             :         {
     495             :                 HRES_NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING,
     496             :                 "HRES_NS_S_WMPCORE_MEDIA_CHILD_PLAYLIST_OPEN_PENDING",
     497             :                 "The open for the child playlist associated with this media is pending."
     498             :         },
     499             :         {
     500             :                 HRES_NS_S_WMPCORE_MORE_NODES_AVAIABLE,
     501             :                 "HRES_NS_S_WMPCORE_MORE_NODES_AVAIABLE",
     502             :                 "More nodes support the interface requested, but the array for returning them is full."
     503             :         },
     504             :         {
     505             :                 HRES_NS_S_WMPBR_SUCCESS,
     506             :                 "HRES_NS_S_WMPBR_SUCCESS",
     507             :                 "Backup or Restore successful!."
     508             :         },
     509             :         {
     510             :                 HRES_NS_S_WMPBR_PARTIALSUCCESS,
     511             :                 "HRES_NS_S_WMPBR_PARTIALSUCCESS",
     512             :                 "Transfer complete with limitations."
     513             :         },
     514             :         {
     515             :                 HRES_NS_S_WMPEFFECT_TRANSPARENT,
     516             :                 "HRES_NS_S_WMPEFFECT_TRANSPARENT",
     517             :                 "Request to the effects control to change transparency status to transparent."
     518             :         },
     519             :         {
     520             :                 HRES_NS_S_WMPEFFECT_OPAQUE,
     521             :                 "HRES_NS_S_WMPEFFECT_OPAQUE",
     522             :                 "Request to the effects control to change transparency status to opaque."
     523             :         },
     524             :         {
     525             :                 HRES_NS_S_OPERATION_PENDING,
     526             :                 "HRES_NS_S_OPERATION_PENDING",
     527             :                 "The requested application pane is performing an operation and will not be released."
     528             :         },
     529             :         {
     530             :                 HRES_NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE,
     531             :                 "HRES_NS_S_TRACK_BUY_REQUIRES_ALBUM_PURCHASE",
     532             :                 "The file is only available for purchase when you buy the entire album."
     533             :         },
     534             :         {
     535             :                 HRES_NS_S_NAVIGATION_COMPLETE_WITH_ERRORS,
     536             :                 "HRES_NS_S_NAVIGATION_COMPLETE_WITH_ERRORS",
     537             :                 "There were problems completing the requested navigation. There are identifiers missing in the catalog."
     538             :         },
     539             :         {
     540             :                 HRES_NS_S_TRACK_ALREADY_DOWNLOADED,
     541             :                 "HRES_NS_S_TRACK_ALREADY_DOWNLOADED",
     542             :                 "Track already downloaded."
     543             :         },
     544             :         {
     545             :                 HRES_NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS,
     546             :                 "HRES_NS_S_PUBLISHING_POINT_STARTED_WITH_FAILED_SINKS",
     547             :                 "The publishing point successfully started, but one or more of the requested data writer plug-ins failed."
     548             :         },
     549             :         {
     550             :                 HRES_NS_S_DRM_LICENSE_ACQUIRED,
     551             :                 "HRES_NS_S_DRM_LICENSE_ACQUIRED",
     552             :                 "Status message: The license was acquired."
     553             :         },
     554             :         {
     555             :                 HRES_NS_S_DRM_INDIVIDUALIZED,
     556             :                 "HRES_NS_S_DRM_INDIVIDUALIZED",
     557             :                 "Status message: The security upgrade has been completed."
     558             :         },
     559             :         {
     560             :                 HRES_NS_S_DRM_MONITOR_CANCELLED,
     561             :                 "HRES_NS_S_DRM_MONITOR_CANCELLED",
     562             :                 "Status message: License monitoring has been canceled."
     563             :         },
     564             :         {
     565             :                 HRES_NS_S_DRM_ACQUIRE_CANCELLED,
     566             :                 "HRES_NS_S_DRM_ACQUIRE_CANCELLED",
     567             :                 "Status message: License acquisition has been canceled."
     568             :         },
     569             :         {
     570             :                 HRES_NS_S_DRM_BURNABLE_TRACK,
     571             :                 "HRES_NS_S_DRM_BURNABLE_TRACK",
     572             :                 "The track is burnable and had no playlist burn limit."
     573             :         },
     574             :         {
     575             :                 HRES_NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION,
     576             :                 "HRES_NS_S_DRM_BURNABLE_TRACK_WITH_PLAYLIST_RESTRICTION",
     577             :                 "The track is burnable but has a playlist burn limit."
     578             :         },
     579             :         {
     580             :                 HRES_NS_S_DRM_NEEDS_INDIVIDUALIZATION,
     581             :                 "HRES_NS_S_DRM_NEEDS_INDIVIDUALIZATION",
     582             :                 "A security upgrade is required to perform the operation on this media file."
     583             :         },
     584             :         {
     585             :                 HRES_NS_S_REBOOT_RECOMMENDED,
     586             :                 "HRES_NS_S_REBOOT_RECOMMENDED",
     587             :                 "Installation was successful; however, some file cleanup is not complete. For best results, restart your computer."
     588             :         },
     589             :         {
     590             :                 HRES_NS_S_REBOOT_REQUIRED,
     591             :                 "HRES_NS_S_REBOOT_REQUIRED",
     592             :                 "Installation was successful; however, some file cleanup is not complete. To continue, you must restart your computer."
     593             :         },
     594             :         {
     595             :                 HRES_NS_S_EOSRECEDING,
     596             :                 "HRES_NS_S_EOSRECEDING",
     597             :                 "EOS hit during rewinding."
     598             :         },
     599             :         {
     600             :                 HRES_NS_S_CHANGENOTICE,
     601             :                 "HRES_NS_S_CHANGENOTICE",
     602             :                 "Internal."
     603             :         },
     604             :         {
     605             :                 HRES_ERROR_FLT_IO_COMPLETE,
     606             :                 "HRES_ERROR_FLT_IO_COMPLETE",
     607             :                 "The IO was completed by a filter."
     608             :         },
     609             :         {
     610             :                 HRES_ERROR_GRAPHICS_MODE_NOT_PINNED,
     611             :                 "HRES_ERROR_GRAPHICS_MODE_NOT_PINNED",
     612             :                 "No mode is pinned on the specified VidPN source or target."
     613             :         },
     614             :         {
     615             :                 HRES_ERROR_GRAPHICS_NO_PREFERRED_MODE,
     616             :                 "HRES_ERROR_GRAPHICS_NO_PREFERRED_MODE",
     617             :                 "Specified mode set does not specify preference for one of its modes."
     618             :         },
     619             :         {
     620             :                 HRES_ERROR_GRAPHICS_DATASET_IS_EMPTY,
     621             :                 "HRES_ERROR_GRAPHICS_DATASET_IS_EMPTY",
     622             :                 "Specified data set (for example, mode set, frequency range set, descriptor set, and topology) is empty."
     623             :         },
     624             :         {
     625             :                 HRES_ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET,
     626             :                 "HRES_ERROR_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET",
     627             :                 "Specified data set (for example, mode set, frequency range set, descriptor set, and topology) does not contain any more elements."
     628             :         },
     629             :         {
     630             :                 HRES_ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED,
     631             :                 "HRES_ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED",
     632             :                 "Specified content transformation is not pinned on the specified VidPN present path."
     633             :         },
     634             :         {
     635             :                 HRES_PLA_S_PROPERTY_IGNORED,
     636             :                 "HRES_PLA_S_PROPERTY_IGNORED",
     637             :                 "Property value will be ignored."
     638             :         },
     639             :         {
     640             :                 HRES_ERROR_NDIS_INDICATION_REQUIRED,
     641             :                 "HRES_ERROR_NDIS_INDICATION_REQUIRED",
     642             :                 "The request will be completed later by a Network Driver Interface Specification (NDIS) status indication."
     643             :         },
     644             :         {
     645             :                 HRES_TRK_S_OUT_OF_SYNC,
     646             :                 "HRES_TRK_S_OUT_OF_SYNC",
     647             :                 "The VolumeSequenceNumber of a MOVE_NOTIFICATION request is incorrect."
     648             :         },
     649             :         {
     650             :                 HRES_TRK_VOLUME_NOT_FOUND,
     651             :                 "HRES_TRK_VOLUME_NOT_FOUND",
     652             :                 "The VolumeID in a request was not found in the server's ServerVolumeTable."
     653             :         },
     654             :         {
     655             :                 HRES_TRK_VOLUME_NOT_OWNED,
     656             :                 "HRES_TRK_VOLUME_NOT_OWNED",
     657             :                 "A notification was sent to the LnkSvrMessage method, but the RequestMachine for the request was not the VolumeOwner for a VolumeID in the request."
     658             :         },
     659             :         {
     660             :                 HRES_TRK_S_NOTIFICATION_QUOTA_EXCEEDED,
     661             :                 "HRES_TRK_S_NOTIFICATION_QUOTA_EXCEEDED",
     662             :                 "The server received a MOVE_NOTIFICATION request, but the FileTable size limit has already been reached."
     663             :         },
     664             :         {
     665             :                 HRES_NS_I_TIGER_START,
     666             :                 "HRES_NS_I_TIGER_START",
     667             :                 "The Title Server %1 is running."
     668             :         },
     669             :         {
     670             :                 HRES_NS_I_CUB_START,
     671             :                 "HRES_NS_I_CUB_START",
     672             :                 "Content Server %1 (%2) is starting."
     673             :         },
     674             :         {
     675             :                 HRES_NS_I_CUB_RUNNING,
     676             :                 "HRES_NS_I_CUB_RUNNING",
     677             :                 "Content Server %1 (%2) is running."
     678             :         },
     679             :         {
     680             :                 HRES_NS_I_DISK_START,
     681             :                 "HRES_NS_I_DISK_START",
     682             :                 "Disk %1 ( %2 ) on Content Server %3, is running."
     683             :         },
     684             :         {
     685             :                 HRES_NS_I_DISK_REBUILD_STARTED,
     686             :                 "HRES_NS_I_DISK_REBUILD_STARTED",
     687             :                 "Started rebuilding disk %1 ( %2 ) on Content Server %3."
     688             :         },
     689             :         {
     690             :                 HRES_NS_I_DISK_REBUILD_FINISHED,
     691             :                 "HRES_NS_I_DISK_REBUILD_FINISHED",
     692             :                 "Finished rebuilding disk %1 ( %2 ) on Content Server %3."
     693             :         },
     694             :         {
     695             :                 HRES_NS_I_DISK_REBUILD_ABORTED,
     696             :                 "HRES_NS_I_DISK_REBUILD_ABORTED",
     697             :                 "Aborted rebuilding disk %1 ( %2 ) on Content Server %3."
     698             :         },
     699             :         {
     700             :                 HRES_NS_I_LIMIT_FUNNELS,
     701             :                 "HRES_NS_I_LIMIT_FUNNELS",
     702             :                 "A NetShow administrator at network location %1 set the data stream limit to %2 streams."
     703             :         },
     704             :         {
     705             :                 HRES_NS_I_START_DISK,
     706             :                 "HRES_NS_I_START_DISK",
     707             :                 "A NetShow administrator at network location %1 started disk %2."
     708             :         },
     709             :         {
     710             :                 HRES_NS_I_STOP_DISK,
     711             :                 "HRES_NS_I_STOP_DISK",
     712             :                 "A NetShow administrator at network location %1 stopped disk %2."
     713             :         },
     714             :         {
     715             :                 HRES_NS_I_STOP_CUB,
     716             :                 "HRES_NS_I_STOP_CUB",
     717             :                 "A NetShow administrator at network location %1 stopped Content Server %2."
     718             :         },
     719             :         {
     720             :                 HRES_NS_I_KILL_USERSESSION,
     721             :                 "HRES_NS_I_KILL_USERSESSION",
     722             :                 "A NetShow administrator at network location %1 aborted user session %2 from the system."
     723             :         },
     724             :         {
     725             :                 HRES_NS_I_KILL_CONNECTION,
     726             :                 "HRES_NS_I_KILL_CONNECTION",
     727             :                 "A NetShow administrator at network location %1 aborted obsolete connection %2 from the system."
     728             :         },
     729             :         {
     730             :                 HRES_NS_I_REBUILD_DISK,
     731             :                 "HRES_NS_I_REBUILD_DISK",
     732             :                 "A NetShow administrator at network location %1 started rebuilding disk %2."
     733             :         },
     734             :         {
     735             :                 HRES_MCMADM_I_NO_EVENTS,
     736             :                 "HRES_MCMADM_I_NO_EVENTS",
     737             :                 "Event initialization failed, there will be no MCM events."
     738             :         },
     739             :         {
     740             :                 HRES_NS_I_LOGGING_FAILED,
     741             :                 "HRES_NS_I_LOGGING_FAILED",
     742             :                 "The logging operation failed."
     743             :         },
     744             :         {
     745             :                 HRES_NS_I_LIMIT_BANDWIDTH,
     746             :                 "HRES_NS_I_LIMIT_BANDWIDTH",
     747             :                 "A NetShow administrator at network location %1 set the maximum bandwidth limit to %2 bps."
     748             :         },
     749             :         {
     750             :                 HRES_NS_I_CUB_UNFAIL_LINK,
     751             :                 "HRES_NS_I_CUB_UNFAIL_LINK",
     752             :                 "Content Server %1 (%2) has established its link to Content Server %3."
     753             :         },
     754             :         {
     755             :                 HRES_NS_I_RESTRIPE_START,
     756             :                 "HRES_NS_I_RESTRIPE_START",
     757             :                 "Restripe operation has started."
     758             :         },
     759             :         {
     760             :                 HRES_NS_I_RESTRIPE_DONE,
     761             :                 "HRES_NS_I_RESTRIPE_DONE",
     762             :                 "Restripe operation has completed."
     763             :         },
     764             :         {
     765             :                 HRES_NS_I_RESTRIPE_DISK_OUT,
     766             :                 "HRES_NS_I_RESTRIPE_DISK_OUT",
     767             :                 "Content disk %1 (%2) on Content Server %3 has been restriped out."
     768             :         },
     769             :         {
     770             :                 HRES_NS_I_RESTRIPE_CUB_OUT,
     771             :                 "HRES_NS_I_RESTRIPE_CUB_OUT",
     772             :                 "Content server %1 (%2) has been restriped out."
     773             :         },
     774             :         {
     775             :                 HRES_NS_I_DISK_STOP,
     776             :                 "HRES_NS_I_DISK_STOP",
     777             :                 "Disk %1 ( %2 ) on Content Server %3, has been offlined."
     778             :         },
     779             :         {
     780             :                 HRES_NS_I_PLAYLIST_CHANGE_RECEDING,
     781             :                 "HRES_NS_I_PLAYLIST_CHANGE_RECEDING",
     782             :                 "The playlist change occurred while receding."
     783             :         },
     784             :         {
     785             :                 HRES_NS_I_RECONNECTED,
     786             :                 "HRES_NS_I_RECONNECTED",
     787             :                 "The client is reconnected."
     788             :         },
     789             :         {
     790             :                 HRES_NS_I_NOLOG_STOP,
     791             :                 "HRES_NS_I_NOLOG_STOP",
     792             :                 "Forcing a switch to a pending header on start."
     793             :         },
     794             :         {
     795             :                 HRES_NS_I_EXISTING_PACKETIZER,
     796             :                 "HRES_NS_I_EXISTING_PACKETIZER",
     797             :                 "There is already an existing packetizer plugin for the stream."
     798             :         },
     799             :         {
     800             :                 HRES_NS_I_MANUAL_PROXY,
     801             :                 "HRES_NS_I_MANUAL_PROXY",
     802             :                 "The proxy setting is manual."
     803             :         },
     804             :         {
     805             :                 HRES_ERROR_GRAPHICS_DRIVER_MISMATCH,
     806             :                 "HRES_ERROR_GRAPHICS_DRIVER_MISMATCH",
     807             :                 "The kernel driver detected a version mismatch between it and the user mode driver."
     808             :         },
     809             :         {
     810             :                 HRES_ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS,
     811             :                 "HRES_ERROR_GRAPHICS_UNKNOWN_CHILD_STATUS",
     812             :                 "Child device presence was not reliably detected."
     813             :         },
     814             :         {
     815             :                 HRES_ERROR_GRAPHICS_LEADLINK_START_DEFERRED,
     816             :                 "HRES_ERROR_GRAPHICS_LEADLINK_START_DEFERRED",
     817             :                 "Starting the lead-link adapter has been deferred temporarily."
     818             :         },
     819             :         {
     820             :                 HRES_ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY,
     821             :                 "HRES_ERROR_GRAPHICS_POLLING_TOO_FREQUENTLY",
     822             :                 "The display adapter is being polled for children too frequently at the same polling level."
     823             :         },
     824             :         {
     825             :                 HRES_ERROR_GRAPHICS_START_DEFERRED,
     826             :                 "HRES_ERROR_GRAPHICS_START_DEFERRED",
     827             :                 "Starting the adapter has been deferred temporarily."
     828             :         },
     829             :         {
     830             :                 HRES_E_PENDING,
     831             :                 "HRES_E_PENDING",
     832             :                 "The data necessary to complete this operation is not yet available."
     833             :         },
     834             :         {
     835             :                 HRES_E_NOTIMPL,
     836             :                 "HRES_E_NOTIMPL",
     837             :                 "Not implemented."
     838             :         },
     839             :         {
     840             :                 HRES_E_NOINTERFACE,
     841             :                 "HRES_E_NOINTERFACE",
     842             :                 "No such interface supported."
     843             :         },
     844             :         {
     845             :                 HRES_E_POINTER,
     846             :                 "HRES_E_POINTER",
     847             :                 "Invalid pointer."
     848             :         },
     849             :         {
     850             :                 HRES_E_ABORT,
     851             :                 "HRES_E_ABORT",
     852             :                 "Operation aborted."
     853             :         },
     854             :         {
     855             :                 HRES_E_FAIL,
     856             :                 "HRES_E_FAIL",
     857             :                 "Unspecified error."
     858             :         },
     859             :         {
     860             :                 HRES_CO_E_INIT_TLS,
     861             :                 "HRES_CO_E_INIT_TLS",
     862             :                 "Thread local storage failure."
     863             :         },
     864             :         {
     865             :                 HRES_CO_E_INIT_SHARED_ALLOCATOR,
     866             :                 "HRES_CO_E_INIT_SHARED_ALLOCATOR",
     867             :                 "Get shared memory allocator failure."
     868             :         },
     869             :         {
     870             :                 HRES_CO_E_INIT_MEMORY_ALLOCATOR,
     871             :                 "HRES_CO_E_INIT_MEMORY_ALLOCATOR",
     872             :                 "Get memory allocator failure."
     873             :         },
     874             :         {
     875             :                 HRES_CO_E_INIT_CLASS_CACHE,
     876             :                 "HRES_CO_E_INIT_CLASS_CACHE",
     877             :                 "Unable to initialize class cache."
     878             :         },
     879             :         {
     880             :                 HRES_CO_E_INIT_RPC_CHANNEL,
     881             :                 "HRES_CO_E_INIT_RPC_CHANNEL",
     882             :                 "Unable to initialize remote procedure call (RPC) services."
     883             :         },
     884             :         {
     885             :                 HRES_CO_E_INIT_TLS_SET_CHANNEL_CONTROL,
     886             :                 "HRES_CO_E_INIT_TLS_SET_CHANNEL_CONTROL",
     887             :                 "Cannot set thread local storage channel control."
     888             :         },
     889             :         {
     890             :                 HRES_CO_E_INIT_TLS_CHANNEL_CONTROL,
     891             :                 "HRES_CO_E_INIT_TLS_CHANNEL_CONTROL",
     892             :                 "Could not allocate thread local storage channel control."
     893             :         },
     894             :         {
     895             :                 HRES_CO_E_INIT_UNACCEPTED_USER_ALLOCATOR,
     896             :                 "HRES_CO_E_INIT_UNACCEPTED_USER_ALLOCATOR",
     897             :                 "The user-supplied memory allocator is unacceptable."
     898             :         },
     899             :         {
     900             :                 HRES_CO_E_INIT_SCM_MUTEX_EXISTS,
     901             :                 "HRES_CO_E_INIT_SCM_MUTEX_EXISTS",
     902             :                 "The OLE service mutex already exists."
     903             :         },
     904             :         {
     905             :                 HRES_CO_E_INIT_SCM_FILE_MAPPING_EXISTS,
     906             :                 "HRES_CO_E_INIT_SCM_FILE_MAPPING_EXISTS",
     907             :                 "The OLE service file mapping already exists."
     908             :         },
     909             :         {
     910             :                 HRES_CO_E_INIT_SCM_MAP_VIEW_OF_FILE,
     911             :                 "HRES_CO_E_INIT_SCM_MAP_VIEW_OF_FILE",
     912             :                 "Unable to map view of file for OLE service."
     913             :         },
     914             :         {
     915             :                 HRES_CO_E_INIT_SCM_EXEC_FAILURE,
     916             :                 "HRES_CO_E_INIT_SCM_EXEC_FAILURE",
     917             :                 "Failure attempting to launch OLE service."
     918             :         },
     919             :         {
     920             :                 HRES_CO_E_INIT_ONLY_SINGLE_THREADED,
     921             :                 "HRES_CO_E_INIT_ONLY_SINGLE_THREADED",
     922             :                 "There was an attempt to call CoInitialize a second time while single-threaded."
     923             :         },
     924             :         {
     925             :                 HRES_CO_E_CANT_REMOTE,
     926             :                 "HRES_CO_E_CANT_REMOTE",
     927             :                 "A Remote activation was necessary but was not allowed."
     928             :         },
     929             :         {
     930             :                 HRES_CO_E_BAD_SERVER_NAME,
     931             :                 "HRES_CO_E_BAD_SERVER_NAME",
     932             :                 "A Remote activation was necessary, but the server name provided was invalid."
     933             :         },
     934             :         {
     935             :                 HRES_CO_E_WRONG_SERVER_IDENTITY,
     936             :                 "HRES_CO_E_WRONG_SERVER_IDENTITY",
     937             :                 "The class is configured to run as a security ID different from the caller."
     938             :         },
     939             :         {
     940             :                 HRES_CO_E_OLE1DDE_DISABLED,
     941             :                 "HRES_CO_E_OLE1DDE_DISABLED",
     942             :                 "Use of OLE1 services requiring Dynamic Data Exchange (DDE) Windows is disabled."
     943             :         },
     944             :         {
     945             :                 HRES_CO_E_RUNAS_SYNTAX,
     946             :                 "HRES_CO_E_RUNAS_SYNTAX",
     947             :                 "A RunAs specification must be <domain name>\\<user name> or simply <user name>."
     948             :         },
     949             :         {
     950             :                 HRES_CO_E_CREATEPROCESS_FAILURE,
     951             :                 "HRES_CO_E_CREATEPROCESS_FAILURE",
     952             :                 "The server process could not be started. The path name might be incorrect."
     953             :         },
     954             :         {
     955             :                 HRES_CO_E_RUNAS_CREATEPROCESS_FAILURE,
     956             :                 "HRES_CO_E_RUNAS_CREATEPROCESS_FAILURE",
     957             :                 "The server process could not be started as the configured identity. The path name might be incorrect or unavailable."
     958             :         },
     959             :         {
     960             :                 HRES_CO_E_RUNAS_LOGON_FAILURE,
     961             :                 "HRES_CO_E_RUNAS_LOGON_FAILURE",
     962             :                 "The server process could not be started because the configured identity is incorrect. Check the user name and password."
     963             :         },
     964             :         {
     965             :                 HRES_CO_E_LAUNCH_PERMSSION_DENIED,
     966             :                 "HRES_CO_E_LAUNCH_PERMSSION_DENIED",
     967             :                 "The client is not allowed to launch this server."
     968             :         },
     969             :         {
     970             :                 HRES_CO_E_START_SERVICE_FAILURE,
     971             :                 "HRES_CO_E_START_SERVICE_FAILURE",
     972             :                 "The service providing this server could not be started."
     973             :         },
     974             :         {
     975             :                 HRES_CO_E_REMOTE_COMMUNICATION_FAILURE,
     976             :                 "HRES_CO_E_REMOTE_COMMUNICATION_FAILURE",
     977             :                 "This computer was unable to communicate with the computer providing the server."
     978             :         },
     979             :         {
     980             :                 HRES_CO_E_SERVER_START_TIMEOUT,
     981             :                 "HRES_CO_E_SERVER_START_TIMEOUT",
     982             :                 "The server did not respond after being launched."
     983             :         },
     984             :         {
     985             :                 HRES_CO_E_CLSREG_INCONSISTENT,
     986             :                 "HRES_CO_E_CLSREG_INCONSISTENT",
     987             :                 "The registration information for this server is inconsistent or incomplete."
     988             :         },
     989             :         {
     990             :                 HRES_CO_E_IIDREG_INCONSISTENT,
     991             :                 "HRES_CO_E_IIDREG_INCONSISTENT",
     992             :                 "The registration information for this interface is inconsistent or incomplete."
     993             :         },
     994             :         {
     995             :                 HRES_CO_E_NOT_SUPPORTED,
     996             :                 "HRES_CO_E_NOT_SUPPORTED",
     997             :                 "The operation attempted is not supported."
     998             :         },
     999             :         {
    1000             :                 HRES_CO_E_RELOAD_DLL,
    1001             :                 "HRES_CO_E_RELOAD_DLL",
    1002             :                 "A DLL must be loaded."
    1003             :         },
    1004             :         {
    1005             :                 HRES_CO_E_MSI_ERROR,
    1006             :                 "HRES_CO_E_MSI_ERROR",
    1007             :                 "A Microsoft Software Installer error was encountered."
    1008             :         },
    1009             :         {
    1010             :                 HRES_CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT,
    1011             :                 "HRES_CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT",
    1012             :                 "The specified activation could not occur in the client context as specified."
    1013             :         },
    1014             :         {
    1015             :                 HRES_CO_E_SERVER_PAUSED,
    1016             :                 "HRES_CO_E_SERVER_PAUSED",
    1017             :                 "Activations on the server are paused."
    1018             :         },
    1019             :         {
    1020             :                 HRES_CO_E_SERVER_NOT_PAUSED,
    1021             :                 "HRES_CO_E_SERVER_NOT_PAUSED",
    1022             :                 "Activations on the server are not paused."
    1023             :         },
    1024             :         {
    1025             :                 HRES_CO_E_CLASS_DISABLED,
    1026             :                 "HRES_CO_E_CLASS_DISABLED",
    1027             :                 "The component or application containing the component has been disabled."
    1028             :         },
    1029             :         {
    1030             :                 HRES_CO_E_CLRNOTAVAILABLE,
    1031             :                 "HRES_CO_E_CLRNOTAVAILABLE",
    1032             :                 "The common language runtime is not available."
    1033             :         },
    1034             :         {
    1035             :                 HRES_CO_E_ASYNC_WORK_REJECTED,
    1036             :                 "HRES_CO_E_ASYNC_WORK_REJECTED",
    1037             :                 "The thread-pool rejected the submitted asynchronous work."
    1038             :         },
    1039             :         {
    1040             :                 HRES_CO_E_SERVER_INIT_TIMEOUT,
    1041             :                 "HRES_CO_E_SERVER_INIT_TIMEOUT",
    1042             :                 "The server started, but it did not finish initializing in a timely fashion."
    1043             :         },
    1044             :         {
    1045             :                 HRES_CO_E_NO_SECCTX_IN_ACTIVATE,
    1046             :                 "HRES_CO_E_NO_SECCTX_IN_ACTIVATE",
    1047             :                 "Unable to complete the call because there is no COM+ security context inside IObjectControl.Activate."
    1048             :         },
    1049             :         {
    1050             :                 HRES_CO_E_TRACKER_CONFIG,
    1051             :                 "HRES_CO_E_TRACKER_CONFIG",
    1052             :                 "The provided tracker configuration is invalid."
    1053             :         },
    1054             :         {
    1055             :                 HRES_CO_E_THREADPOOL_CONFIG,
    1056             :                 "HRES_CO_E_THREADPOOL_CONFIG",
    1057             :                 "The provided thread pool configuration is invalid."
    1058             :         },
    1059             :         {
    1060             :                 HRES_CO_E_SXS_CONFIG,
    1061             :                 "HRES_CO_E_SXS_CONFIG",
    1062             :                 "The provided side-by-side configuration is invalid."
    1063             :         },
    1064             :         {
    1065             :                 HRES_CO_E_MALFORMED_SPN,
    1066             :                 "HRES_CO_E_MALFORMED_SPN",
    1067             :                 "The server principal name (SPN) obtained during security negotiation is malformed."
    1068             :         },
    1069             :         {
    1070             :                 HRES_E_UNEXPECTED,
    1071             :                 "HRES_E_UNEXPECTED",
    1072             :                 "Catastrophic failure."
    1073             :         },
    1074             :         {
    1075             :                 HRES_RPC_E_CALL_REJECTED,
    1076             :                 "HRES_RPC_E_CALL_REJECTED",
    1077             :                 "Call was rejected by callee."
    1078             :         },
    1079             :         {
    1080             :                 HRES_RPC_E_CALL_CANCELED,
    1081             :                 "HRES_RPC_E_CALL_CANCELED",
    1082             :                 "Call was canceled by the message filter."
    1083             :         },
    1084             :         {
    1085             :                 HRES_RPC_E_CANTPOST_INSENDCALL,
    1086             :                 "HRES_RPC_E_CANTPOST_INSENDCALL",
    1087             :                 "The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage."
    1088             :         },
    1089             :         {
    1090             :                 HRES_RPC_E_CANTCALLOUT_INASYNCCALL,
    1091             :                 "HRES_RPC_E_CANTCALLOUT_INASYNCCALL",
    1092             :                 "The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call."
    1093             :         },
    1094             :         {
    1095             :                 HRES_RPC_E_CANTCALLOUT_INEXTERNALCALL,
    1096             :                 "HRES_RPC_E_CANTCALLOUT_INEXTERNALCALL",
    1097             :                 "It is illegal to call out while inside message filter."
    1098             :         },
    1099             :         {
    1100             :                 HRES_RPC_E_CONNECTION_TERMINATED,
    1101             :                 "HRES_RPC_E_CONNECTION_TERMINATED",
    1102             :                 "The connection terminated or is in a bogus state and can no longer be used. Other connections are still valid."
    1103             :         },
    1104             :         {
    1105             :                 HRES_RPC_E_SERVER_DIED,
    1106             :                 "HRES_RPC_E_SERVER_DIED",
    1107             :                 "The callee (the server, not the server application) is not available and disappeared; all connections are invalid. The call might have executed."
    1108             :         },
    1109             :         {
    1110             :                 HRES_RPC_E_CLIENT_DIED,
    1111             :                 "HRES_RPC_E_CLIENT_DIED",
    1112             :                 "The caller (client) disappeared while the callee (server) was processing a call."
    1113             :         },
    1114             :         {
    1115             :                 HRES_RPC_E_INVALID_DATAPACKET,
    1116             :                 "HRES_RPC_E_INVALID_DATAPACKET",
    1117             :                 "The data packet with the marshaled parameter data is incorrect."
    1118             :         },
    1119             :         {
    1120             :                 HRES_RPC_E_CANTTRANSMIT_CALL,
    1121             :                 "HRES_RPC_E_CANTTRANSMIT_CALL",
    1122             :                 "The call was not transmitted properly; the message queue was full and was not emptied after yielding."
    1123             :         },
    1124             :         {
    1125             :                 HRES_RPC_E_CLIENT_CANTMARSHAL_DATA,
    1126             :                 "HRES_RPC_E_CLIENT_CANTMARSHAL_DATA",
    1127             :                 "The client RPC caller cannot marshal the parameter data due to errors (such as low memory)."
    1128             :         },
    1129             :         {
    1130             :                 HRES_RPC_E_CLIENT_CANTUNMARSHAL_DATA,
    1131             :                 "HRES_RPC_E_CLIENT_CANTUNMARSHAL_DATA",
    1132             :                 "The client RPC caller cannot unmarshal the return data due to errors (such as low memory)."
    1133             :         },
    1134             :         {
    1135             :                 HRES_RPC_E_SERVER_CANTMARSHAL_DATA,
    1136             :                 "HRES_RPC_E_SERVER_CANTMARSHAL_DATA",
    1137             :                 "The server RPC callee cannot marshal the return data due to errors (such as low memory)."
    1138             :         },
    1139             :         {
    1140             :                 HRES_RPC_E_SERVER_CANTUNMARSHAL_DATA,
    1141             :                 "HRES_RPC_E_SERVER_CANTUNMARSHAL_DATA",
    1142             :                 "The server RPC callee cannot unmarshal the parameter data due to errors (such as low memory)."
    1143             :         },
    1144             :         {
    1145             :                 HRES_RPC_E_INVALID_DATA,
    1146             :                 "HRES_RPC_E_INVALID_DATA",
    1147             :                 "Received data is invalid. The data might be server or client data."
    1148             :         },
    1149             :         {
    1150             :                 HRES_RPC_E_INVALID_PARAMETER,
    1151             :                 "HRES_RPC_E_INVALID_PARAMETER",
    1152             :                 "A particular parameter is invalid and cannot be (un)marshaled."
    1153             :         },
    1154             :         {
    1155             :                 HRES_RPC_E_CANTCALLOUT_AGAIN,
    1156             :                 "HRES_RPC_E_CANTCALLOUT_AGAIN",
    1157             :                 "There is no second outgoing call on same channel in DDE conversation."
    1158             :         },
    1159             :         {
    1160             :                 HRES_RPC_E_SERVER_DIED_DNE,
    1161             :                 "HRES_RPC_E_SERVER_DIED_DNE",
    1162             :                 "The callee (the server, not the server application) is not available and disappeared; all connections are invalid. The call did not execute."
    1163             :         },
    1164             :         {
    1165             :                 HRES_RPC_E_SYS_CALL_FAILED,
    1166             :                 "HRES_RPC_E_SYS_CALL_FAILED",
    1167             :                 "System call failed."
    1168             :         },
    1169             :         {
    1170             :                 HRES_RPC_E_OUT_OF_RESOURCES,
    1171             :                 "HRES_RPC_E_OUT_OF_RESOURCES",
    1172             :                 "Could not allocate some required resource (such as memory or events)"
    1173             :         },
    1174             :         {
    1175             :                 HRES_RPC_E_ATTEMPTED_MULTITHREAD,
    1176             :                 "HRES_RPC_E_ATTEMPTED_MULTITHREAD",
    1177             :                 "Attempted to make calls on more than one thread in single-threaded mode."
    1178             :         },
    1179             :         {
    1180             :                 HRES_RPC_E_NOT_REGISTERED,
    1181             :                 "HRES_RPC_E_NOT_REGISTERED",
    1182             :                 "The requested interface is not registered on the server object."
    1183             :         },
    1184             :         {
    1185             :                 HRES_RPC_E_FAULT,
    1186             :                 "HRES_RPC_E_FAULT",
    1187             :                 "RPC could not call the server or could not return the results of calling the server."
    1188             :         },
    1189             :         {
    1190             :                 HRES_RPC_E_SERVERFAULT,
    1191             :                 "HRES_RPC_E_SERVERFAULT",
    1192             :                 "The server threw an exception."
    1193             :         },
    1194             :         {
    1195             :                 HRES_RPC_E_CHANGED_MODE,
    1196             :                 "HRES_RPC_E_CHANGED_MODE",
    1197             :                 "Cannot change thread mode after it is set."
    1198             :         },
    1199             :         {
    1200             :                 HRES_RPC_E_INVALIDMETHOD,
    1201             :                 "HRES_RPC_E_INVALIDMETHOD",
    1202             :                 "The method called does not exist on the server."
    1203             :         },
    1204             :         {
    1205             :                 HRES_RPC_E_DISCONNECTED,
    1206             :                 "HRES_RPC_E_DISCONNECTED",
    1207             :                 "The object invoked has disconnected from its clients."
    1208             :         },
    1209             :         {
    1210             :                 HRES_RPC_E_RETRY,
    1211             :                 "HRES_RPC_E_RETRY",
    1212             :                 "The object invoked chose not to process the call now. Try again later."
    1213             :         },
    1214             :         {
    1215             :                 HRES_RPC_E_SERVERCALL_RETRYLATER,
    1216             :                 "HRES_RPC_E_SERVERCALL_RETRYLATER",
    1217             :                 "The message filter indicated that the application is busy."
    1218             :         },
    1219             :         {
    1220             :                 HRES_RPC_E_SERVERCALL_REJECTED,
    1221             :                 "HRES_RPC_E_SERVERCALL_REJECTED",
    1222             :                 "The message filter rejected the call."
    1223             :         },
    1224             :         {
    1225             :                 HRES_RPC_E_INVALID_CALLDATA,
    1226             :                 "HRES_RPC_E_INVALID_CALLDATA",
    1227             :                 "A call control interface was called with invalid data."
    1228             :         },
    1229             :         {
    1230             :                 HRES_RPC_E_CANTCALLOUT_ININPUTSYNCCALL,
    1231             :                 "HRES_RPC_E_CANTCALLOUT_ININPUTSYNCCALL",
    1232             :                 "An outgoing call cannot be made because the application is dispatching an input-synchronous call."
    1233             :         },
    1234             :         {
    1235             :                 HRES_RPC_E_WRONG_THREAD,
    1236             :                 "HRES_RPC_E_WRONG_THREAD",
    1237             :                 "The application called an interface that was marshaled for a different thread."
    1238             :         },
    1239             :         {
    1240             :                 HRES_RPC_E_THREAD_NOT_INIT,
    1241             :                 "HRES_RPC_E_THREAD_NOT_INIT",
    1242             :                 "CoInitialize has not been called on the current thread."
    1243             :         },
    1244             :         {
    1245             :                 HRES_RPC_E_VERSION_MISMATCH,
    1246             :                 "HRES_RPC_E_VERSION_MISMATCH",
    1247             :                 "The version of OLE on the client and server machines does not match."
    1248             :         },
    1249             :         {
    1250             :                 HRES_RPC_E_INVALID_HEADER,
    1251             :                 "HRES_RPC_E_INVALID_HEADER",
    1252             :                 "OLE received a packet with an invalid header."
    1253             :         },
    1254             :         {
    1255             :                 HRES_RPC_E_INVALID_EXTENSION,
    1256             :                 "HRES_RPC_E_INVALID_EXTENSION",
    1257             :                 "OLE received a packet with an invalid extension."
    1258             :         },
    1259             :         {
    1260             :                 HRES_RPC_E_INVALID_IPID,
    1261             :                 "HRES_RPC_E_INVALID_IPID",
    1262             :                 "The requested object or interface does not exist."
    1263             :         },
    1264             :         {
    1265             :                 HRES_RPC_E_INVALID_OBJECT,
    1266             :                 "HRES_RPC_E_INVALID_OBJECT",
    1267             :                 "The requested object does not exist."
    1268             :         },
    1269             :         {
    1270             :                 HRES_RPC_S_CALLPENDING,
    1271             :                 "HRES_RPC_S_CALLPENDING",
    1272             :                 "OLE has sent a request and is waiting for a reply."
    1273             :         },
    1274             :         {
    1275             :                 HRES_RPC_S_WAITONTIMER,
    1276             :                 "HRES_RPC_S_WAITONTIMER",
    1277             :                 "OLE is waiting before retrying a request."
    1278             :         },
    1279             :         {
    1280             :                 HRES_RPC_E_CALL_COMPLETE,
    1281             :                 "HRES_RPC_E_CALL_COMPLETE",
    1282             :                 "Call context cannot be accessed after call completed."
    1283             :         },
    1284             :         {
    1285             :                 HRES_RPC_E_UNSECURE_CALL,
    1286             :                 "HRES_RPC_E_UNSECURE_CALL",
    1287             :                 "Impersonate on unsecure calls is not supported."
    1288             :         },
    1289             :         {
    1290             :                 HRES_RPC_E_TOO_LATE,
    1291             :                 "HRES_RPC_E_TOO_LATE",
    1292             :                 "Security must be initialized before any interfaces are marshaled or unmarshaled. It cannot be changed after initialized."
    1293             :         },
    1294             :         {
    1295             :                 HRES_RPC_E_NO_GOOD_SECURITY_PACKAGES,
    1296             :                 "HRES_RPC_E_NO_GOOD_SECURITY_PACKAGES",
    1297             :                 "No security packages are installed on this machine, the user is not logged on, or there are no compatible security packages between the client and server."
    1298             :         },
    1299             :         {
    1300             :                 HRES_RPC_E_ACCESS_DENIED,
    1301             :                 "HRES_RPC_E_ACCESS_DENIED",
    1302             :                 "Access is denied."
    1303             :         },
    1304             :         {
    1305             :                 HRES_RPC_E_REMOTE_DISABLED,
    1306             :                 "HRES_RPC_E_REMOTE_DISABLED",
    1307             :                 "Remote calls are not allowed for this process."
    1308             :         },
    1309             :         {
    1310             :                 HRES_RPC_E_INVALID_OBJREF,
    1311             :                 "HRES_RPC_E_INVALID_OBJREF",
    1312             :                 "The marshaled interface data packet (OBJREF) has an invalid or unknown format."
    1313             :         },
    1314             :         {
    1315             :                 HRES_RPC_E_NO_CONTEXT,
    1316             :                 "HRES_RPC_E_NO_CONTEXT",
    1317             :                 "No context is associated with this call. This happens for some custom marshaled calls and on the client side of the call."
    1318             :         },
    1319             :         {
    1320             :                 HRES_RPC_E_TIMEOUT,
    1321             :                 "HRES_RPC_E_TIMEOUT",
    1322             :                 "This operation returned because the time-out period expired."
    1323             :         },
    1324             :         {
    1325             :                 HRES_RPC_E_NO_SYNC,
    1326             :                 "HRES_RPC_E_NO_SYNC",
    1327             :                 "There are no synchronize objects to wait on."
    1328             :         },
    1329             :         {
    1330             :                 HRES_RPC_E_FULLSIC_REQUIRED,
    1331             :                 "HRES_RPC_E_FULLSIC_REQUIRED",
    1332             :                 "Full subject issuer chain Secure Sockets Layer (SSL) principal name expected from the server."
    1333             :         },
    1334             :         {
    1335             :                 HRES_RPC_E_INVALID_STD_NAME,
    1336             :                 "HRES_RPC_E_INVALID_STD_NAME",
    1337             :                 "Principal name is not a valid Microsoft standard (msstd) name."
    1338             :         },
    1339             :         {
    1340             :                 HRES_CO_E_FAILEDTOIMPERSONATE,
    1341             :                 "HRES_CO_E_FAILEDTOIMPERSONATE",
    1342             :                 "Unable to impersonate DCOM client."
    1343             :         },
    1344             :         {
    1345             :                 HRES_CO_E_FAILEDTOGETSECCTX,
    1346             :                 "HRES_CO_E_FAILEDTOGETSECCTX",
    1347             :                 "Unable to obtain server's security context."
    1348             :         },
    1349             :         {
    1350             :                 HRES_CO_E_FAILEDTOOPENTHREADTOKEN,
    1351             :                 "HRES_CO_E_FAILEDTOOPENTHREADTOKEN",
    1352             :                 "Unable to open the access token of the current thread."
    1353             :         },
    1354             :         {
    1355             :                 HRES_CO_E_FAILEDTOGETTOKENINFO,
    1356             :                 "HRES_CO_E_FAILEDTOGETTOKENINFO",
    1357             :                 "Unable to obtain user information from an access token."
    1358             :         },
    1359             :         {
    1360             :                 HRES_CO_E_TRUSTEEDOESNTMATCHCLIENT,
    1361             :                 "HRES_CO_E_TRUSTEEDOESNTMATCHCLIENT",
    1362             :                 "The client who called IAccessControl::IsAccessPermitted was not the trustee provided to the method."
    1363             :         },
    1364             :         {
    1365             :                 HRES_CO_E_FAILEDTOQUERYCLIENTBLANKET,
    1366             :                 "HRES_CO_E_FAILEDTOQUERYCLIENTBLANKET",
    1367             :                 "Unable to obtain the client's security blanket."
    1368             :         },
    1369             :         {
    1370             :                 HRES_CO_E_FAILEDTOSETDACL,
    1371             :                 "HRES_CO_E_FAILEDTOSETDACL",
    1372             :                 "Unable to set a discretionary access control list (ACL) into a security descriptor."
    1373             :         },
    1374             :         {
    1375             :                 HRES_CO_E_ACCESSCHECKFAILED,
    1376             :                 "HRES_CO_E_ACCESSCHECKFAILED",
    1377             :                 "The system function AccessCheck returned false."
    1378             :         },
    1379             :         {
    1380             :                 HRES_CO_E_NETACCESSAPIFAILED,
    1381             :                 "HRES_CO_E_NETACCESSAPIFAILED",
    1382             :                 "Either NetAccessDel or NetAccessAdd returned an error code."
    1383             :         },
    1384             :         {
    1385             :                 HRES_CO_E_WRONGTRUSTEENAMESYNTAX,
    1386             :                 "HRES_CO_E_WRONGTRUSTEENAMESYNTAX",
    1387             :                 "One of the trustee strings provided by the user did not conform to the <Domain>\\<Name> syntax and it was not the *\" string\"."
    1388             :         },
    1389             :         {
    1390             :                 HRES_CO_E_INVALIDSID,
    1391             :                 "HRES_CO_E_INVALIDSID",
    1392             :                 "One of the security identifiers provided by the user was invalid."
    1393             :         },
    1394             :         {
    1395             :                 HRES_CO_E_CONVERSIONFAILED,
    1396             :                 "HRES_CO_E_CONVERSIONFAILED",
    1397             :                 "Unable to convert a wide character trustee string to a multiple-byte trustee string."
    1398             :         },
    1399             :         {
    1400             :                 HRES_CO_E_NOMATCHINGSIDFOUND,
    1401             :                 "HRES_CO_E_NOMATCHINGSIDFOUND",
    1402             :                 "Unable to find a security identifier that corresponds to a trustee string provided by the user."
    1403             :         },
    1404             :         {
    1405             :                 HRES_CO_E_LOOKUPACCSIDFAILED,
    1406             :                 "HRES_CO_E_LOOKUPACCSIDFAILED",
    1407             :                 "The system function LookupAccountSID failed."
    1408             :         },
    1409             :         {
    1410             :                 HRES_CO_E_NOMATCHINGNAMEFOUND,
    1411             :                 "HRES_CO_E_NOMATCHINGNAMEFOUND",
    1412             :                 "Unable to find a trustee name that corresponds to a security identifier provided by the user."
    1413             :         },
    1414             :         {
    1415             :                 HRES_CO_E_LOOKUPACCNAMEFAILED,
    1416             :                 "HRES_CO_E_LOOKUPACCNAMEFAILED",
    1417             :                 "The system function LookupAccountName failed."
    1418             :         },
    1419             :         {
    1420             :                 HRES_CO_E_SETSERLHNDLFAILED,
    1421             :                 "HRES_CO_E_SETSERLHNDLFAILED",
    1422             :                 "Unable to set or reset a serialization handle."
    1423             :         },
    1424             :         {
    1425             :                 HRES_CO_E_FAILEDTOGETWINDIR,
    1426             :                 "HRES_CO_E_FAILEDTOGETWINDIR",
    1427             :                 "Unable to obtain the Windows directory."
    1428             :         },
    1429             :         {
    1430             :                 HRES_CO_E_PATHTOOLONG,
    1431             :                 "HRES_CO_E_PATHTOOLONG",
    1432             :                 "Path too long."
    1433             :         },
    1434             :         {
    1435             :                 HRES_CO_E_FAILEDTOGENUUID,
    1436             :                 "HRES_CO_E_FAILEDTOGENUUID",
    1437             :                 "Unable to generate a UUID."
    1438             :         },
    1439             :         {
    1440             :                 HRES_CO_E_FAILEDTOCREATEFILE,
    1441             :                 "HRES_CO_E_FAILEDTOCREATEFILE",
    1442             :                 "Unable to create file."
    1443             :         },
    1444             :         {
    1445             :                 HRES_CO_E_FAILEDTOCLOSEHANDLE,
    1446             :                 "HRES_CO_E_FAILEDTOCLOSEHANDLE",
    1447             :                 "Unable to close a serialization handle or a file handle."
    1448             :         },
    1449             :         {
    1450             :                 HRES_CO_E_EXCEEDSYSACLLIMIT,
    1451             :                 "HRES_CO_E_EXCEEDSYSACLLIMIT",
    1452             :                 "The number of access control entries (ACEs) in an ACL exceeds the system limit."
    1453             :         },
    1454             :         {
    1455             :                 HRES_CO_E_ACESINWRONGORDER,
    1456             :                 "HRES_CO_E_ACESINWRONGORDER",
    1457             :                 "Not all the DENY_ACCESS ACEs are arranged in front of the GRANT_ACCESS ACEs in the stream."
    1458             :         },
    1459             :         {
    1460             :                 HRES_CO_E_INCOMPATIBLESTREAMVERSION,
    1461             :                 "HRES_CO_E_INCOMPATIBLESTREAMVERSION",
    1462             :                 "The version of ACL format in the stream is not supported by this implementation of IAccessControl."
    1463             :         },
    1464             :         {
    1465             :                 HRES_CO_E_FAILEDTOOPENPROCESSTOKEN,
    1466             :                 "HRES_CO_E_FAILEDTOOPENPROCESSTOKEN",
    1467             :                 "Unable to open the access token of the server process."
    1468             :         },
    1469             :         {
    1470             :                 HRES_CO_E_DECODEFAILED,
    1471             :                 "HRES_CO_E_DECODEFAILED",
    1472             :                 "Unable to decode the ACL in the stream provided by the user."
    1473             :         },
    1474             :         {
    1475             :                 HRES_CO_E_ACNOTINITIALIZED,
    1476             :                 "HRES_CO_E_ACNOTINITIALIZED",
    1477             :                 "The COM IAccessControl object is not initialized."
    1478             :         },
    1479             :         {
    1480             :                 HRES_CO_E_CANCEL_DISABLED,
    1481             :                 "HRES_CO_E_CANCEL_DISABLED",
    1482             :                 "Call Cancellation is disabled."
    1483             :         },
    1484             :         {
    1485             :                 HRES_RPC_E_UNEXPECTED,
    1486             :                 "HRES_RPC_E_UNEXPECTED",
    1487             :                 "An internal error occurred."
    1488             :         },
    1489             :         {
    1490             :                 HRES_DISP_E_UNKNOWNINTERFACE,
    1491             :                 "HRES_DISP_E_UNKNOWNINTERFACE",
    1492             :                 "Unknown interface."
    1493             :         },
    1494             :         {
    1495             :                 HRES_DISP_E_MEMBERNOTFOUND,
    1496             :                 "HRES_DISP_E_MEMBERNOTFOUND",
    1497             :                 "Member not found."
    1498             :         },
    1499             :         {
    1500             :                 HRES_DISP_E_PARAMNOTFOUND,
    1501             :                 "HRES_DISP_E_PARAMNOTFOUND",
    1502             :                 "Parameter not found."
    1503             :         },
    1504             :         {
    1505             :                 HRES_DISP_E_TYPEMISMATCH,
    1506             :                 "HRES_DISP_E_TYPEMISMATCH",
    1507             :                 "Type mismatch."
    1508             :         },
    1509             :         {
    1510             :                 HRES_DISP_E_UNKNOWNNAME,
    1511             :                 "HRES_DISP_E_UNKNOWNNAME",
    1512             :                 "Unknown name."
    1513             :         },
    1514             :         {
    1515             :                 HRES_DISP_E_NONAMEDARGS,
    1516             :                 "HRES_DISP_E_NONAMEDARGS",
    1517             :                 "No named arguments."
    1518             :         },
    1519             :         {
    1520             :                 HRES_DISP_E_BADVARTYPE,
    1521             :                 "HRES_DISP_E_BADVARTYPE",
    1522             :                 "Bad variable type."
    1523             :         },
    1524             :         {
    1525             :                 HRES_DISP_E_EXCEPTION,
    1526             :                 "HRES_DISP_E_EXCEPTION",
    1527             :                 "Exception occurred."
    1528             :         },
    1529             :         {
    1530             :                 HRES_DISP_E_OVERFLOW,
    1531             :                 "HRES_DISP_E_OVERFLOW",
    1532             :                 "Out of present range."
    1533             :         },
    1534             :         {
    1535             :                 HRES_DISP_E_BADINDEX,
    1536             :                 "HRES_DISP_E_BADINDEX",
    1537             :                 "Invalid index."
    1538             :         },
    1539             :         {
    1540             :                 HRES_DISP_E_UNKNOWNLCID,
    1541             :                 "HRES_DISP_E_UNKNOWNLCID",
    1542             :                 "Unknown language."
    1543             :         },
    1544             :         {
    1545             :                 HRES_DISP_E_ARRAYISLOCKED,
    1546             :                 "HRES_DISP_E_ARRAYISLOCKED",
    1547             :                 "Memory is locked."
    1548             :         },
    1549             :         {
    1550             :                 HRES_DISP_E_BADPARAMCOUNT,
    1551             :                 "HRES_DISP_E_BADPARAMCOUNT",
    1552             :                 "Invalid number of parameters."
    1553             :         },
    1554             :         {
    1555             :                 HRES_DISP_E_PARAMNOTOPTIONAL,
    1556             :                 "HRES_DISP_E_PARAMNOTOPTIONAL",
    1557             :                 "Parameter not optional."
    1558             :         },
    1559             :         {
    1560             :                 HRES_DISP_E_BADCALLEE,
    1561             :                 "HRES_DISP_E_BADCALLEE",
    1562             :                 "Invalid callee."
    1563             :         },
    1564             :         {
    1565             :                 HRES_DISP_E_NOTACOLLECTION,
    1566             :                 "HRES_DISP_E_NOTACOLLECTION",
    1567             :                 "Does not support a collection."
    1568             :         },
    1569             :         {
    1570             :                 HRES_DISP_E_DIVBYZERO,
    1571             :                 "HRES_DISP_E_DIVBYZERO",
    1572             :                 "Division by zero."
    1573             :         },
    1574             :         {
    1575             :                 HRES_DISP_E_BUFFERTOOSMALL,
    1576             :                 "HRES_DISP_E_BUFFERTOOSMALL",
    1577             :                 "Buffer too small."
    1578             :         },
    1579             :         {
    1580             :                 HRES_TYPE_E_BUFFERTOOSMALL,
    1581             :                 "HRES_TYPE_E_BUFFERTOOSMALL",
    1582             :                 "Buffer too small."
    1583             :         },
    1584             :         {
    1585             :                 HRES_TYPE_E_FIELDNOTFOUND,
    1586             :                 "HRES_TYPE_E_FIELDNOTFOUND",
    1587             :                 "Field name not defined in the record."
    1588             :         },
    1589             :         {
    1590             :                 HRES_TYPE_E_INVDATAREAD,
    1591             :                 "HRES_TYPE_E_INVDATAREAD",
    1592             :                 "Old format or invalid type library."
    1593             :         },
    1594             :         {
    1595             :                 HRES_TYPE_E_UNSUPFORMAT,
    1596             :                 "HRES_TYPE_E_UNSUPFORMAT",
    1597             :                 "Old format or invalid type library."
    1598             :         },
    1599             :         {
    1600             :                 HRES_TYPE_E_REGISTRYACCESS,
    1601             :                 "HRES_TYPE_E_REGISTRYACCESS",
    1602             :                 "Error accessing the OLE registry."
    1603             :         },
    1604             :         {
    1605             :                 HRES_TYPE_E_LIBNOTREGISTERED,
    1606             :                 "HRES_TYPE_E_LIBNOTREGISTERED",
    1607             :                 "Library not registered."
    1608             :         },
    1609             :         {
    1610             :                 HRES_TYPE_E_UNDEFINEDTYPE,
    1611             :                 "HRES_TYPE_E_UNDEFINEDTYPE",
    1612             :                 "Bound to unknown type."
    1613             :         },
    1614             :         {
    1615             :                 HRES_TYPE_E_QUALIFIEDNAMEDISALLOWED,
    1616             :                 "HRES_TYPE_E_QUALIFIEDNAMEDISALLOWED",
    1617             :                 "Qualified name disallowed."
    1618             :         },
    1619             :         {
    1620             :                 HRES_TYPE_E_INVALIDSTATE,
    1621             :                 "HRES_TYPE_E_INVALIDSTATE",
    1622             :                 "Invalid forward reference, or reference to uncompiled type."
    1623             :         },
    1624             :         {
    1625             :                 HRES_TYPE_E_WRONGTYPEKIND,
    1626             :                 "HRES_TYPE_E_WRONGTYPEKIND",
    1627             :                 "Type mismatch."
    1628             :         },
    1629             :         {
    1630             :                 HRES_TYPE_E_ELEMENTNOTFOUND,
    1631             :                 "HRES_TYPE_E_ELEMENTNOTFOUND",
    1632             :                 "Element not found."
    1633             :         },
    1634             :         {
    1635             :                 HRES_TYPE_E_AMBIGUOUSNAME,
    1636             :                 "HRES_TYPE_E_AMBIGUOUSNAME",
    1637             :                 "Ambiguous name."
    1638             :         },
    1639             :         {
    1640             :                 HRES_TYPE_E_NAMECONFLICT,
    1641             :                 "HRES_TYPE_E_NAMECONFLICT",
    1642             :                 "Name already exists in the library."
    1643             :         },
    1644             :         {
    1645             :                 HRES_TYPE_E_UNKNOWNLCID,
    1646             :                 "HRES_TYPE_E_UNKNOWNLCID",
    1647             :                 "Unknown language code identifier (LCID)."
    1648             :         },
    1649             :         {
    1650             :                 HRES_TYPE_E_DLLFUNCTIONNOTFOUND,
    1651             :                 "HRES_TYPE_E_DLLFUNCTIONNOTFOUND",
    1652             :                 "Function not defined in specified DLL."
    1653             :         },
    1654             :         {
    1655             :                 HRES_TYPE_E_BADMODULEKIND,
    1656             :                 "HRES_TYPE_E_BADMODULEKIND",
    1657             :                 "Wrong module kind for the operation."
    1658             :         },
    1659             :         {
    1660             :                 HRES_TYPE_E_SIZETOOBIG,
    1661             :                 "HRES_TYPE_E_SIZETOOBIG",
    1662             :                 "Size cannot exceed 64 KB."
    1663             :         },
    1664             :         {
    1665             :                 HRES_TYPE_E_DUPLICATEID,
    1666             :                 "HRES_TYPE_E_DUPLICATEID",
    1667             :                 "Duplicate ID in inheritance hierarchy."
    1668             :         },
    1669             :         {
    1670             :                 HRES_TYPE_E_INVALIDID,
    1671             :                 "HRES_TYPE_E_INVALIDID",
    1672             :                 "Incorrect inheritance depth in standard OLE hmember."
    1673             :         },
    1674             :         {
    1675             :                 HRES_TYPE_E_TYPEMISMATCH,
    1676             :                 "HRES_TYPE_E_TYPEMISMATCH",
    1677             :                 "Type mismatch."
    1678             :         },
    1679             :         {
    1680             :                 HRES_TYPE_E_OUTOFBOUNDS,
    1681             :                 "HRES_TYPE_E_OUTOFBOUNDS",
    1682             :                 "Invalid number of arguments."
    1683             :         },
    1684             :         {
    1685             :                 HRES_TYPE_E_IOERROR,
    1686             :                 "HRES_TYPE_E_IOERROR",
    1687             :                 "I/O error."
    1688             :         },
    1689             :         {
    1690             :                 HRES_TYPE_E_CANTCREATETMPFILE,
    1691             :                 "HRES_TYPE_E_CANTCREATETMPFILE",
    1692             :                 "Error creating unique .tmp file."
    1693             :         },
    1694             :         {
    1695             :                 HRES_TYPE_E_CANTLOADLIBRARY,
    1696             :                 "HRES_TYPE_E_CANTLOADLIBRARY",
    1697             :                 "Error loading type library or DLL."
    1698             :         },
    1699             :         {
    1700             :                 HRES_TYPE_E_INCONSISTENTPROPFUNCS,
    1701             :                 "HRES_TYPE_E_INCONSISTENTPROPFUNCS",
    1702             :                 "Inconsistent property functions."
    1703             :         },
    1704             :         {
    1705             :                 HRES_TYPE_E_CIRCULARTYPE,
    1706             :                 "HRES_TYPE_E_CIRCULARTYPE",
    1707             :                 "Circular dependency between types and modules."
    1708             :         },
    1709             :         {
    1710             :                 HRES_STG_E_INVALIDFUNCTION,
    1711             :                 "HRES_STG_E_INVALIDFUNCTION",
    1712             :                 "Unable to perform requested operation."
    1713             :         },
    1714             :         {
    1715             :                 HRES_STG_E_FILENOTFOUND,
    1716             :                 "HRES_STG_E_FILENOTFOUND",
    1717             :                 "%1 could not be found."
    1718             :         },
    1719             :         {
    1720             :                 HRES_STG_E_PATHNOTFOUND,
    1721             :                 "HRES_STG_E_PATHNOTFOUND",
    1722             :                 "The path %1 could not be found."
    1723             :         },
    1724             :         {
    1725             :                 HRES_STG_E_TOOMANYOPENFILES,
    1726             :                 "HRES_STG_E_TOOMANYOPENFILES",
    1727             :                 "There are insufficient resources to open another file."
    1728             :         },
    1729             :         {
    1730             :                 HRES_STG_E_ACCESSDENIED,
    1731             :                 "HRES_STG_E_ACCESSDENIED",
    1732             :                 "Access denied."
    1733             :         },
    1734             :         {
    1735             :                 HRES_STG_E_INVALIDHANDLE,
    1736             :                 "HRES_STG_E_INVALIDHANDLE",
    1737             :                 "Attempted an operation on an invalid object."
    1738             :         },
    1739             :         {
    1740             :                 HRES_STG_E_INSUFFICIENTMEMORY,
    1741             :                 "HRES_STG_E_INSUFFICIENTMEMORY",
    1742             :                 "There is insufficient memory available to complete operation."
    1743             :         },
    1744             :         {
    1745             :                 HRES_STG_E_INVALIDPOINTER,
    1746             :                 "HRES_STG_E_INVALIDPOINTER",
    1747             :                 "Invalid pointer error."
    1748             :         },
    1749             :         {
    1750             :                 HRES_STG_E_NOMOREFILES,
    1751             :                 "HRES_STG_E_NOMOREFILES",
    1752             :                 "There are no more entries to return."
    1753             :         },
    1754             :         {
    1755             :                 HRES_STG_E_DISKISWRITEPROTECTED,
    1756             :                 "HRES_STG_E_DISKISWRITEPROTECTED",
    1757             :                 "Disk is write-protected."
    1758             :         },
    1759             :         {
    1760             :                 HRES_STG_E_SEEKERROR,
    1761             :                 "HRES_STG_E_SEEKERROR",
    1762             :                 "An error occurred during a seek operation."
    1763             :         },
    1764             :         {
    1765             :                 HRES_STG_E_WRITEFAULT,
    1766             :                 "HRES_STG_E_WRITEFAULT",
    1767             :                 "A disk error occurred during a write operation."
    1768             :         },
    1769             :         {
    1770             :                 HRES_STG_E_READFAULT,
    1771             :                 "HRES_STG_E_READFAULT",
    1772             :                 "A disk error occurred during a read operation."
    1773             :         },
    1774             :         {
    1775             :                 HRES_STG_E_SHAREVIOLATION,
    1776             :                 "HRES_STG_E_SHAREVIOLATION",
    1777             :                 "A share violation has occurred."
    1778             :         },
    1779             :         {
    1780             :                 HRES_STG_E_LOCKVIOLATION,
    1781             :                 "HRES_STG_E_LOCKVIOLATION",
    1782             :                 "A lock violation has occurred."
    1783             :         },
    1784             :         {
    1785             :                 HRES_STG_E_FILEALREADYEXISTS,
    1786             :                 "HRES_STG_E_FILEALREADYEXISTS",
    1787             :                 "%1 already exists."
    1788             :         },
    1789             :         {
    1790             :                 HRES_STG_E_INVALIDPARAMETER,
    1791             :                 "HRES_STG_E_INVALIDPARAMETER",
    1792             :                 "Invalid parameter error."
    1793             :         },
    1794             :         {
    1795             :                 HRES_STG_E_MEDIUMFULL,
    1796             :                 "HRES_STG_E_MEDIUMFULL",
    1797             :                 "There is insufficient disk space to complete operation."
    1798             :         },
    1799             :         {
    1800             :                 HRES_STG_E_PROPSETMISMATCHED,
    1801             :                 "HRES_STG_E_PROPSETMISMATCHED",
    1802             :                 "Illegal write of non-simple property to simple property set."
    1803             :         },
    1804             :         {
    1805             :                 HRES_STG_E_ABNORMALAPIEXIT,
    1806             :                 "HRES_STG_E_ABNORMALAPIEXIT",
    1807             :                 "An application programming interface (API) call exited abnormally."
    1808             :         },
    1809             :         {
    1810             :                 HRES_STG_E_INVALIDHEADER,
    1811             :                 "HRES_STG_E_INVALIDHEADER",
    1812             :                 "The file %1 is not a valid compound file."
    1813             :         },
    1814             :         {
    1815             :                 HRES_STG_E_INVALIDNAME,
    1816             :                 "HRES_STG_E_INVALIDNAME",
    1817             :                 "The name %1 is not valid."
    1818             :         },
    1819             :         {
    1820             :                 HRES_STG_E_UNKNOWN,
    1821             :                 "HRES_STG_E_UNKNOWN",
    1822             :                 "An unexpected error occurred."
    1823             :         },
    1824             :         {
    1825             :                 HRES_STG_E_UNIMPLEMENTEDFUNCTION,
    1826             :                 "HRES_STG_E_UNIMPLEMENTEDFUNCTION",
    1827             :                 "That function is not implemented."
    1828             :         },
    1829             :         {
    1830             :                 HRES_STG_E_INVALIDFLAG,
    1831             :                 "HRES_STG_E_INVALIDFLAG",
    1832             :                 "Invalid flag error."
    1833             :         },
    1834             :         {
    1835             :                 HRES_STG_E_INUSE,
    1836             :                 "HRES_STG_E_INUSE",
    1837             :                 "Attempted to use an object that is busy."
    1838             :         },
    1839             :         {
    1840             :                 HRES_STG_E_NOTCURRENT,
    1841             :                 "HRES_STG_E_NOTCURRENT",
    1842             :                 "The storage has been changed since the last commit."
    1843             :         },
    1844             :         {
    1845             :                 HRES_STG_E_REVERTED,
    1846             :                 "HRES_STG_E_REVERTED",
    1847             :                 "Attempted to use an object that has ceased to exist."
    1848             :         },
    1849             :         {
    1850             :                 HRES_STG_E_CANTSAVE,
    1851             :                 "HRES_STG_E_CANTSAVE",
    1852             :                 "Cannot save."
    1853             :         },
    1854             :         {
    1855             :                 HRES_STG_E_OLDFORMAT,
    1856             :                 "HRES_STG_E_OLDFORMAT",
    1857             :                 "The compound file %1 was produced with an incompatible version of storage."
    1858             :         },
    1859             :         {
    1860             :                 HRES_STG_E_OLDDLL,
    1861             :                 "HRES_STG_E_OLDDLL",
    1862             :                 "The compound file %1 was produced with a newer version of storage."
    1863             :         },
    1864             :         {
    1865             :                 HRES_STG_E_SHAREREQUIRED,
    1866             :                 "HRES_STG_E_SHAREREQUIRED",
    1867             :                 "Share.exe or equivalent is required for operation."
    1868             :         },
    1869             :         {
    1870             :                 HRES_STG_E_NOTFILEBASEDSTORAGE,
    1871             :                 "HRES_STG_E_NOTFILEBASEDSTORAGE",
    1872             :                 "Illegal operation called on non-file based storage."
    1873             :         },
    1874             :         {
    1875             :                 HRES_STG_E_EXTANTMARSHALLINGS,
    1876             :                 "HRES_STG_E_EXTANTMARSHALLINGS",
    1877             :                 "Illegal operation called on object with extant marshalings."
    1878             :         },
    1879             :         {
    1880             :                 HRES_STG_E_DOCFILECORRUPT,
    1881             :                 "HRES_STG_E_DOCFILECORRUPT",
    1882             :                 "The docfile has been corrupted."
    1883             :         },
    1884             :         {
    1885             :                 HRES_STG_E_BADBASEADDRESS,
    1886             :                 "HRES_STG_E_BADBASEADDRESS",
    1887             :                 "OLE32.DLL has been loaded at the wrong address."
    1888             :         },
    1889             :         {
    1890             :                 HRES_STG_E_DOCFILETOOLARGE,
    1891             :                 "HRES_STG_E_DOCFILETOOLARGE",
    1892             :                 "The compound file is too large for the current implementation."
    1893             :         },
    1894             :         {
    1895             :                 HRES_STG_E_NOTSIMPLEFORMAT,
    1896             :                 "HRES_STG_E_NOTSIMPLEFORMAT",
    1897             :                 "The compound file was not created with the STGM_SIMPLE flag."
    1898             :         },
    1899             :         {
    1900             :                 HRES_STG_E_INCOMPLETE,
    1901             :                 "HRES_STG_E_INCOMPLETE",
    1902             :                 "The file download was aborted abnormally. The file is incomplete."
    1903             :         },
    1904             :         {
    1905             :                 HRES_STG_E_TERMINATED,
    1906             :                 "HRES_STG_E_TERMINATED",
    1907             :                 "The file download has been terminated."
    1908             :         },
    1909             :         {
    1910             :                 HRES_STG_E_STATUS_COPY_PROTECTION_FAILURE,
    1911             :                 "HRES_STG_E_STATUS_COPY_PROTECTION_FAILURE",
    1912             :                 "Generic Copy Protection Error."
    1913             :         },
    1914             :         {
    1915             :                 HRES_STG_E_CSS_AUTHENTICATION_FAILURE,
    1916             :                 "HRES_STG_E_CSS_AUTHENTICATION_FAILURE",
    1917             :                 "Copy Protection Error—DVD CSS Authentication failed."
    1918             :         },
    1919             :         {
    1920             :                 HRES_STG_E_CSS_KEY_NOT_PRESENT,
    1921             :                 "HRES_STG_E_CSS_KEY_NOT_PRESENT",
    1922             :                 "Copy Protection Error—The given sector does not have a valid CSS key."
    1923             :         },
    1924             :         {
    1925             :                 HRES_STG_E_CSS_KEY_NOT_ESTABLISHED,
    1926             :                 "HRES_STG_E_CSS_KEY_NOT_ESTABLISHED",
    1927             :                 "Copy Protection Error—DVD session key not established."
    1928             :         },
    1929             :         {
    1930             :                 HRES_STG_E_CSS_SCRAMBLED_SECTOR,
    1931             :                 "HRES_STG_E_CSS_SCRAMBLED_SECTOR",
    1932             :                 "Copy Protection Error—The read failed because the sector is encrypted."
    1933             :         },
    1934             :         {
    1935             :                 HRES_STG_E_CSS_REGION_MISMATCH,
    1936             :                 "HRES_STG_E_CSS_REGION_MISMATCH",
    1937             :                 "Copy Protection Error—The current DVD's region does not correspond to the region setting of the drive."
    1938             :         },
    1939             :         {
    1940             :                 HRES_STG_E_RESETS_EXHAUSTED,
    1941             :                 "HRES_STG_E_RESETS_EXHAUSTED",
    1942             :                 "Copy Protection Error—The drive's region setting might be permanent or the number of user resets has been exhausted."
    1943             :         },
    1944             :         {
    1945             :                 HRES_OLE_E_OLEVERB,
    1946             :                 "HRES_OLE_E_OLEVERB",
    1947             :                 "Invalid OLEVERB structure."
    1948             :         },
    1949             :         {
    1950             :                 HRES_OLE_E_ADVF,
    1951             :                 "HRES_OLE_E_ADVF",
    1952             :                 "Invalid advise flags."
    1953             :         },
    1954             :         {
    1955             :                 HRES_OLE_E_ENUM_NOMORE,
    1956             :                 "HRES_OLE_E_ENUM_NOMORE",
    1957             :                 "Cannot enumerate any more because the associated data is missing."
    1958             :         },
    1959             :         {
    1960             :                 HRES_OLE_E_ADVISENOTSUPPORTED,
    1961             :                 "HRES_OLE_E_ADVISENOTSUPPORTED",
    1962             :                 "This implementation does not take advises."
    1963             :         },
    1964             :         {
    1965             :                 HRES_OLE_E_NOCONNECTION,
    1966             :                 "HRES_OLE_E_NOCONNECTION",
    1967             :                 "There is no connection for this connection ID."
    1968             :         },
    1969             :         {
    1970             :                 HRES_OLE_E_NOTRUNNING,
    1971             :                 "HRES_OLE_E_NOTRUNNING",
    1972             :                 "Need to run the object to perform this operation."
    1973             :         },
    1974             :         {
    1975             :                 HRES_OLE_E_NOCACHE,
    1976             :                 "HRES_OLE_E_NOCACHE",
    1977             :                 "There is no cache to operate on."
    1978             :         },
    1979             :         {
    1980             :                 HRES_OLE_E_BLANK,
    1981             :                 "HRES_OLE_E_BLANK",
    1982             :                 "Uninitialized object."
    1983             :         },
    1984             :         {
    1985             :                 HRES_OLE_E_CLASSDIFF,
    1986             :                 "HRES_OLE_E_CLASSDIFF",
    1987             :                 "Linked object's source class has changed."
    1988             :         },
    1989             :         {
    1990             :                 HRES_OLE_E_CANT_GETMONIKER,
    1991             :                 "HRES_OLE_E_CANT_GETMONIKER",
    1992             :                 "Not able to get the moniker of the object."
    1993             :         },
    1994             :         {
    1995             :                 HRES_OLE_E_CANT_BINDTOSOURCE,
    1996             :                 "HRES_OLE_E_CANT_BINDTOSOURCE",
    1997             :                 "Not able to bind to the source."
    1998             :         },
    1999             :         {
    2000             :                 HRES_OLE_E_STATIC,
    2001             :                 "HRES_OLE_E_STATIC",
    2002             :                 "Object is static; operation not allowed."
    2003             :         },
    2004             :         {
    2005             :                 HRES_OLE_E_PROMPTSAVECANCELLED,
    2006             :                 "HRES_OLE_E_PROMPTSAVECANCELLED",
    2007             :                 "User canceled out of the Save dialog box."
    2008             :         },
    2009             :         {
    2010             :                 HRES_OLE_E_INVALIDRECT,
    2011             :                 "HRES_OLE_E_INVALIDRECT",
    2012             :                 "Invalid rectangle."
    2013             :         },
    2014             :         {
    2015             :                 HRES_OLE_E_WRONGCOMPOBJ,
    2016             :                 "HRES_OLE_E_WRONGCOMPOBJ",
    2017             :                 "compobj.dll is too old for the ole2.dll initialized."
    2018             :         },
    2019             :         {
    2020             :                 HRES_OLE_E_INVALIDHWND,
    2021             :                 "HRES_OLE_E_INVALIDHWND",
    2022             :                 "Invalid window handle."
    2023             :         },
    2024             :         {
    2025             :                 HRES_OLE_E_NOT_INPLACEACTIVE,
    2026             :                 "HRES_OLE_E_NOT_INPLACEACTIVE",
    2027             :                 "Object is not in any of the inplace active states."
    2028             :         },
    2029             :         {
    2030             :                 HRES_OLE_E_CANTCONVERT,
    2031             :                 "HRES_OLE_E_CANTCONVERT",
    2032             :                 "Not able to convert object."
    2033             :         },
    2034             :         {
    2035             :                 HRES_OLE_E_NOSTORAGE,
    2036             :                 "HRES_OLE_E_NOSTORAGE",
    2037             :                 "Not able to perform the operation because object is not given storage yet."
    2038             :         },
    2039             :         {
    2040             :                 HRES_DV_E_FORMATETC,
    2041             :                 "HRES_DV_E_FORMATETC",
    2042             :                 "Invalid FORMATETC structure."
    2043             :         },
    2044             :         {
    2045             :                 HRES_DV_E_DVTARGETDEVICE,
    2046             :                 "HRES_DV_E_DVTARGETDEVICE",
    2047             :                 "Invalid DVTARGETDEVICE structure."
    2048             :         },
    2049             :         {
    2050             :                 HRES_DV_E_STGMEDIUM,
    2051             :                 "HRES_DV_E_STGMEDIUM",
    2052             :                 "Invalid STDGMEDIUM structure."
    2053             :         },
    2054             :         {
    2055             :                 HRES_DV_E_STATDATA,
    2056             :                 "HRES_DV_E_STATDATA",
    2057             :                 "Invalid STATDATA structure."
    2058             :         },
    2059             :         {
    2060             :                 HRES_DV_E_LINDEX,
    2061             :                 "HRES_DV_E_LINDEX",
    2062             :                 "Invalid lindex."
    2063             :         },
    2064             :         {
    2065             :                 HRES_DV_E_TYMED,
    2066             :                 "HRES_DV_E_TYMED",
    2067             :                 "Invalid TYMED structure."
    2068             :         },
    2069             :         {
    2070             :                 HRES_DV_E_CLIPFORMAT,
    2071             :                 "HRES_DV_E_CLIPFORMAT",
    2072             :                 "Invalid clipboard format."
    2073             :         },
    2074             :         {
    2075             :                 HRES_DV_E_DVASPECT,
    2076             :                 "HRES_DV_E_DVASPECT",
    2077             :                 "Invalid aspects."
    2078             :         },
    2079             :         {
    2080             :                 HRES_DV_E_DVTARGETDEVICE_SIZE,
    2081             :                 "HRES_DV_E_DVTARGETDEVICE_SIZE",
    2082             :                 "The tdSize parameter of the DVTARGETDEVICE structure is invalid."
    2083             :         },
    2084             :         {
    2085             :                 HRES_DV_E_NOIVIEWOBJECT,
    2086             :                 "HRES_DV_E_NOIVIEWOBJECT",
    2087             :                 "Object does not support IViewObject interface."
    2088             :         },
    2089             :         {
    2090             :                 HRES_DRAGDROP_E_NOTREGISTERED,
    2091             :                 "HRES_DRAGDROP_E_NOTREGISTERED",
    2092             :                 "Trying to revoke a drop target that has not been registered."
    2093             :         },
    2094             :         {
    2095             :                 HRES_DRAGDROP_E_ALREADYREGISTERED,
    2096             :                 "HRES_DRAGDROP_E_ALREADYREGISTERED",
    2097             :                 "This window has already been registered as a drop target."
    2098             :         },
    2099             :         {
    2100             :                 HRES_DRAGDROP_E_INVALIDHWND,
    2101             :                 "HRES_DRAGDROP_E_INVALIDHWND",
    2102             :                 "Invalid window handle."
    2103             :         },
    2104             :         {
    2105             :                 HRES_CLASS_E_NOAGGREGATION,
    2106             :                 "HRES_CLASS_E_NOAGGREGATION",
    2107             :                 "Class does not support aggregation (or class object is remote)."
    2108             :         },
    2109             :         {
    2110             :                 HRES_CLASS_E_CLASSNOTAVAILABLE,
    2111             :                 "HRES_CLASS_E_CLASSNOTAVAILABLE",
    2112             :                 "ClassFactory cannot supply requested class."
    2113             :         },
    2114             :         {
    2115             :                 HRES_CLASS_E_NOTLICENSED,
    2116             :                 "HRES_CLASS_E_NOTLICENSED",
    2117             :                 "Class is not licensed for use."
    2118             :         },
    2119             :         {
    2120             :                 HRES_VIEW_E_DRAW,
    2121             :                 "HRES_VIEW_E_DRAW",
    2122             :                 "Error drawing view."
    2123             :         },
    2124             :         {
    2125             :                 HRES_REGDB_E_READREGDB,
    2126             :                 "HRES_REGDB_E_READREGDB",
    2127             :                 "Could not read key from registry."
    2128             :         },
    2129             :         {
    2130             :                 HRES_REGDB_E_WRITEREGDB,
    2131             :                 "HRES_REGDB_E_WRITEREGDB",
    2132             :                 "Could not write key to registry."
    2133             :         },
    2134             :         {
    2135             :                 HRES_REGDB_E_KEYMISSING,
    2136             :                 "HRES_REGDB_E_KEYMISSING",
    2137             :                 "Could not find the key in the registry."
    2138             :         },
    2139             :         {
    2140             :                 HRES_REGDB_E_INVALIDVALUE,
    2141             :                 "HRES_REGDB_E_INVALIDVALUE",
    2142             :                 "Invalid value for registry."
    2143             :         },
    2144             :         {
    2145             :                 HRES_REGDB_E_CLASSNOTREG,
    2146             :                 "HRES_REGDB_E_CLASSNOTREG",
    2147             :                 "Class not registered."
    2148             :         },
    2149             :         {
    2150             :                 HRES_REGDB_E_IIDNOTREG,
    2151             :                 "HRES_REGDB_E_IIDNOTREG",
    2152             :                 "Interface not registered."
    2153             :         },
    2154             :         {
    2155             :                 HRES_REGDB_E_BADTHREADINGMODEL,
    2156             :                 "HRES_REGDB_E_BADTHREADINGMODEL",
    2157             :                 "Threading model entry is not valid."
    2158             :         },
    2159             :         {
    2160             :                 HRES_CAT_E_CATIDNOEXIST,
    2161             :                 "HRES_CAT_E_CATIDNOEXIST",
    2162             :                 "CATID does not exist."
    2163             :         },
    2164             :         {
    2165             :                 HRES_CAT_E_NODESCRIPTION,
    2166             :                 "HRES_CAT_E_NODESCRIPTION",
    2167             :                 "Description not found."
    2168             :         },
    2169             :         {
    2170             :                 HRES_CS_E_PACKAGE_NOTFOUND,
    2171             :                 "HRES_CS_E_PACKAGE_NOTFOUND",
    2172             :                 "No package in the software installation data in Active Directory meets this criteria."
    2173             :         },
    2174             :         {
    2175             :                 HRES_CS_E_NOT_DELETABLE,
    2176             :                 "HRES_CS_E_NOT_DELETABLE",
    2177             :                 "Deleting this will break the referential integrity of the software installation data in Active Directory."
    2178             :         },
    2179             :         {
    2180             :                 HRES_CS_E_CLASS_NOTFOUND,
    2181             :                 "HRES_CS_E_CLASS_NOTFOUND",
    2182             :                 "The CLSID was not found in the software installation data in Active Directory."
    2183             :         },
    2184             :         {
    2185             :                 HRES_CS_E_INVALID_VERSION,
    2186             :                 "HRES_CS_E_INVALID_VERSION",
    2187             :                 "The software installation data in Active Directory is corrupt."
    2188             :         },
    2189             :         {
    2190             :                 HRES_CS_E_NO_CLASSSTORE,
    2191             :                 "HRES_CS_E_NO_CLASSSTORE",
    2192             :                 "There is no software installation data in Active Directory."
    2193             :         },
    2194             :         {
    2195             :                 HRES_CS_E_OBJECT_NOTFOUND,
    2196             :                 "HRES_CS_E_OBJECT_NOTFOUND",
    2197             :                 "There is no software installation data object in Active Directory."
    2198             :         },
    2199             :         {
    2200             :                 HRES_CS_E_OBJECT_ALREADY_EXISTS,
    2201             :                 "HRES_CS_E_OBJECT_ALREADY_EXISTS",
    2202             :                 "The software installation data object in Active Directory already exists."
    2203             :         },
    2204             :         {
    2205             :                 HRES_CS_E_INVALID_PATH,
    2206             :                 "HRES_CS_E_INVALID_PATH",
    2207             :                 "The path to the software installation data in Active Directory is not correct."
    2208             :         },
    2209             :         {
    2210             :                 HRES_CS_E_NETWORK_ERROR,
    2211             :                 "HRES_CS_E_NETWORK_ERROR",
    2212             :                 "A network error interrupted the operation."
    2213             :         },
    2214             :         {
    2215             :                 HRES_CS_E_ADMIN_LIMIT_EXCEEDED,
    2216             :                 "HRES_CS_E_ADMIN_LIMIT_EXCEEDED",
    2217             :                 "The size of this object exceeds the maximum size set by the administrator."
    2218             :         },
    2219             :         {
    2220             :                 HRES_CS_E_SCHEMA_MISMATCH,
    2221             :                 "HRES_CS_E_SCHEMA_MISMATCH",
    2222             :                 "The schema for the software installation data in Active Directory does not match the required schema."
    2223             :         },
    2224             :         {
    2225             :                 HRES_CS_E_INTERNAL_ERROR,
    2226             :                 "HRES_CS_E_INTERNAL_ERROR",
    2227             :                 "An error occurred in the software installation data in Active Directory."
    2228             :         },
    2229             :         {
    2230             :                 HRES_CACHE_E_NOCACHE_UPDATED,
    2231             :                 "HRES_CACHE_E_NOCACHE_UPDATED",
    2232             :                 "Cache not updated."
    2233             :         },
    2234             :         {
    2235             :                 HRES_OLEOBJ_E_NOVERBS,
    2236             :                 "HRES_OLEOBJ_E_NOVERBS",
    2237             :                 "No verbs for OLE object."
    2238             :         },
    2239             :         {
    2240             :                 HRES_OLEOBJ_E_INVALIDVERB,
    2241             :                 "HRES_OLEOBJ_E_INVALIDVERB",
    2242             :                 "Invalid verb for OLE object."
    2243             :         },
    2244             :         {
    2245             :                 HRES_INPLACE_E_NOTUNDOABLE,
    2246             :                 "HRES_INPLACE_E_NOTUNDOABLE",
    2247             :                 "Undo is not available."
    2248             :         },
    2249             :         {
    2250             :                 HRES_INPLACE_E_NOTOOLSPACE,
    2251             :                 "HRES_INPLACE_E_NOTOOLSPACE",
    2252             :                 "Space for tools is not available."
    2253             :         },
    2254             :         {
    2255             :                 HRES_CONVERT10_E_OLESTREAM_GET,
    2256             :                 "HRES_CONVERT10_E_OLESTREAM_GET",
    2257             :                 "OLESTREAM Get method failed."
    2258             :         },
    2259             :         {
    2260             :                 HRES_CONVERT10_E_OLESTREAM_PUT,
    2261             :                 "HRES_CONVERT10_E_OLESTREAM_PUT",
    2262             :                 "OLESTREAM Put method failed."
    2263             :         },
    2264             :         {
    2265             :                 HRES_CONVERT10_E_OLESTREAM_FMT,
    2266             :                 "HRES_CONVERT10_E_OLESTREAM_FMT",
    2267             :                 "Contents of the OLESTREAM not in correct format."
    2268             :         },
    2269             :         {
    2270             :                 HRES_CONVERT10_E_OLESTREAM_BITMAP_TO_DIB,
    2271             :                 "HRES_CONVERT10_E_OLESTREAM_BITMAP_TO_DIB",
    2272             :                 "There was an error in a Windows GDI call while converting the bitmap to a device-independent bitmap (DIB)."
    2273             :         },
    2274             :         {
    2275             :                 HRES_CONVERT10_E_STG_FMT,
    2276             :                 "HRES_CONVERT10_E_STG_FMT",
    2277             :                 "Contents of the IStorage not in correct format."
    2278             :         },
    2279             :         {
    2280             :                 HRES_CONVERT10_E_STG_NO_STD_STREAM,
    2281             :                 "HRES_CONVERT10_E_STG_NO_STD_STREAM",
    2282             :                 "Contents of IStorage is missing one of the standard streams."
    2283             :         },
    2284             :         {
    2285             :                 HRES_CONVERT10_E_STG_DIB_TO_BITMAP,
    2286             :                 "HRES_CONVERT10_E_STG_DIB_TO_BITMAP",
    2287             :                 "There was an error in a Windows Graphics Device Interface (GDI) call while converting the DIB to a bitmap."
    2288             :         },
    2289             :         {
    2290             :                 HRES_CLIPBRD_E_CANT_OPEN,
    2291             :                 "HRES_CLIPBRD_E_CANT_OPEN",
    2292             :                 "OpenClipboard failed."
    2293             :         },
    2294             :         {
    2295             :                 HRES_CLIPBRD_E_CANT_EMPTY,
    2296             :                 "HRES_CLIPBRD_E_CANT_EMPTY",
    2297             :                 "EmptyClipboard failed."
    2298             :         },
    2299             :         {
    2300             :                 HRES_CLIPBRD_E_CANT_SET,
    2301             :                 "HRES_CLIPBRD_E_CANT_SET",
    2302             :                 "SetClipboard failed."
    2303             :         },
    2304             :         {
    2305             :                 HRES_CLIPBRD_E_BAD_DATA,
    2306             :                 "HRES_CLIPBRD_E_BAD_DATA",
    2307             :                 "Data on clipboard is invalid."
    2308             :         },
    2309             :         {
    2310             :                 HRES_CLIPBRD_E_CANT_CLOSE,
    2311             :                 "HRES_CLIPBRD_E_CANT_CLOSE",
    2312             :                 "CloseClipboard failed."
    2313             :         },
    2314             :         {
    2315             :                 HRES_MK_E_CONNECTMANUALLY,
    2316             :                 "HRES_MK_E_CONNECTMANUALLY",
    2317             :                 "Moniker needs to be connected manually."
    2318             :         },
    2319             :         {
    2320             :                 HRES_MK_E_EXCEEDEDDEADLINE,
    2321             :                 "HRES_MK_E_EXCEEDEDDEADLINE",
    2322             :                 "Operation exceeded deadline."
    2323             :         },
    2324             :         {
    2325             :                 HRES_MK_E_NEEDGENERIC,
    2326             :                 "HRES_MK_E_NEEDGENERIC",
    2327             :                 "Moniker needs to be generic."
    2328             :         },
    2329             :         {
    2330             :                 HRES_MK_E_UNAVAILABLE,
    2331             :                 "HRES_MK_E_UNAVAILABLE",
    2332             :                 "Operation unavailable."
    2333             :         },
    2334             :         {
    2335             :                 HRES_MK_E_SYNTAX,
    2336             :                 "HRES_MK_E_SYNTAX",
    2337             :                 "Invalid syntax."
    2338             :         },
    2339             :         {
    2340             :                 HRES_MK_E_NOOBJECT,
    2341             :                 "HRES_MK_E_NOOBJECT",
    2342             :                 "No object for moniker."
    2343             :         },
    2344             :         {
    2345             :                 HRES_MK_E_INVALIDEXTENSION,
    2346             :                 "HRES_MK_E_INVALIDEXTENSION",
    2347             :                 "Bad extension for file."
    2348             :         },
    2349             :         {
    2350             :                 HRES_MK_E_INTERMEDIATEINTERFACENOTSUPPORTED,
    2351             :                 "HRES_MK_E_INTERMEDIATEINTERFACENOTSUPPORTED",
    2352             :                 "Intermediate operation failed."
    2353             :         },
    2354             :         {
    2355             :                 HRES_MK_E_NOTBINDABLE,
    2356             :                 "HRES_MK_E_NOTBINDABLE",
    2357             :                 "Moniker is not bindable."
    2358             :         },
    2359             :         {
    2360             :                 HRES_MK_E_NOTBOUND,
    2361             :                 "HRES_MK_E_NOTBOUND",
    2362             :                 "Moniker is not bound."
    2363             :         },
    2364             :         {
    2365             :                 HRES_MK_E_CANTOPENFILE,
    2366             :                 "HRES_MK_E_CANTOPENFILE",
    2367             :                 "Moniker cannot open file."
    2368             :         },
    2369             :         {
    2370             :                 HRES_MK_E_MUSTBOTHERUSER,
    2371             :                 "HRES_MK_E_MUSTBOTHERUSER",
    2372             :                 "User input required for operation to succeed."
    2373             :         },
    2374             :         {
    2375             :                 HRES_MK_E_NOINVERSE,
    2376             :                 "HRES_MK_E_NOINVERSE",
    2377             :                 "Moniker class has no inverse."
    2378             :         },
    2379             :         {
    2380             :                 HRES_MK_E_NOSTORAGE,
    2381             :                 "HRES_MK_E_NOSTORAGE",
    2382             :                 "Moniker does not refer to storage."
    2383             :         },
    2384             :         {
    2385             :                 HRES_MK_E_NOPREFIX,
    2386             :                 "HRES_MK_E_NOPREFIX",
    2387             :                 "No common prefix."
    2388             :         },
    2389             :         {
    2390             :                 HRES_MK_E_ENUMERATION_FAILED,
    2391             :                 "HRES_MK_E_ENUMERATION_FAILED",
    2392             :                 "Moniker could not be enumerated."
    2393             :         },
    2394             :         {
    2395             :                 HRES_CO_E_NOTINITIALIZED,
    2396             :                 "HRES_CO_E_NOTINITIALIZED",
    2397             :                 "CoInitialize has not been called."
    2398             :         },
    2399             :         {
    2400             :                 HRES_CO_E_ALREADYINITIALIZED,
    2401             :                 "HRES_CO_E_ALREADYINITIALIZED",
    2402             :                 "CoInitialize has already been called."
    2403             :         },
    2404             :         {
    2405             :                 HRES_CO_E_CANTDETERMINECLASS,
    2406             :                 "HRES_CO_E_CANTDETERMINECLASS",
    2407             :                 "Class of object cannot be determined."
    2408             :         },
    2409             :         {
    2410             :                 HRES_CO_E_CLASSSTRING,
    2411             :                 "HRES_CO_E_CLASSSTRING",
    2412             :                 "Invalid class string."
    2413             :         },
    2414             :         {
    2415             :                 HRES_CO_E_IIDSTRING,
    2416             :                 "HRES_CO_E_IIDSTRING",
    2417             :                 "Invalid interface string."
    2418             :         },
    2419             :         {
    2420             :                 HRES_CO_E_APPNOTFOUND,
    2421             :                 "HRES_CO_E_APPNOTFOUND",
    2422             :                 "Application not found."
    2423             :         },
    2424             :         {
    2425             :                 HRES_CO_E_APPSINGLEUSE,
    2426             :                 "HRES_CO_E_APPSINGLEUSE",
    2427             :                 "Application cannot be run more than once."
    2428             :         },
    2429             :         {
    2430             :                 HRES_CO_E_ERRORINAPP,
    2431             :                 "HRES_CO_E_ERRORINAPP",
    2432             :                 "Some error in application."
    2433             :         },
    2434             :         {
    2435             :                 HRES_CO_E_DLLNOTFOUND,
    2436             :                 "HRES_CO_E_DLLNOTFOUND",
    2437             :                 "DLL for class not found."
    2438             :         },
    2439             :         {
    2440             :                 HRES_CO_E_ERRORINDLL,
    2441             :                 "HRES_CO_E_ERRORINDLL",
    2442             :                 "Error in the DLL."
    2443             :         },
    2444             :         {
    2445             :                 HRES_CO_E_WRONGOSFORAPP,
    2446             :                 "HRES_CO_E_WRONGOSFORAPP",
    2447             :                 "Wrong operating system or operating system version for application."
    2448             :         },
    2449             :         {
    2450             :                 HRES_CO_E_OBJNOTREG,
    2451             :                 "HRES_CO_E_OBJNOTREG",
    2452             :                 "Object is not registered."
    2453             :         },
    2454             :         {
    2455             :                 HRES_CO_E_OBJISREG,
    2456             :                 "HRES_CO_E_OBJISREG",
    2457             :                 "Object is already registered."
    2458             :         },
    2459             :         {
    2460             :                 HRES_CO_E_OBJNOTCONNECTED,
    2461             :                 "HRES_CO_E_OBJNOTCONNECTED",
    2462             :                 "Object is not connected to server."
    2463             :         },
    2464             :         {
    2465             :                 HRES_CO_E_APPDIDNTREG,
    2466             :                 "HRES_CO_E_APPDIDNTREG",
    2467             :                 "Application was launched, but it did not register a class factory."
    2468             :         },
    2469             :         {
    2470             :                 HRES_CO_E_RELEASED,
    2471             :                 "HRES_CO_E_RELEASED",
    2472             :                 "Object has been released."
    2473             :         },
    2474             :         {
    2475             :                 HRES_EVENT_E_ALL_SUBSCRIBERS_FAILED,
    2476             :                 "HRES_EVENT_E_ALL_SUBSCRIBERS_FAILED",
    2477             :                 "An event was unable to invoke any of the subscribers."
    2478             :         },
    2479             :         {
    2480             :                 HRES_EVENT_E_QUERYSYNTAX,
    2481             :                 "HRES_EVENT_E_QUERYSYNTAX",
    2482             :                 "A syntax error occurred trying to evaluate a query string."
    2483             :         },
    2484             :         {
    2485             :                 HRES_EVENT_E_QUERYFIELD,
    2486             :                 "HRES_EVENT_E_QUERYFIELD",
    2487             :                 "An invalid field name was used in a query string."
    2488             :         },
    2489             :         {
    2490             :                 HRES_EVENT_E_INTERNALEXCEPTION,
    2491             :                 "HRES_EVENT_E_INTERNALEXCEPTION",
    2492             :                 "An unexpected exception was raised."
    2493             :         },
    2494             :         {
    2495             :                 HRES_EVENT_E_INTERNALERROR,
    2496             :                 "HRES_EVENT_E_INTERNALERROR",
    2497             :                 "An unexpected internal error was detected."
    2498             :         },
    2499             :         {
    2500             :                 HRES_EVENT_E_INVALID_PER_USER_SID,
    2501             :                 "HRES_EVENT_E_INVALID_PER_USER_SID",
    2502             :                 "The owner security identifier (SID) on a per-user subscription does not exist."
    2503             :         },
    2504             :         {
    2505             :                 HRES_EVENT_E_USER_EXCEPTION,
    2506             :                 "HRES_EVENT_E_USER_EXCEPTION",
    2507             :                 "A user-supplied component or subscriber raised an exception."
    2508             :         },
    2509             :         {
    2510             :                 HRES_EVENT_E_TOO_MANY_METHODS,
    2511             :                 "HRES_EVENT_E_TOO_MANY_METHODS",
    2512             :                 "An interface has too many methods to fire events from."
    2513             :         },
    2514             :         {
    2515             :                 HRES_EVENT_E_MISSING_EVENTCLASS,
    2516             :                 "HRES_EVENT_E_MISSING_EVENTCLASS",
    2517             :                 "A subscription cannot be stored unless its event class already exists."
    2518             :         },
    2519             :         {
    2520             :                 HRES_EVENT_E_NOT_ALL_REMOVED,
    2521             :                 "HRES_EVENT_E_NOT_ALL_REMOVED",
    2522             :                 "Not all the objects requested could be removed."
    2523             :         },
    2524             :         {
    2525             :                 HRES_EVENT_E_COMPLUS_NOT_INSTALLED,
    2526             :                 "HRES_EVENT_E_COMPLUS_NOT_INSTALLED",
    2527             :                 "COM+ is required for this operation, but it is not installed."
    2528             :         },
    2529             :         {
    2530             :                 HRES_EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT,
    2531             :                 "HRES_EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT",
    2532             :                 "Cannot modify or delete an object that was not added using the COM+ Administrative SDK."
    2533             :         },
    2534             :         {
    2535             :                 HRES_EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT,
    2536             :                 "HRES_EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT",
    2537             :                 "Cannot modify or delete an object that was added using the COM+ Administrative SDK."
    2538             :         },
    2539             :         {
    2540             :                 HRES_EVENT_E_INVALID_EVENT_CLASS_PARTITION,
    2541             :                 "HRES_EVENT_E_INVALID_EVENT_CLASS_PARTITION",
    2542             :                 "The event class for this subscription is in an invalid partition."
    2543             :         },
    2544             :         {
    2545             :                 HRES_EVENT_E_PER_USER_SID_NOT_LOGGED_ON,
    2546             :                 "HRES_EVENT_E_PER_USER_SID_NOT_LOGGED_ON",
    2547             :                 "The owner of the PerUser subscription is not logged on to the system specified."
    2548             :         },
    2549             :         {
    2550             :                 HRES_SCHED_E_TRIGGER_NOT_FOUND,
    2551             :                 "HRES_SCHED_E_TRIGGER_NOT_FOUND",
    2552             :                 "Trigger not found."
    2553             :         },
    2554             :         {
    2555             :                 HRES_SCHED_E_TASK_NOT_READY,
    2556             :                 "HRES_SCHED_E_TASK_NOT_READY",
    2557             :                 "One or more of the properties that are needed to run this task have not been set."
    2558             :         },
    2559             :         {
    2560             :                 HRES_SCHED_E_TASK_NOT_RUNNING,
    2561             :                 "HRES_SCHED_E_TASK_NOT_RUNNING",
    2562             :                 "There is no running instance of the task."
    2563             :         },
    2564             :         {
    2565             :                 HRES_SCHED_E_SERVICE_NOT_INSTALLED,
    2566             :                 "HRES_SCHED_E_SERVICE_NOT_INSTALLED",
    2567             :                 "The Task Scheduler service is not installed on this computer."
    2568             :         },
    2569             :         {
    2570             :                 HRES_SCHED_E_CANNOT_OPEN_TASK,
    2571             :                 "HRES_SCHED_E_CANNOT_OPEN_TASK",
    2572             :                 "The task object could not be opened."
    2573             :         },
    2574             :         {
    2575             :                 HRES_SCHED_E_INVALID_TASK,
    2576             :                 "HRES_SCHED_E_INVALID_TASK",
    2577             :                 "The object is either an invalid task object or is not a task object."
    2578             :         },
    2579             :         {
    2580             :                 HRES_SCHED_E_ACCOUNT_INFORMATION_NOT_SET,
    2581             :                 "HRES_SCHED_E_ACCOUNT_INFORMATION_NOT_SET",
    2582             :                 "No account information could be found in the Task Scheduler security database for the task indicated."
    2583             :         },
    2584             :         {
    2585             :                 HRES_SCHED_E_ACCOUNT_NAME_NOT_FOUND,
    2586             :                 "HRES_SCHED_E_ACCOUNT_NAME_NOT_FOUND",
    2587             :                 "Unable to establish existence of the account specified."
    2588             :         },
    2589             :         {
    2590             :                 HRES_SCHED_E_ACCOUNT_DBASE_CORRUPT,
    2591             :                 "HRES_SCHED_E_ACCOUNT_DBASE_CORRUPT",
    2592             :                 "Corruption was detected in the Task Scheduler security database; the database has been reset."
    2593             :         },
    2594             :         {
    2595             :                 HRES_SCHED_E_NO_SECURITY_SERVICES,
    2596             :                 "HRES_SCHED_E_NO_SECURITY_SERVICES",
    2597             :                 "Task Scheduler security services are available only on Windows NT operating system."
    2598             :         },
    2599             :         {
    2600             :                 HRES_SCHED_E_UNKNOWN_OBJECT_VERSION,
    2601             :                 "HRES_SCHED_E_UNKNOWN_OBJECT_VERSION",
    2602             :                 "The task object version is either unsupported or invalid."
    2603             :         },
    2604             :         {
    2605             :                 HRES_SCHED_E_UNSUPPORTED_ACCOUNT_OPTION,
    2606             :                 "HRES_SCHED_E_UNSUPPORTED_ACCOUNT_OPTION",
    2607             :                 "The task has been configured with an unsupported combination of account settings and run-time options."
    2608             :         },
    2609             :         {
    2610             :                 HRES_SCHED_E_SERVICE_NOT_RUNNING,
    2611             :                 "HRES_SCHED_E_SERVICE_NOT_RUNNING",
    2612             :                 "The Task Scheduler service is not running."
    2613             :         },
    2614             :         {
    2615             :                 HRES_SCHED_E_UNEXPECTEDNODE,
    2616             :                 "HRES_SCHED_E_UNEXPECTEDNODE",
    2617             :                 "The task XML contains an unexpected node."
    2618             :         },
    2619             :         {
    2620             :                 HRES_SCHED_E_NAMESPACE,
    2621             :                 "HRES_SCHED_E_NAMESPACE",
    2622             :                 "The task XML contains an element or attribute from an unexpected namespace."
    2623             :         },
    2624             :         {
    2625             :                 HRES_SCHED_E_INVALIDVALUE,
    2626             :                 "HRES_SCHED_E_INVALIDVALUE",
    2627             :                 "The task XML contains a value that is incorrectly formatted or out of range."
    2628             :         },
    2629             :         {
    2630             :                 HRES_SCHED_E_MISSINGNODE,
    2631             :                 "HRES_SCHED_E_MISSINGNODE",
    2632             :                 "The task XML is missing a required element or attribute."
    2633             :         },
    2634             :         {
    2635             :                 HRES_SCHED_E_MALFORMEDXML,
    2636             :                 "HRES_SCHED_E_MALFORMEDXML",
    2637             :                 "The task XML is malformed."
    2638             :         },
    2639             :         {
    2640             :                 HRES_SCHED_E_TOO_MANY_NODES,
    2641             :                 "HRES_SCHED_E_TOO_MANY_NODES",
    2642             :                 "The task XML contains too many nodes of the same type."
    2643             :         },
    2644             :         {
    2645             :                 HRES_SCHED_E_PAST_END_BOUNDARY,
    2646             :                 "HRES_SCHED_E_PAST_END_BOUNDARY",
    2647             :                 "The task cannot be started after the trigger's end boundary."
    2648             :         },
    2649             :         {
    2650             :                 HRES_SCHED_E_ALREADY_RUNNING,
    2651             :                 "HRES_SCHED_E_ALREADY_RUNNING",
    2652             :                 "An instance of this task is already running."
    2653             :         },
    2654             :         {
    2655             :                 HRES_SCHED_E_USER_NOT_LOGGED_ON,
    2656             :                 "HRES_SCHED_E_USER_NOT_LOGGED_ON",
    2657             :                 "The task will not run because the user is not logged on."
    2658             :         },
    2659             :         {
    2660             :                 HRES_SCHED_E_INVALID_TASK_HASH,
    2661             :                 "HRES_SCHED_E_INVALID_TASK_HASH",
    2662             :                 "The task image is corrupt or has been tampered with."
    2663             :         },
    2664             :         {
    2665             :                 HRES_SCHED_E_SERVICE_NOT_AVAILABLE,
    2666             :                 "HRES_SCHED_E_SERVICE_NOT_AVAILABLE",
    2667             :                 "The Task Scheduler service is not available."
    2668             :         },
    2669             :         {
    2670             :                 HRES_SCHED_E_SERVICE_TOO_BUSY,
    2671             :                 "HRES_SCHED_E_SERVICE_TOO_BUSY",
    2672             :                 "The Task Scheduler service is too busy to handle your request. Try again later."
    2673             :         },
    2674             :         {
    2675             :                 HRES_SCHED_E_TASK_ATTEMPTED,
    2676             :                 "HRES_SCHED_E_TASK_ATTEMPTED",
    2677             :                 "The Task Scheduler service attempted to run the task, but the task did not run due to one of the constraints in the task definition."
    2678             :         },
    2679             :         {
    2680             :                 HRES_XACT_E_ALREADYOTHERSINGLEPHASE,
    2681             :                 "HRES_XACT_E_ALREADYOTHERSINGLEPHASE",
    2682             :                 "Another single phase resource manager has already been enlisted in this transaction."
    2683             :         },
    2684             :         {
    2685             :                 HRES_XACT_E_CANTRETAIN,
    2686             :                 "HRES_XACT_E_CANTRETAIN",
    2687             :                 "A retaining commit or abort is not supported."
    2688             :         },
    2689             :         {
    2690             :                 HRES_XACT_E_COMMITFAILED,
    2691             :                 "HRES_XACT_E_COMMITFAILED",
    2692             :                 "The transaction failed to commit for an unknown reason. The transaction was aborted."
    2693             :         },
    2694             :         {
    2695             :                 HRES_XACT_E_COMMITPREVENTED,
    2696             :                 "HRES_XACT_E_COMMITPREVENTED",
    2697             :                 "Cannot call commit on this transaction object because the calling application did not initiate the transaction."
    2698             :         },
    2699             :         {
    2700             :                 HRES_XACT_E_HEURISTICABORT,
    2701             :                 "HRES_XACT_E_HEURISTICABORT",
    2702             :                 "Instead of committing, the resource heuristically aborted."
    2703             :         },
    2704             :         {
    2705             :                 HRES_XACT_E_HEURISTICCOMMIT,
    2706             :                 "HRES_XACT_E_HEURISTICCOMMIT",
    2707             :                 "Instead of aborting, the resource heuristically committed."
    2708             :         },
    2709             :         {
    2710             :                 HRES_XACT_E_HEURISTICDAMAGE,
    2711             :                 "HRES_XACT_E_HEURISTICDAMAGE",
    2712             :                 "Some of the states of the resource were committed while others were aborted, likely because of heuristic decisions."
    2713             :         },
    2714             :         {
    2715             :                 HRES_XACT_E_HEURISTICDANGER,
    2716             :                 "HRES_XACT_E_HEURISTICDANGER",
    2717             :                 "Some of the states of the resource might have been committed while others were aborted, likely because of heuristic decisions."
    2718             :         },
    2719             :         {
    2720             :                 HRES_XACT_E_ISOLATIONLEVEL,
    2721             :                 "HRES_XACT_E_ISOLATIONLEVEL",
    2722             :                 "The requested isolation level is not valid or supported."
    2723             :         },
    2724             :         {
    2725             :                 HRES_XACT_E_NOASYNC,
    2726             :                 "HRES_XACT_E_NOASYNC",
    2727             :                 "The transaction manager does not support an asynchronous operation for this method."
    2728             :         },
    2729             :         {
    2730             :                 HRES_XACT_E_NOENLIST,
    2731             :                 "HRES_XACT_E_NOENLIST",
    2732             :                 "Unable to enlist in the transaction."
    2733             :         },
    2734             :         {
    2735             :                 HRES_XACT_E_NOISORETAIN,
    2736             :                 "HRES_XACT_E_NOISORETAIN",
    2737             :                 "The requested semantics of retention of isolation across retaining commit and abort boundaries cannot be supported by this transaction implementation, or isoFlags was not equal to 0."
    2738             :         },
    2739             :         {
    2740             :                 HRES_XACT_E_NORESOURCE,
    2741             :                 "HRES_XACT_E_NORESOURCE",
    2742             :                 "There is no resource presently associated with this enlistment."
    2743             :         },
    2744             :         {
    2745             :                 HRES_XACT_E_NOTCURRENT,
    2746             :                 "HRES_XACT_E_NOTCURRENT",
    2747             :                 "The transaction failed to commit due to the failure of optimistic concurrency control in at least one of the resource managers."
    2748             :         },
    2749             :         {
    2750             :                 HRES_XACT_E_NOTRANSACTION,
    2751             :                 "HRES_XACT_E_NOTRANSACTION",
    2752             :                 "The transaction has already been implicitly or explicitly committed or aborted."
    2753             :         },
    2754             :         {
    2755             :                 HRES_XACT_E_NOTSUPPORTED,
    2756             :                 "HRES_XACT_E_NOTSUPPORTED",
    2757             :                 "An invalid combination of flags was specified."
    2758             :         },
    2759             :         {
    2760             :                 HRES_XACT_E_UNKNOWNRMGRID,
    2761             :                 "HRES_XACT_E_UNKNOWNRMGRID",
    2762             :                 "The resource manager ID is not associated with this transaction or the transaction manager."
    2763             :         },
    2764             :         {
    2765             :                 HRES_XACT_E_WRONGSTATE,
    2766             :                 "HRES_XACT_E_WRONGSTATE",
    2767             :                 "This method was called in the wrong state."
    2768             :         },
    2769             :         {
    2770             :                 HRES_XACT_E_WRONGUOW,
    2771             :                 "HRES_XACT_E_WRONGUOW",
    2772             :                 "The indicated unit of work does not match the unit of work expected by the resource manager."
    2773             :         },
    2774             :         {
    2775             :                 HRES_XACT_E_XTIONEXISTS,
    2776             :                 "HRES_XACT_E_XTIONEXISTS",
    2777             :                 "An enlistment in a transaction already exists."
    2778             :         },
    2779             :         {
    2780             :                 HRES_XACT_E_NOIMPORTOBJECT,
    2781             :                 "HRES_XACT_E_NOIMPORTOBJECT",
    2782             :                 "An import object for the transaction could not be found."
    2783             :         },
    2784             :         {
    2785             :                 HRES_XACT_E_INVALIDCOOKIE,
    2786             :                 "HRES_XACT_E_INVALIDCOOKIE",
    2787             :                 "The transaction cookie is invalid."
    2788             :         },
    2789             :         {
    2790             :                 HRES_XACT_E_INDOUBT,
    2791             :                 "HRES_XACT_E_INDOUBT",
    2792             :                 "The transaction status is in doubt. A communication failure occurred, or a transaction manager or resource manager has failed."
    2793             :         },
    2794             :         {
    2795             :                 HRES_XACT_E_NOTIMEOUT,
    2796             :                 "HRES_XACT_E_NOTIMEOUT",
    2797             :                 "A time-out was specified, but time-outs are not supported."
    2798             :         },
    2799             :         {
    2800             :                 HRES_XACT_E_ALREADYINPROGRESS,
    2801             :                 "HRES_XACT_E_ALREADYINPROGRESS",
    2802             :                 "The requested operation is already in progress for the transaction."
    2803             :         },
    2804             :         {
    2805             :                 HRES_XACT_E_ABORTED,
    2806             :                 "HRES_XACT_E_ABORTED",
    2807             :                 "The transaction has already been aborted."
    2808             :         },
    2809             :         {
    2810             :                 HRES_XACT_E_LOGFULL,
    2811             :                 "HRES_XACT_E_LOGFULL",
    2812             :                 "The Transaction Manager returned a log full error."
    2813             :         },
    2814             :         {
    2815             :                 HRES_XACT_E_TMNOTAVAILABLE,
    2816             :                 "HRES_XACT_E_TMNOTAVAILABLE",
    2817             :                 "The transaction manager is not available."
    2818             :         },
    2819             :         {
    2820             :                 HRES_XACT_E_CONNECTION_DOWN,
    2821             :                 "HRES_XACT_E_CONNECTION_DOWN",
    2822             :                 "A connection with the transaction manager was lost."
    2823             :         },
    2824             :         {
    2825             :                 HRES_XACT_E_CONNECTION_DENIED,
    2826             :                 "HRES_XACT_E_CONNECTION_DENIED",
    2827             :                 "A request to establish a connection with the transaction manager was denied."
    2828             :         },
    2829             :         {
    2830             :                 HRES_XACT_E_REENLISTTIMEOUT,
    2831             :                 "HRES_XACT_E_REENLISTTIMEOUT",
    2832             :                 "Resource manager reenlistment to determine transaction status timed out."
    2833             :         },
    2834             :         {
    2835             :                 HRES_XACT_E_TIP_CONNECT_FAILED,
    2836             :                 "HRES_XACT_E_TIP_CONNECT_FAILED",
    2837             :                 "The transaction manager failed to establish a connection with another Transaction Internet Protocol (TIP) transaction manager."
    2838             :         },
    2839             :         {
    2840             :                 HRES_XACT_E_TIP_PROTOCOL_ERROR,
    2841             :                 "HRES_XACT_E_TIP_PROTOCOL_ERROR",
    2842             :                 "The transaction manager encountered a protocol error with another TIP transaction manager."
    2843             :         },
    2844             :         {
    2845             :                 HRES_XACT_E_TIP_PULL_FAILED,
    2846             :                 "HRES_XACT_E_TIP_PULL_FAILED",
    2847             :                 "The transaction manager could not propagate a transaction from another TIP transaction manager."
    2848             :         },
    2849             :         {
    2850             :                 HRES_XACT_E_DEST_TMNOTAVAILABLE,
    2851             :                 "HRES_XACT_E_DEST_TMNOTAVAILABLE",
    2852             :                 "The transaction manager on the destination machine is not available."
    2853             :         },
    2854             :         {
    2855             :                 HRES_XACT_E_TIP_DISABLED,
    2856             :                 "HRES_XACT_E_TIP_DISABLED",
    2857             :                 "The transaction manager has disabled its support for TIP."
    2858             :         },
    2859             :         {
    2860             :                 HRES_XACT_E_NETWORK_TX_DISABLED,
    2861             :                 "HRES_XACT_E_NETWORK_TX_DISABLED",
    2862             :                 "The transaction manager has disabled its support for remote or network transactions."
    2863             :         },
    2864             :         {
    2865             :                 HRES_XACT_E_PARTNER_NETWORK_TX_DISABLED,
    2866             :                 "HRES_XACT_E_PARTNER_NETWORK_TX_DISABLED",
    2867             :                 "The partner transaction manager has disabled its support for remote or network transactions."
    2868             :         },
    2869             :         {
    2870             :                 HRES_XACT_E_XA_TX_DISABLED,
    2871             :                 "HRES_XACT_E_XA_TX_DISABLED",
    2872             :                 "The transaction manager has disabled its support for XA transactions."
    2873             :         },
    2874             :         {
    2875             :                 HRES_XACT_E_UNABLE_TO_READ_DTC_CONFIG,
    2876             :                 "HRES_XACT_E_UNABLE_TO_READ_DTC_CONFIG",
    2877             :                 "Microsoft Distributed Transaction Coordinator (MSDTC) was unable to read its configuration information."
    2878             :         },
    2879             :         {
    2880             :                 HRES_XACT_E_UNABLE_TO_LOAD_DTC_PROXY,
    2881             :                 "HRES_XACT_E_UNABLE_TO_LOAD_DTC_PROXY",
    2882             :                 "MSDTC was unable to load the DTC proxy DLL."
    2883             :         },
    2884             :         {
    2885             :                 HRES_XACT_E_ABORTING,
    2886             :                 "HRES_XACT_E_ABORTING",
    2887             :                 "The local transaction has aborted."
    2888             :         },
    2889             :         {
    2890             :                 HRES_XACT_E_CLERKNOTFOUND,
    2891             :                 "HRES_XACT_E_CLERKNOTFOUND",
    2892             :                 "The specified CRM clerk was not found. It might have completed before it could be held."
    2893             :         },
    2894             :         {
    2895             :                 HRES_XACT_E_CLERKEXISTS,
    2896             :                 "HRES_XACT_E_CLERKEXISTS",
    2897             :                 "The specified CRM clerk does not exist."
    2898             :         },
    2899             :         {
    2900             :                 HRES_XACT_E_RECOVERYINPROGRESS,
    2901             :                 "HRES_XACT_E_RECOVERYINPROGRESS",
    2902             :                 "Recovery of the CRM log file is still in progress."
    2903             :         },
    2904             :         {
    2905             :                 HRES_XACT_E_TRANSACTIONCLOSED,
    2906             :                 "HRES_XACT_E_TRANSACTIONCLOSED",
    2907             :                 "The transaction has completed, and the log records have been discarded from the log file. They are no longer available."
    2908             :         },
    2909             :         {
    2910             :                 HRES_XACT_E_INVALIDLSN,
    2911             :                 "HRES_XACT_E_INVALIDLSN",
    2912             :                 "lsnToRead is outside of the current limits of the log"
    2913             :         },
    2914             :         {
    2915             :                 HRES_XACT_E_REPLAYREQUEST,
    2916             :                 "HRES_XACT_E_REPLAYREQUEST",
    2917             :                 "The COM+ Compensating Resource Manager has records it wishes to replay."
    2918             :         },
    2919             :         {
    2920             :                 HRES_XACT_E_CONNECTION_REQUEST_DENIED,
    2921             :                 "HRES_XACT_E_CONNECTION_REQUEST_DENIED",
    2922             :                 "The request to connect to the specified transaction coordinator was denied."
    2923             :         },
    2924             :         {
    2925             :                 HRES_XACT_E_TOOMANY_ENLISTMENTS,
    2926             :                 "HRES_XACT_E_TOOMANY_ENLISTMENTS",
    2927             :                 "The maximum number of enlistments for the specified transaction has been reached."
    2928             :         },
    2929             :         {
    2930             :                 HRES_XACT_E_DUPLICATE_GUID,
    2931             :                 "HRES_XACT_E_DUPLICATE_GUID",
    2932             :                 "A resource manager with the same identifier is already registered with the specified transaction coordinator."
    2933             :         },
    2934             :         {
    2935             :                 HRES_XACT_E_NOTSINGLEPHASE,
    2936             :                 "HRES_XACT_E_NOTSINGLEPHASE",
    2937             :                 "The prepare request given was not eligible for single-phase optimizations."
    2938             :         },
    2939             :         {
    2940             :                 HRES_XACT_E_RECOVERYALREADYDONE,
    2941             :                 "HRES_XACT_E_RECOVERYALREADYDONE",
    2942             :                 "RecoveryComplete has already been called for the given resource manager."
    2943             :         },
    2944             :         {
    2945             :                 HRES_XACT_E_PROTOCOL,
    2946             :                 "HRES_XACT_E_PROTOCOL",
    2947             :                 "The interface call made was incorrect for the current state of the protocol."
    2948             :         },
    2949             :         {
    2950             :                 HRES_XACT_E_RM_FAILURE,
    2951             :                 "HRES_XACT_E_RM_FAILURE",
    2952             :                 "The xa_open call failed for the XA resource."
    2953             :         },
    2954             :         {
    2955             :                 HRES_XACT_E_RECOVERY_FAILED,
    2956             :                 "HRES_XACT_E_RECOVERY_FAILED",
    2957             :                 "The xa_recover call failed for the XA resource."
    2958             :         },
    2959             :         {
    2960             :                 HRES_XACT_E_LU_NOT_FOUND,
    2961             :                 "HRES_XACT_E_LU_NOT_FOUND",
    2962             :                 "The logical unit of work specified cannot be found."
    2963             :         },
    2964             :         {
    2965             :                 HRES_XACT_E_DUPLICATE_LU,
    2966             :                 "HRES_XACT_E_DUPLICATE_LU",
    2967             :                 "The specified logical unit of work already exists."
    2968             :         },
    2969             :         {
    2970             :                 HRES_XACT_E_LU_NOT_CONNECTED,
    2971             :                 "HRES_XACT_E_LU_NOT_CONNECTED",
    2972             :                 "Subordinate creation failed. The specified logical unit of work was not connected."
    2973             :         },
    2974             :         {
    2975             :                 HRES_XACT_E_DUPLICATE_TRANSID,
    2976             :                 "HRES_XACT_E_DUPLICATE_TRANSID",
    2977             :                 "A transaction with the given identifier already exists."
    2978             :         },
    2979             :         {
    2980             :                 HRES_XACT_E_LU_BUSY,
    2981             :                 "HRES_XACT_E_LU_BUSY",
    2982             :                 "The resource is in use."
    2983             :         },
    2984             :         {
    2985             :                 HRES_XACT_E_LU_NO_RECOVERY_PROCESS,
    2986             :                 "HRES_XACT_E_LU_NO_RECOVERY_PROCESS",
    2987             :                 "The LU Recovery process is down."
    2988             :         },
    2989             :         {
    2990             :                 HRES_XACT_E_LU_DOWN,
    2991             :                 "HRES_XACT_E_LU_DOWN",
    2992             :                 "The remote session was lost."
    2993             :         },
    2994             :         {
    2995             :                 HRES_XACT_E_LU_RECOVERING,
    2996             :                 "HRES_XACT_E_LU_RECOVERING",
    2997             :                 "The resource is currently recovering."
    2998             :         },
    2999             :         {
    3000             :                 HRES_XACT_E_LU_RECOVERY_MISMATCH,
    3001             :                 "HRES_XACT_E_LU_RECOVERY_MISMATCH",
    3002             :                 "There was a mismatch in driving recovery."
    3003             :         },
    3004             :         {
    3005             :                 HRES_XACT_E_RM_UNAVAILABLE,
    3006             :                 "HRES_XACT_E_RM_UNAVAILABLE",
    3007             :                 "An error occurred with the XA resource."
    3008             :         },
    3009             :         {
    3010             :                 HRES_CONTEXT_E_ABORTED,
    3011             :                 "HRES_CONTEXT_E_ABORTED",
    3012             :                 "The root transaction wanted to commit, but the transaction aborted."
    3013             :         },
    3014             :         {
    3015             :                 HRES_CONTEXT_E_ABORTING,
    3016             :                 "HRES_CONTEXT_E_ABORTING",
    3017             :                 "The COM+ component on which the method call was made has a transaction that has already aborted or is in the process of aborting."
    3018             :         },
    3019             :         {
    3020             :                 HRES_CONTEXT_E_NOCONTEXT,
    3021             :                 "HRES_CONTEXT_E_NOCONTEXT",
    3022             :                 "There is no Microsoft Transaction Server (MTS) object context."
    3023             :         },
    3024             :         {
    3025             :                 HRES_CONTEXT_E_WOULD_DEADLOCK,
    3026             :                 "HRES_CONTEXT_E_WOULD_DEADLOCK",
    3027             :                 "The component is configured to use synchronization, and this method call would cause a deadlock to occur."
    3028             :         },
    3029             :         {
    3030             :                 HRES_CONTEXT_E_SYNCH_TIMEOUT,
    3031             :                 "HRES_CONTEXT_E_SYNCH_TIMEOUT",
    3032             :                 "The component is configured to use synchronization, and a thread has timed out waiting to enter the context."
    3033             :         },
    3034             :         {
    3035             :                 HRES_CONTEXT_E_OLDREF,
    3036             :                 "HRES_CONTEXT_E_OLDREF",
    3037             :                 "You made a method call on a COM+ component that has a transaction that has already committed or aborted."
    3038             :         },
    3039             :         {
    3040             :                 HRES_CONTEXT_E_ROLENOTFOUND,
    3041             :                 "HRES_CONTEXT_E_ROLENOTFOUND",
    3042             :                 "The specified role was not configured for the application."
    3043             :         },
    3044             :         {
    3045             :                 HRES_CONTEXT_E_TMNOTAVAILABLE,
    3046             :                 "HRES_CONTEXT_E_TMNOTAVAILABLE",
    3047             :                 "COM+ was unable to talk to the MSDTC."
    3048             :         },
    3049             :         {
    3050             :                 HRES_CO_E_ACTIVATIONFAILED,
    3051             :                 "HRES_CO_E_ACTIVATIONFAILED",
    3052             :                 "An unexpected error occurred during COM+ activation."
    3053             :         },
    3054             :         {
    3055             :                 HRES_CO_E_ACTIVATIONFAILED_EVENTLOGGED,
    3056             :                 "HRES_CO_E_ACTIVATIONFAILED_EVENTLOGGED",
    3057             :                 "COM+ activation failed. Check the event log for more information."
    3058             :         },
    3059             :         {
    3060             :                 HRES_CO_E_ACTIVATIONFAILED_CATALOGERROR,
    3061             :                 "HRES_CO_E_ACTIVATIONFAILED_CATALOGERROR",
    3062             :                 "COM+ activation failed due to a catalog or configuration error."
    3063             :         },
    3064             :         {
    3065             :                 HRES_CO_E_ACTIVATIONFAILED_TIMEOUT,
    3066             :                 "HRES_CO_E_ACTIVATIONFAILED_TIMEOUT",
    3067             :                 "COM+ activation failed because the activation could not be completed in the specified amount of time."
    3068             :         },
    3069             :         {
    3070             :                 HRES_CO_E_INITIALIZATIONFAILED,
    3071             :                 "HRES_CO_E_INITIALIZATIONFAILED",
    3072             :                 "COM+ activation failed because an initialization function failed. Check the event log for more information."
    3073             :         },
    3074             :         {
    3075             :                 HRES_CONTEXT_E_NOJIT,
    3076             :                 "HRES_CONTEXT_E_NOJIT",
    3077             :                 "The requested operation requires that just-in-time (JIT) be in the current context, and it is not."
    3078             :         },
    3079             :         {
    3080             :                 HRES_CONTEXT_E_NOTRANSACTION,
    3081             :                 "HRES_CONTEXT_E_NOTRANSACTION",
    3082             :                 "The requested operation requires that the current context have a transaction, and it does not."
    3083             :         },
    3084             :         {
    3085             :                 HRES_CO_E_THREADINGMODEL_CHANGED,
    3086             :                 "HRES_CO_E_THREADINGMODEL_CHANGED",
    3087             :                 "The components threading model has changed after install into a COM+ application. Re-install component."
    3088             :         },
    3089             :         {
    3090             :                 HRES_CO_E_NOIISINTRINSICS,
    3091             :                 "HRES_CO_E_NOIISINTRINSICS",
    3092             :                 "Internet Information Services (IIS) intrinsics not available. Start your work with IIS."
    3093             :         },
    3094             :         {
    3095             :                 HRES_CO_E_NOCOOKIES,
    3096             :                 "HRES_CO_E_NOCOOKIES",
    3097             :                 "An attempt to write a cookie failed."
    3098             :         },
    3099             :         {
    3100             :                 HRES_CO_E_DBERROR,
    3101             :                 "HRES_CO_E_DBERROR",
    3102             :                 "An attempt to use a database generated a database-specific error."
    3103             :         },
    3104             :         {
    3105             :                 HRES_CO_E_NOTPOOLED,
    3106             :                 "HRES_CO_E_NOTPOOLED",
    3107             :                 "The COM+ component you created must use object pooling to work."
    3108             :         },
    3109             :         {
    3110             :                 HRES_CO_E_NOTCONSTRUCTED,
    3111             :                 "HRES_CO_E_NOTCONSTRUCTED",
    3112             :                 "The COM+ component you created must use object construction to work correctly."
    3113             :         },
    3114             :         {
    3115             :                 HRES_CO_E_NOSYNCHRONIZATION,
    3116             :                 "HRES_CO_E_NOSYNCHRONIZATION",
    3117             :                 "The COM+ component requires synchronization, and it is not configured for it."
    3118             :         },
    3119             :         {
    3120             :                 HRES_CO_E_ISOLEVELMISMATCH,
    3121             :                 "HRES_CO_E_ISOLEVELMISMATCH",
    3122             :                 "The TxIsolation Level property for the COM+ component being created is stronger than the TxIsolationLevel for the root."
    3123             :         },
    3124             :         {
    3125             :                 HRES_CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED,
    3126             :                 "HRES_CO_E_CALL_OUT_OF_TX_SCOPE_NOT_ALLOWED",
    3127             :                 "The component attempted to make a cross-context call between invocations of EnterTransactionScope and ExitTransactionScope. This is not allowed. Cross-context calls cannot be made while inside a transaction scope."
    3128             :         },
    3129             :         {
    3130             :                 HRES_CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED,
    3131             :                 "HRES_CO_E_EXIT_TRANSACTION_SCOPE_NOT_CALLED",
    3132             :                 "The component made a call to EnterTransactionScope, but did not make a corresponding call to ExitTransactionScope before returning."
    3133             :         },
    3134             :         {
    3135             :                 HRES_E_ACCESSDENIED,
    3136             :                 "HRES_E_ACCESSDENIED",
    3137             :                 "General access denied error."
    3138             :         },
    3139             :         {
    3140             :                 HRES_E_OUTOFMEMORY,
    3141             :                 "HRES_E_OUTOFMEMORY",
    3142             :                 "The server does not have enough memory for the new channel."
    3143             :         },
    3144             :         {
    3145             :                 HRES_ERROR_NOT_SUPPORTED,
    3146             :                 "HRES_ERROR_NOT_SUPPORTED",
    3147             :                 "The server cannot support a client request for a dynamic virtual channel."
    3148             :         },
    3149             :         {
    3150             :                 HRES_E_INVALIDARG,
    3151             :                 "HRES_E_INVALIDARG",
    3152             :                 "One or more arguments are invalid."
    3153             :         },
    3154             :         {
    3155             :                 HRES_ERROR_DISK_FULL,
    3156             :                 "HRES_ERROR_DISK_FULL",
    3157             :                 "There is not enough space on the disk."
    3158             :         },
    3159             :         {
    3160             :                 HRES_CO_E_CLASS_CREATE_FAILED,
    3161             :                 "HRES_CO_E_CLASS_CREATE_FAILED",
    3162             :                 "Attempt to create a class object failed."
    3163             :         },
    3164             :         {
    3165             :                 HRES_CO_E_SCM_ERROR,
    3166             :                 "HRES_CO_E_SCM_ERROR",
    3167             :                 "OLE service could not bind object."
    3168             :         },
    3169             :         {
    3170             :                 HRES_CO_E_SCM_RPC_FAILURE,
    3171             :                 "HRES_CO_E_SCM_RPC_FAILURE",
    3172             :                 "RPC communication failed with OLE service."
    3173             :         },
    3174             :         {
    3175             :                 HRES_CO_E_BAD_PATH,
    3176             :                 "HRES_CO_E_BAD_PATH",
    3177             :                 "Bad path to object."
    3178             :         },
    3179             :         {
    3180             :                 HRES_CO_E_SERVER_EXEC_FAILURE,
    3181             :                 "HRES_CO_E_SERVER_EXEC_FAILURE",
    3182             :                 "Server execution failed."
    3183             :         },
    3184             :         {
    3185             :                 HRES_CO_E_OBJSRV_RPC_FAILURE,
    3186             :                 "HRES_CO_E_OBJSRV_RPC_FAILURE",
    3187             :                 "OLE service could not communicate with the object server."
    3188             :         },
    3189             :         {
    3190             :                 HRES_MK_E_NO_NORMALIZED,
    3191             :                 "HRES_MK_E_NO_NORMALIZED",
    3192             :                 "Moniker path could not be normalized."
    3193             :         },
    3194             :         {
    3195             :                 HRES_CO_E_SERVER_STOPPING,
    3196             :                 "HRES_CO_E_SERVER_STOPPING",
    3197             :                 "Object server is stopping when OLE service contacts it."
    3198             :         },
    3199             :         {
    3200             :                 HRES_MEM_E_INVALID_ROOT,
    3201             :                 "HRES_MEM_E_INVALID_ROOT",
    3202             :                 "An invalid root block pointer was specified."
    3203             :         },
    3204             :         {
    3205             :                 HRES_MEM_E_INVALID_LINK,
    3206             :                 "HRES_MEM_E_INVALID_LINK",
    3207             :                 "An allocation chain contained an invalid link pointer."
    3208             :         },
    3209             :         {
    3210             :                 HRES_MEM_E_INVALID_SIZE,
    3211             :                 "HRES_MEM_E_INVALID_SIZE",
    3212             :                 "The requested allocation size was too large."
    3213             :         },
    3214             :         {
    3215             :                 HRES_CO_E_MISSING_DISPLAYNAME,
    3216             :                 "HRES_CO_E_MISSING_DISPLAYNAME",
    3217             :                 "The activation requires a display name to be present under the class identifier (CLSID) key."
    3218             :         },
    3219             :         {
    3220             :                 HRES_CO_E_RUNAS_VALUE_MUST_BE_AAA,
    3221             :                 "HRES_CO_E_RUNAS_VALUE_MUST_BE_AAA",
    3222             :                 "The activation requires that the RunAs value for the application is Activate As Activator."
    3223             :         },
    3224             :         {
    3225             :                 HRES_CO_E_ELEVATION_DISABLED,
    3226             :                 "HRES_CO_E_ELEVATION_DISABLED",
    3227             :                 "The class is not configured to support elevated activation."
    3228             :         },
    3229             :         {
    3230             :                 HRES_NTE_BAD_UID,
    3231             :                 "HRES_NTE_BAD_UID",
    3232             :                 "Bad UID."
    3233             :         },
    3234             :         {
    3235             :                 HRES_NTE_BAD_HASH,
    3236             :                 "HRES_NTE_BAD_HASH",
    3237             :                 "Bad hash."
    3238             :         },
    3239             :         {
    3240             :                 HRES_NTE_BAD_KEY,
    3241             :                 "HRES_NTE_BAD_KEY",
    3242             :                 "Bad key."
    3243             :         },
    3244             :         {
    3245             :                 HRES_NTE_BAD_LEN,
    3246             :                 "HRES_NTE_BAD_LEN",
    3247             :                 "Bad length."
    3248             :         },
    3249             :         {
    3250             :                 HRES_NTE_BAD_DATA,
    3251             :                 "HRES_NTE_BAD_DATA",
    3252             :                 "Bad data."
    3253             :         },
    3254             :         {
    3255             :                 HRES_NTE_BAD_SIGNATURE,
    3256             :                 "HRES_NTE_BAD_SIGNATURE",
    3257             :                 "Invalid signature."
    3258             :         },
    3259             :         {
    3260             :                 HRES_NTE_BAD_VER,
    3261             :                 "HRES_NTE_BAD_VER",
    3262             :                 "Bad version of provider."
    3263             :         },
    3264             :         {
    3265             :                 HRES_NTE_BAD_ALGID,
    3266             :                 "HRES_NTE_BAD_ALGID",
    3267             :                 "Invalid algorithm specified."
    3268             :         },
    3269             :         {
    3270             :                 HRES_NTE_BAD_FLAGS,
    3271             :                 "HRES_NTE_BAD_FLAGS",
    3272             :                 "Invalid flags specified."
    3273             :         },
    3274             :         {
    3275             :                 HRES_NTE_BAD_TYPE,
    3276             :                 "HRES_NTE_BAD_TYPE",
    3277             :                 "Invalid type specified."
    3278             :         },
    3279             :         {
    3280             :                 HRES_NTE_BAD_KEY_STATE,
    3281             :                 "HRES_NTE_BAD_KEY_STATE",
    3282             :                 "Key not valid for use in specified state."
    3283             :         },
    3284             :         {
    3285             :                 HRES_NTE_BAD_HASH_STATE,
    3286             :                 "HRES_NTE_BAD_HASH_STATE",
    3287             :                 "Hash not valid for use in specified state."
    3288             :         },
    3289             :         {
    3290             :                 HRES_NTE_NO_KEY,
    3291             :                 "HRES_NTE_NO_KEY",
    3292             :                 "Key does not exist."
    3293             :         },
    3294             :         {
    3295             :                 HRES_NTE_NO_MEMORY,
    3296             :                 "HRES_NTE_NO_MEMORY",
    3297             :                 "Insufficient memory available for the operation."
    3298             :         },
    3299             :         {
    3300             :                 HRES_NTE_EXISTS,
    3301             :                 "HRES_NTE_EXISTS",
    3302             :                 "Object already exists."
    3303             :         },
    3304             :         {
    3305             :                 HRES_NTE_PERM,
    3306             :                 "HRES_NTE_PERM",
    3307             :                 "Access denied."
    3308             :         },
    3309             :         {
    3310             :                 HRES_NTE_NOT_FOUND,
    3311             :                 "HRES_NTE_NOT_FOUND",
    3312             :                 "Object was not found."
    3313             :         },
    3314             :         {
    3315             :                 HRES_NTE_DOUBLE_ENCRYPT,
    3316             :                 "HRES_NTE_DOUBLE_ENCRYPT",
    3317             :                 "Data already encrypted."
    3318             :         },
    3319             :         {
    3320             :                 HRES_NTE_BAD_PROVIDER,
    3321             :                 "HRES_NTE_BAD_PROVIDER",
    3322             :                 "Invalid provider specified."
    3323             :         },
    3324             :         {
    3325             :                 HRES_NTE_BAD_PROV_TYPE,
    3326             :                 "HRES_NTE_BAD_PROV_TYPE",
    3327             :                 "Invalid provider type specified."
    3328             :         },
    3329             :         {
    3330             :                 HRES_NTE_BAD_PUBLIC_KEY,
    3331             :                 "HRES_NTE_BAD_PUBLIC_KEY",
    3332             :                 "Provider's public key is invalid."
    3333             :         },
    3334             :         {
    3335             :                 HRES_NTE_BAD_KEYSET,
    3336             :                 "HRES_NTE_BAD_KEYSET",
    3337             :                 "Key set does not exist."
    3338             :         },
    3339             :         {
    3340             :                 HRES_NTE_PROV_TYPE_NOT_DEF,
    3341             :                 "HRES_NTE_PROV_TYPE_NOT_DEF",
    3342             :                 "Provider type not defined."
    3343             :         },
    3344             :         {
    3345             :                 HRES_NTE_PROV_TYPE_ENTRY_BAD,
    3346             :                 "HRES_NTE_PROV_TYPE_ENTRY_BAD",
    3347             :                 "The provider type, as registered, is invalid."
    3348             :         },
    3349             :         {
    3350             :                 HRES_NTE_KEYSET_NOT_DEF,
    3351             :                 "HRES_NTE_KEYSET_NOT_DEF",
    3352             :                 "The key set is not defined."
    3353             :         },
    3354             :         {
    3355             :                 HRES_NTE_KEYSET_ENTRY_BAD,
    3356             :                 "HRES_NTE_KEYSET_ENTRY_BAD",
    3357             :                 "The key set, as registered, is invalid."
    3358             :         },
    3359             :         {
    3360             :                 HRES_NTE_PROV_TYPE_NO_MATCH,
    3361             :                 "HRES_NTE_PROV_TYPE_NO_MATCH",
    3362             :                 "Provider type does not match registered value."
    3363             :         },
    3364             :         {
    3365             :                 HRES_NTE_SIGNATURE_FILE_BAD,
    3366             :                 "HRES_NTE_SIGNATURE_FILE_BAD",
    3367             :                 "The digital signature file is corrupt."
    3368             :         },
    3369             :         {
    3370             :                 HRES_NTE_PROVIDER_DLL_FAIL,
    3371             :                 "HRES_NTE_PROVIDER_DLL_FAIL",
    3372             :                 "Provider DLL failed to initialize correctly."
    3373             :         },
    3374             :         {
    3375             :                 HRES_NTE_PROV_DLL_NOT_FOUND,
    3376             :                 "HRES_NTE_PROV_DLL_NOT_FOUND",
    3377             :                 "Provider DLL could not be found."
    3378             :         },
    3379             :         {
    3380             :                 HRES_NTE_BAD_KEYSET_PARAM,
    3381             :                 "HRES_NTE_BAD_KEYSET_PARAM",
    3382             :                 "The keyset parameter is invalid."
    3383             :         },
    3384             :         {
    3385             :                 HRES_NTE_FAIL,
    3386             :                 "HRES_NTE_FAIL",
    3387             :                 "An internal error occurred."
    3388             :         },
    3389             :         {
    3390             :                 HRES_NTE_SYS_ERR,
    3391             :                 "HRES_NTE_SYS_ERR",
    3392             :                 "A base error occurred."
    3393             :         },
    3394             :         {
    3395             :                 HRES_NTE_SILENT_CONTEXT,
    3396             :                 "HRES_NTE_SILENT_CONTEXT",
    3397             :                 "Provider could not perform the action because the context was acquired as silent."
    3398             :         },
    3399             :         {
    3400             :                 HRES_NTE_TOKEN_KEYSET_STORAGE_FULL,
    3401             :                 "HRES_NTE_TOKEN_KEYSET_STORAGE_FULL",
    3402             :                 "The security token does not have storage space available for an additional container."
    3403             :         },
    3404             :         {
    3405             :                 HRES_NTE_TEMPORARY_PROFILE,
    3406             :                 "HRES_NTE_TEMPORARY_PROFILE",
    3407             :                 "The profile for the user is a temporary profile."
    3408             :         },
    3409             :         {
    3410             :                 HRES_NTE_FIXEDPARAMETER,
    3411             :                 "HRES_NTE_FIXEDPARAMETER",
    3412             :                 "The key parameters could not be set because the configuration service provider (CSP) uses fixed parameters."
    3413             :         },
    3414             :         {
    3415             :                 HRES_NTE_INVALID_HANDLE,
    3416             :                 "HRES_NTE_INVALID_HANDLE",
    3417             :                 "The supplied handle is invalid."
    3418             :         },
    3419             :         {
    3420             :                 HRES_NTE_INVALID_PARAMETER,
    3421             :                 "HRES_NTE_INVALID_PARAMETER",
    3422             :                 "The parameter is incorrect."
    3423             :         },
    3424             :         {
    3425             :                 HRES_NTE_BUFFER_TOO_SMALL,
    3426             :                 "HRES_NTE_BUFFER_TOO_SMALL",
    3427             :                 "The buffer supplied to a function was too small."
    3428             :         },
    3429             :         {
    3430             :                 HRES_NTE_NOT_SUPPORTED,
    3431             :                 "HRES_NTE_NOT_SUPPORTED",
    3432             :                 "The requested operation is not supported."
    3433             :         },
    3434             :         {
    3435             :                 HRES_NTE_NO_MORE_ITEMS,
    3436             :                 "HRES_NTE_NO_MORE_ITEMS",
    3437             :                 "No more data is available."
    3438             :         },
    3439             :         {
    3440             :                 HRES_NTE_BUFFERS_OVERLAP,
    3441             :                 "HRES_NTE_BUFFERS_OVERLAP",
    3442             :                 "The supplied buffers overlap incorrectly."
    3443             :         },
    3444             :         {
    3445             :                 HRES_NTE_DECRYPTION_FAILURE,
    3446             :                 "HRES_NTE_DECRYPTION_FAILURE",
    3447             :                 "The specified data could not be decrypted."
    3448             :         },
    3449             :         {
    3450             :                 HRES_NTE_INTERNAL_ERROR,
    3451             :                 "HRES_NTE_INTERNAL_ERROR",
    3452             :                 "An internal consistency check failed."
    3453             :         },
    3454             :         {
    3455             :                 HRES_NTE_UI_REQUIRED,
    3456             :                 "HRES_NTE_UI_REQUIRED",
    3457             :                 "This operation requires input from the user."
    3458             :         },
    3459             :         {
    3460             :                 HRES_NTE_HMAC_NOT_SUPPORTED,
    3461             :                 "HRES_NTE_HMAC_NOT_SUPPORTED",
    3462             :                 "The cryptographic provider does not support Hash Message Authentication Code (HMAC)."
    3463             :         },
    3464             :         {
    3465             :                 HRES_SEC_E_INSUFFICIENT_MEMORY,
    3466             :                 "HRES_SEC_E_INSUFFICIENT_MEMORY",
    3467             :                 "Not enough memory is available to complete this request."
    3468             :         },
    3469             :         {
    3470             :                 HRES_SEC_E_INVALID_HANDLE,
    3471             :                 "HRES_SEC_E_INVALID_HANDLE",
    3472             :                 "The handle specified is invalid."
    3473             :         },
    3474             :         {
    3475             :                 HRES_SEC_E_UNSUPPORTED_FUNCTION,
    3476             :                 "HRES_SEC_E_UNSUPPORTED_FUNCTION",
    3477             :                 "The function requested is not supported."
    3478             :         },
    3479             :         {
    3480             :                 HRES_SEC_E_TARGET_UNKNOWN,
    3481             :                 "HRES_SEC_E_TARGET_UNKNOWN",
    3482             :                 "The specified target is unknown or unreachable."
    3483             :         },
    3484             :         {
    3485             :                 HRES_SEC_E_INTERNAL_ERROR,
    3486             :                 "HRES_SEC_E_INTERNAL_ERROR",
    3487             :                 "The Local Security Authority (LSA) cannot be contacted."
    3488             :         },
    3489             :         {
    3490             :                 HRES_SEC_E_SECPKG_NOT_FOUND,
    3491             :                 "HRES_SEC_E_SECPKG_NOT_FOUND",
    3492             :                 "The requested security package does not exist."
    3493             :         },
    3494             :         {
    3495             :                 HRES_SEC_E_NOT_OWNER,
    3496             :                 "HRES_SEC_E_NOT_OWNER",
    3497             :                 "The caller is not the owner of the desired credentials."
    3498             :         },
    3499             :         {
    3500             :                 HRES_SEC_E_CANNOT_INSTALL,
    3501             :                 "HRES_SEC_E_CANNOT_INSTALL",
    3502             :                 "The security package failed to initialize and cannot be installed."
    3503             :         },
    3504             :         {
    3505             :                 HRES_SEC_E_INVALID_TOKEN,
    3506             :                 "HRES_SEC_E_INVALID_TOKEN",
    3507             :                 "The token supplied to the function is invalid."
    3508             :         },
    3509             :         {
    3510             :                 HRES_SEC_E_CANNOT_PACK,
    3511             :                 "HRES_SEC_E_CANNOT_PACK",
    3512             :                 "The security package is not able to marshal the logon buffer, so the logon attempt has failed."
    3513             :         },
    3514             :         {
    3515             :                 HRES_SEC_E_QOP_NOT_SUPPORTED,
    3516             :                 "HRES_SEC_E_QOP_NOT_SUPPORTED",
    3517             :                 "The per-message quality of protection is not supported by the security package."
    3518             :         },
    3519             :         {
    3520             :                 HRES_SEC_E_NO_IMPERSONATION,
    3521             :                 "HRES_SEC_E_NO_IMPERSONATION",
    3522             :                 "The security context does not allow impersonation of the client."
    3523             :         },
    3524             :         {
    3525             :                 HRES_SEC_E_LOGON_DENIED,
    3526             :                 "HRES_SEC_E_LOGON_DENIED",
    3527             :                 "The logon attempt failed."
    3528             :         },
    3529             :         {
    3530             :                 HRES_SEC_E_UNKNOWN_CREDENTIALS,
    3531             :                 "HRES_SEC_E_UNKNOWN_CREDENTIALS",
    3532             :                 "The credentials supplied to the package were not recognized."
    3533             :         },
    3534             :         {
    3535             :                 HRES_SEC_E_NO_CREDENTIALS,
    3536             :                 "HRES_SEC_E_NO_CREDENTIALS",
    3537             :                 "No credentials are available in the security package."
    3538             :         },
    3539             :         {
    3540             :                 HRES_SEC_E_MESSAGE_ALTERED,
    3541             :                 "HRES_SEC_E_MESSAGE_ALTERED",
    3542             :                 "The message or signature supplied for verification has been altered."
    3543             :         },
    3544             :         {
    3545             :                 HRES_SEC_E_OUT_OF_SEQUENCE,
    3546             :                 "HRES_SEC_E_OUT_OF_SEQUENCE",
    3547             :                 "The message supplied for verification is out of sequence."
    3548             :         },
    3549             :         {
    3550             :                 HRES_SEC_E_NO_AUTHENTICATING_AUTHORITY,
    3551             :                 "HRES_SEC_E_NO_AUTHENTICATING_AUTHORITY",
    3552             :                 "No authority could be contacted for authentication."
    3553             :         },
    3554             :         {
    3555             :                 HRES_SEC_E_BAD_PKGID,
    3556             :                 "HRES_SEC_E_BAD_PKGID",
    3557             :                 "The requested security package does not exist."
    3558             :         },
    3559             :         {
    3560             :                 HRES_SEC_E_CONTEXT_EXPIRED,
    3561             :                 "HRES_SEC_E_CONTEXT_EXPIRED",
    3562             :                 "The context has expired and can no longer be used."
    3563             :         },
    3564             :         {
    3565             :                 HRES_SEC_E_INCOMPLETE_MESSAGE,
    3566             :                 "HRES_SEC_E_INCOMPLETE_MESSAGE",
    3567             :                 "The supplied message is incomplete. The signature was not verified."
    3568             :         },
    3569             :         {
    3570             :                 HRES_SEC_E_INCOMPLETE_CREDENTIALS,
    3571             :                 "HRES_SEC_E_INCOMPLETE_CREDENTIALS",
    3572             :                 "The credentials supplied were not complete and could not be verified. The context could not be initialized."
    3573             :         },
    3574             :         {
    3575             :                 HRES_SEC_E_BUFFER_TOO_SMALL,
    3576             :                 "HRES_SEC_E_BUFFER_TOO_SMALL",
    3577             :                 "The buffers supplied to a function was too small."
    3578             :         },
    3579             :         {
    3580             :                 HRES_SEC_E_WRONG_PRINCIPAL,
    3581             :                 "HRES_SEC_E_WRONG_PRINCIPAL",
    3582             :                 "The target principal name is incorrect."
    3583             :         },
    3584             :         {
    3585             :                 HRES_SEC_E_TIME_SKEW,
    3586             :                 "HRES_SEC_E_TIME_SKEW",
    3587             :                 "The clocks on the client and server machines are skewed."
    3588             :         },
    3589             :         {
    3590             :                 HRES_SEC_E_UNTRUSTED_ROOT,
    3591             :                 "HRES_SEC_E_UNTRUSTED_ROOT",
    3592             :                 "The certificate chain was issued by an authority that is not trusted."
    3593             :         },
    3594             :         {
    3595             :                 HRES_SEC_E_ILLEGAL_MESSAGE,
    3596             :                 "HRES_SEC_E_ILLEGAL_MESSAGE",
    3597             :                 "The message received was unexpected or badly formatted."
    3598             :         },
    3599             :         {
    3600             :                 HRES_SEC_E_CERT_UNKNOWN,
    3601             :                 "HRES_SEC_E_CERT_UNKNOWN",
    3602             :                 "An unknown error occurred while processing the certificate."
    3603             :         },
    3604             :         {
    3605             :                 HRES_SEC_E_CERT_EXPIRED,
    3606             :                 "HRES_SEC_E_CERT_EXPIRED",
    3607             :                 "The received certificate has expired."
    3608             :         },
    3609             :         {
    3610             :                 HRES_SEC_E_ENCRYPT_FAILURE,
    3611             :                 "HRES_SEC_E_ENCRYPT_FAILURE",
    3612             :                 "The specified data could not be encrypted."
    3613             :         },
    3614             :         {
    3615             :                 HRES_SEC_E_DECRYPT_FAILURE,
    3616             :                 "HRES_SEC_E_DECRYPT_FAILURE",
    3617             :                 "The specified data could not be decrypted."
    3618             :         },
    3619             :         {
    3620             :                 HRES_SEC_E_ALGORITHM_MISMATCH,
    3621             :                 "HRES_SEC_E_ALGORITHM_MISMATCH",
    3622             :                 "The client and server cannot communicate because they do not possess a common algorithm."
    3623             :         },
    3624             :         {
    3625             :                 HRES_SEC_E_SECURITY_QOS_FAILED,
    3626             :                 "HRES_SEC_E_SECURITY_QOS_FAILED",
    3627             :                 "The security context could not be established due to a failure in the requested quality of service (for example, mutual authentication or delegation)."
    3628             :         },
    3629             :         {
    3630             :                 HRES_SEC_E_UNFINISHED_CONTEXT_DELETED,
    3631             :                 "HRES_SEC_E_UNFINISHED_CONTEXT_DELETED",
    3632             :                 "A security context was deleted before the context was completed. This is considered a logon failure."
    3633             :         },
    3634             :         {
    3635             :                 HRES_SEC_E_NO_TGT_REPLY,
    3636             :                 "HRES_SEC_E_NO_TGT_REPLY",
    3637             :                 "The client is trying to negotiate a context and the server requires user-to-user but did not send a ticket granting ticket (TGT) reply."
    3638             :         },
    3639             :         {
    3640             :                 HRES_SEC_E_NO_IP_ADDRESSES,
    3641             :                 "HRES_SEC_E_NO_IP_ADDRESSES",
    3642             :                 "Unable to accomplish the requested task because the local machine does not have an IP addresses."
    3643             :         },
    3644             :         {
    3645             :                 HRES_SEC_E_WRONG_CREDENTIAL_HANDLE,
    3646             :                 "HRES_SEC_E_WRONG_CREDENTIAL_HANDLE",
    3647             :                 "The supplied credential handle does not match the credential associated with the security context."
    3648             :         },
    3649             :         {
    3650             :                 HRES_SEC_E_CRYPTO_SYSTEM_INVALID,
    3651             :                 "HRES_SEC_E_CRYPTO_SYSTEM_INVALID",
    3652             :                 "The cryptographic system or checksum function is invalid because a required function is unavailable."
    3653             :         },
    3654             :         {
    3655             :                 HRES_SEC_E_MAX_REFERRALS_EXCEEDED,
    3656             :                 "HRES_SEC_E_MAX_REFERRALS_EXCEEDED",
    3657             :                 "The number of maximum ticket referrals has been exceeded."
    3658             :         },
    3659             :         {
    3660             :                 HRES_SEC_E_MUST_BE_KDC,
    3661             :                 "HRES_SEC_E_MUST_BE_KDC",
    3662             :                 "The local machine must be a Kerberos domain controller (KDC), and it is not."
    3663             :         },
    3664             :         {
    3665             :                 HRES_SEC_E_STRONG_CRYPTO_NOT_SUPPORTED,
    3666             :                 "HRES_SEC_E_STRONG_CRYPTO_NOT_SUPPORTED",
    3667             :                 "The other end of the security negotiation requires strong cryptographics, but it is not supported on the local machine."
    3668             :         },
    3669             :         {
    3670             :                 HRES_SEC_E_TOO_MANY_PRINCIPALS,
    3671             :                 "HRES_SEC_E_TOO_MANY_PRINCIPALS",
    3672             :                 "The KDC reply contained more than one principal name."
    3673             :         },
    3674             :         {
    3675             :                 HRES_SEC_E_NO_PA_DATA,
    3676             :                 "HRES_SEC_E_NO_PA_DATA",
    3677             :                 "Expected to find PA data for a hint of what etype to use, but it was not found."
    3678             :         },
    3679             :         {
    3680             :                 HRES_SEC_E_PKINIT_NAME_MISMATCH,
    3681             :                 "HRES_SEC_E_PKINIT_NAME_MISMATCH",
    3682             :                 "The client certificate does not contain a valid user principal name (UPN), or does not match the client name in the logon request. Contact your administrator."
    3683             :         },
    3684             :         {
    3685             :                 HRES_SEC_E_SMARTCARD_LOGON_REQUIRED,
    3686             :                 "HRES_SEC_E_SMARTCARD_LOGON_REQUIRED",
    3687             :                 "Smart card logon is required and was not used."
    3688             :         },
    3689             :         {
    3690             :                 HRES_SEC_E_SHUTDOWN_IN_PROGRESS,
    3691             :                 "HRES_SEC_E_SHUTDOWN_IN_PROGRESS",
    3692             :                 "A system shutdown is in progress."
    3693             :         },
    3694             :         {
    3695             :                 HRES_SEC_E_KDC_INVALID_REQUEST,
    3696             :                 "HRES_SEC_E_KDC_INVALID_REQUEST",
    3697             :                 "An invalid request was sent to the KDC."
    3698             :         },
    3699             :         {
    3700             :                 HRES_SEC_E_KDC_UNABLE_TO_REFER,
    3701             :                 "HRES_SEC_E_KDC_UNABLE_TO_REFER",
    3702             :                 "The KDC was unable to generate a referral for the service requested."
    3703             :         },
    3704             :         {
    3705             :                 HRES_SEC_E_KDC_UNKNOWN_ETYPE,
    3706             :                 "HRES_SEC_E_KDC_UNKNOWN_ETYPE",
    3707             :                 "The encryption type requested is not supported by the KDC."
    3708             :         },
    3709             :         {
    3710             :                 HRES_SEC_E_UNSUPPORTED_PREAUTH,
    3711             :                 "HRES_SEC_E_UNSUPPORTED_PREAUTH",
    3712             :                 "An unsupported pre-authentication mechanism was presented to the Kerberos package."
    3713             :         },
    3714             :         {
    3715             :                 HRES_SEC_E_DELEGATION_REQUIRED,
    3716             :                 "HRES_SEC_E_DELEGATION_REQUIRED",
    3717             :                 "The requested operation cannot be completed. The computer must be trusted for delegation, and the current user account must be configured to allow delegation."
    3718             :         },
    3719             :         {
    3720             :                 HRES_SEC_E_BAD_BINDINGS,
    3721             :                 "HRES_SEC_E_BAD_BINDINGS",
    3722             :                 "Client's supplied Security Support Provider Interface (SSPI) channel bindings were incorrect."
    3723             :         },
    3724             :         {
    3725             :                 HRES_SEC_E_MULTIPLE_ACCOUNTS,
    3726             :                 "HRES_SEC_E_MULTIPLE_ACCOUNTS",
    3727             :                 "The received certificate was mapped to multiple accounts."
    3728             :         },
    3729             :         {
    3730             :                 HRES_SEC_E_NO_KERB_KEY,
    3731             :                 "HRES_SEC_E_NO_KERB_KEY",
    3732             :                 "No Kerberos key was found."
    3733             :         },
    3734             :         {
    3735             :                 HRES_SEC_E_CERT_WRONG_USAGE,
    3736             :                 "HRES_SEC_E_CERT_WRONG_USAGE",
    3737             :                 "The certificate is not valid for the requested usage."
    3738             :         },
    3739             :         {
    3740             :                 HRES_SEC_E_DOWNGRADE_DETECTED,
    3741             :                 "HRES_SEC_E_DOWNGRADE_DETECTED",
    3742             :                 "The system detected a possible attempt to compromise security. Ensure that you can contact the server that authenticated you."
    3743             :         },
    3744             :         {
    3745             :                 HRES_SEC_E_SMARTCARD_CERT_REVOKED,
    3746             :                 "HRES_SEC_E_SMARTCARD_CERT_REVOKED",
    3747             :                 "The smart card certificate used for authentication has been revoked. Contact your system administrator. The event log might contain additional information."
    3748             :         },
    3749             :         {
    3750             :                 HRES_SEC_E_ISSUING_CA_UNTRUSTED,
    3751             :                 "HRES_SEC_E_ISSUING_CA_UNTRUSTED",
    3752             :                 "An untrusted certification authority (CA) was detected while processing the smart card certificate used for authentication. Contact your system administrator."
    3753             :         },
    3754             :         {
    3755             :                 HRES_SEC_E_REVOCATION_OFFLINE_C,
    3756             :                 "HRES_SEC_E_REVOCATION_OFFLINE_C",
    3757             :                 "The revocation status of the smart card certificate used for authentication could not be determined. Contact your system administrator."
    3758             :         },
    3759             :         {
    3760             :                 HRES_SEC_E_PKINIT_CLIENT_FAILURE,
    3761             :                 "HRES_SEC_E_PKINIT_CLIENT_FAILURE",
    3762             :                 "The smart card certificate used for authentication was not trusted. Contact your system administrator."
    3763             :         },
    3764             :         {
    3765             :                 HRES_SEC_E_SMARTCARD_CERT_EXPIRED,
    3766             :                 "HRES_SEC_E_SMARTCARD_CERT_EXPIRED",
    3767             :                 "The smart card certificate used for authentication has expired. Contact your system administrator."
    3768             :         },
    3769             :         {
    3770             :                 HRES_SEC_E_NO_S4U_PROT_SUPPORT,
    3771             :                 "HRES_SEC_E_NO_S4U_PROT_SUPPORT",
    3772             :                 "The Kerberos subsystem encountered an error. A service for user protocol requests was made against a domain controller that does not support services for users."
    3773             :         },
    3774             :         {
    3775             :                 HRES_SEC_E_CROSSREALM_DELEGATION_FAILURE,
    3776             :                 "HRES_SEC_E_CROSSREALM_DELEGATION_FAILURE",
    3777             :                 "An attempt was made by this server to make a Kerberos-constrained delegation request for a target outside the server's realm. This is not supported and indicates a misconfiguration on this server's allowed-to-delegate-to list. Contact your administrator."
    3778             :         },
    3779             :         {
    3780             :                 HRES_SEC_E_REVOCATION_OFFLINE_KDC,
    3781             :                 "HRES_SEC_E_REVOCATION_OFFLINE_KDC",
    3782             :                 "The revocation status of the domain controller certificate used for smart card authentication could not be determined. The system event log contains additional information. Contact your system administrator."
    3783             :         },
    3784             :         {
    3785             :                 HRES_SEC_E_ISSUING_CA_UNTRUSTED_KDC,
    3786             :                 "HRES_SEC_E_ISSUING_CA_UNTRUSTED_KDC",
    3787             :                 "An untrusted CA was detected while processing the domain controller certificate used for authentication. The system event log contains additional information. Contact your system administrator."
    3788             :         },
    3789             :         {
    3790             :                 HRES_SEC_E_KDC_CERT_EXPIRED,
    3791             :                 "HRES_SEC_E_KDC_CERT_EXPIRED",
    3792             :                 "The domain controller certificate used for smart card logon has expired. Contact your system administrator with the contents of your system event log."
    3793             :         },
    3794             :         {
    3795             :                 HRES_SEC_E_KDC_CERT_REVOKED,
    3796             :                 "HRES_SEC_E_KDC_CERT_REVOKED",
    3797             :                 "The domain controller certificate used for smart card logon has been revoked. Contact your system administrator with the contents of your system event log."
    3798             :         },
    3799             :         {
    3800             :                 HRES_SEC_E_INVALID_PARAMETER,
    3801             :                 "HRES_SEC_E_INVALID_PARAMETER",
    3802             :                 "One or more of the parameters passed to the function were invalid."
    3803             :         },
    3804             :         {
    3805             :                 HRES_SEC_E_DELEGATION_POLICY,
    3806             :                 "HRES_SEC_E_DELEGATION_POLICY",
    3807             :                 "The client policy does not allow credential delegation to the target server."
    3808             :         },
    3809             :         {
    3810             :                 HRES_SEC_E_POLICY_NLTM_ONLY,
    3811             :                 "HRES_SEC_E_POLICY_NLTM_ONLY",
    3812             :                 "The client policy does not allow credential delegation to the target server with NLTM only authentication."
    3813             :         },
    3814             :         {
    3815             :                 HRES_CRYPT_E_MSG_ERROR,
    3816             :                 "HRES_CRYPT_E_MSG_ERROR",
    3817             :                 "An error occurred while performing an operation on a cryptographic message."
    3818             :         },
    3819             :         {
    3820             :                 HRES_CRYPT_E_UNKNOWN_ALGO,
    3821             :                 "HRES_CRYPT_E_UNKNOWN_ALGO",
    3822             :                 "Unknown cryptographic algorithm."
    3823             :         },
    3824             :         {
    3825             :                 HRES_CRYPT_E_OID_FORMAT,
    3826             :                 "HRES_CRYPT_E_OID_FORMAT",
    3827             :                 "The object identifier is poorly formatted."
    3828             :         },
    3829             :         {
    3830             :                 HRES_CRYPT_E_INVALID_MSG_TYPE,
    3831             :                 "HRES_CRYPT_E_INVALID_MSG_TYPE",
    3832             :                 "Invalid cryptographic message type."
    3833             :         },
    3834             :         {
    3835             :                 HRES_CRYPT_E_UNEXPECTED_ENCODING,
    3836             :                 "HRES_CRYPT_E_UNEXPECTED_ENCODING",
    3837             :                 "Unexpected cryptographic message encoding."
    3838             :         },
    3839             :         {
    3840             :                 HRES_CRYPT_E_AUTH_ATTR_MISSING,
    3841             :                 "HRES_CRYPT_E_AUTH_ATTR_MISSING",
    3842             :                 "The cryptographic message does not contain an expected authenticated attribute."
    3843             :         },
    3844             :         {
    3845             :                 HRES_CRYPT_E_HASH_VALUE,
    3846             :                 "HRES_CRYPT_E_HASH_VALUE",
    3847             :                 "The hash value is not correct."
    3848             :         },
    3849             :         {
    3850             :                 HRES_CRYPT_E_INVALID_INDEX,
    3851             :                 "HRES_CRYPT_E_INVALID_INDEX",
    3852             :                 "The index value is not valid."
    3853             :         },
    3854             :         {
    3855             :                 HRES_CRYPT_E_ALREADY_DECRYPTED,
    3856             :                 "HRES_CRYPT_E_ALREADY_DECRYPTED",
    3857             :                 "The content of the cryptographic message has already been decrypted."
    3858             :         },
    3859             :         {
    3860             :                 HRES_CRYPT_E_NOT_DECRYPTED,
    3861             :                 "HRES_CRYPT_E_NOT_DECRYPTED",
    3862             :                 "The content of the cryptographic message has not been decrypted yet."
    3863             :         },
    3864             :         {
    3865             :                 HRES_CRYPT_E_RECIPIENT_NOT_FOUND,
    3866             :                 "HRES_CRYPT_E_RECIPIENT_NOT_FOUND",
    3867             :                 "The enveloped-data message does not contain the specified recipient."
    3868             :         },
    3869             :         {
    3870             :                 HRES_CRYPT_E_CONTROL_TYPE,
    3871             :                 "HRES_CRYPT_E_CONTROL_TYPE",
    3872             :                 "Invalid control type."
    3873             :         },
    3874             :         {
    3875             :                 HRES_CRYPT_E_ISSUER_SERIALNUMBER,
    3876             :                 "HRES_CRYPT_E_ISSUER_SERIALNUMBER",
    3877             :                 "Invalid issuer or serial number."
    3878             :         },
    3879             :         {
    3880             :                 HRES_CRYPT_E_SIGNER_NOT_FOUND,
    3881             :                 "HRES_CRYPT_E_SIGNER_NOT_FOUND",
    3882             :                 "Cannot find the original signer."
    3883             :         },
    3884             :         {
    3885             :                 HRES_CRYPT_E_ATTRIBUTES_MISSING,
    3886             :                 "HRES_CRYPT_E_ATTRIBUTES_MISSING",
    3887             :                 "The cryptographic message does not contain all of the requested attributes."
    3888             :         },
    3889             :         {
    3890             :                 HRES_CRYPT_E_STREAM_MSG_NOT_READY,
    3891             :                 "HRES_CRYPT_E_STREAM_MSG_NOT_READY",
    3892             :                 "The streamed cryptographic message is not ready to return data."
    3893             :         },
    3894             :         {
    3895             :                 HRES_CRYPT_E_STREAM_INSUFFICIENT_DATA,
    3896             :                 "HRES_CRYPT_E_STREAM_INSUFFICIENT_DATA",
    3897             :                 "The streamed cryptographic message requires more data to complete the decode operation."
    3898             :         },
    3899             :         {
    3900             :                 HRES_CRYPT_E_BAD_LEN,
    3901             :                 "HRES_CRYPT_E_BAD_LEN",
    3902             :                 "The length specified for the output data was insufficient."
    3903             :         },
    3904             :         {
    3905             :                 HRES_CRYPT_E_BAD_ENCODE,
    3906             :                 "HRES_CRYPT_E_BAD_ENCODE",
    3907             :                 "An error occurred during the encode or decode operation."
    3908             :         },
    3909             :         {
    3910             :                 HRES_CRYPT_E_FILE_ERROR,
    3911             :                 "HRES_CRYPT_E_FILE_ERROR",
    3912             :                 "An error occurred while reading or writing to a file."
    3913             :         },
    3914             :         {
    3915             :                 HRES_CRYPT_E_NOT_FOUND,
    3916             :                 "HRES_CRYPT_E_NOT_FOUND",
    3917             :                 "Cannot find object or property."
    3918             :         },
    3919             :         {
    3920             :                 HRES_CRYPT_E_EXISTS,
    3921             :                 "HRES_CRYPT_E_EXISTS",
    3922             :                 "The object or property already exists."
    3923             :         },
    3924             :         {
    3925             :                 HRES_CRYPT_E_NO_PROVIDER,
    3926             :                 "HRES_CRYPT_E_NO_PROVIDER",
    3927             :                 "No provider was specified for the store or object."
    3928             :         },
    3929             :         {
    3930             :                 HRES_CRYPT_E_SELF_SIGNED,
    3931             :                 "HRES_CRYPT_E_SELF_SIGNED",
    3932             :                 "The specified certificate is self-signed."
    3933             :         },
    3934             :         {
    3935             :                 HRES_CRYPT_E_DELETED_PREV,
    3936             :                 "HRES_CRYPT_E_DELETED_PREV",
    3937             :                 "The previous certificate or certificate revocation list (CRL) context was deleted."
    3938             :         },
    3939             :         {
    3940             :                 HRES_CRYPT_E_NO_MATCH,
    3941             :                 "HRES_CRYPT_E_NO_MATCH",
    3942             :                 "Cannot find the requested object."
    3943             :         },
    3944             :         {
    3945             :                 HRES_CRYPT_E_UNEXPECTED_MSG_TYPE,
    3946             :                 "HRES_CRYPT_E_UNEXPECTED_MSG_TYPE",
    3947             :                 "The certificate does not have a property that references a private key."
    3948             :         },
    3949             :         {
    3950             :                 HRES_CRYPT_E_NO_KEY_PROPERTY,
    3951             :                 "HRES_CRYPT_E_NO_KEY_PROPERTY",
    3952             :                 "Cannot find the certificate and private key for decryption."
    3953             :         },
    3954             :         {
    3955             :                 HRES_CRYPT_E_NO_DECRYPT_CERT,
    3956             :                 "HRES_CRYPT_E_NO_DECRYPT_CERT",
    3957             :                 "Cannot find the certificate and private key to use for decryption."
    3958             :         },
    3959             :         {
    3960             :                 HRES_CRYPT_E_BAD_MSG,
    3961             :                 "HRES_CRYPT_E_BAD_MSG",
    3962             :                 "Not a cryptographic message or the cryptographic message is not formatted correctly."
    3963             :         },
    3964             :         {
    3965             :                 HRES_CRYPT_E_NO_SIGNER,
    3966             :                 "HRES_CRYPT_E_NO_SIGNER",
    3967             :                 "The signed cryptographic message does not have a signer for the specified signer index."
    3968             :         },
    3969             :         {
    3970             :                 HRES_CRYPT_E_PENDING_CLOSE,
    3971             :                 "HRES_CRYPT_E_PENDING_CLOSE",
    3972             :                 "Final closure is pending until additional frees or closes."
    3973             :         },
    3974             :         {
    3975             :                 HRES_CRYPT_E_REVOKED,
    3976             :                 "HRES_CRYPT_E_REVOKED",
    3977             :                 "The certificate is revoked."
    3978             :         },
    3979             :         {
    3980             :                 HRES_CRYPT_E_NO_REVOCATION_DLL,
    3981             :                 "HRES_CRYPT_E_NO_REVOCATION_DLL",
    3982             :                 "No DLL or exported function was found to verify revocation."
    3983             :         },
    3984             :         {
    3985             :                 HRES_CRYPT_E_NO_REVOCATION_CHECK,
    3986             :                 "HRES_CRYPT_E_NO_REVOCATION_CHECK",
    3987             :                 "The revocation function was unable to check revocation for the certificate."
    3988             :         },
    3989             :         {
    3990             :                 HRES_CRYPT_E_REVOCATION_OFFLINE,
    3991             :                 "HRES_CRYPT_E_REVOCATION_OFFLINE",
    3992             :                 "The revocation function was unable to check revocation because the revocation server was offline."
    3993             :         },
    3994             :         {
    3995             :                 HRES_CRYPT_E_NOT_IN_REVOCATION_DATABASE,
    3996             :                 "HRES_CRYPT_E_NOT_IN_REVOCATION_DATABASE",
    3997             :                 "The certificate is not in the revocation server's database."
    3998             :         },
    3999             :         {
    4000             :                 HRES_CRYPT_E_INVALID_NUMERIC_STRING,
    4001             :                 "HRES_CRYPT_E_INVALID_NUMERIC_STRING",
    4002             :                 "The string contains a non-numeric character."
    4003             :         },
    4004             :         {
    4005             :                 HRES_CRYPT_E_INVALID_PRINTABLE_STRING,
    4006             :                 "HRES_CRYPT_E_INVALID_PRINTABLE_STRING",
    4007             :                 "The string contains a nonprintable character."
    4008             :         },
    4009             :         {
    4010             :                 HRES_CRYPT_E_INVALID_IA5_STRING,
    4011             :                 "HRES_CRYPT_E_INVALID_IA5_STRING",
    4012             :                 "The string contains a character not in the 7-bit ASCII character set."
    4013             :         },
    4014             :         {
    4015             :                 HRES_CRYPT_E_INVALID_X500_STRING,
    4016             :                 "HRES_CRYPT_E_INVALID_X500_STRING",
    4017             :                 "The string contains an invalid X500 name attribute key, object identifier (OID), value, or delimiter."
    4018             :         },
    4019             :         {
    4020             :                 HRES_CRYPT_E_NOT_CHAR_STRING,
    4021             :                 "HRES_CRYPT_E_NOT_CHAR_STRING",
    4022             :                 "The dwValueType for the CERT_NAME_VALUE is not one of the character strings. Most likely it is either a CERT_RDN_ENCODED_BLOB or CERT_TDN_OCTED_STRING."
    4023             :         },
    4024             :         {
    4025             :                 HRES_CRYPT_E_FILERESIZED,
    4026             :                 "HRES_CRYPT_E_FILERESIZED",
    4027             :                 "The Put operation cannot continue. The file needs to be resized. However, there is already a signature present. A complete signing operation must be done."
    4028             :         },
    4029             :         {
    4030             :                 HRES_CRYPT_E_SECURITY_SETTINGS,
    4031             :                 "HRES_CRYPT_E_SECURITY_SETTINGS",
    4032             :                 "The cryptographic operation failed due to a local security option setting."
    4033             :         },
    4034             :         {
    4035             :                 HRES_CRYPT_E_NO_VERIFY_USAGE_DLL,
    4036             :                 "HRES_CRYPT_E_NO_VERIFY_USAGE_DLL",
    4037             :                 "No DLL or exported function was found to verify subject usage."
    4038             :         },
    4039             :         {
    4040             :                 HRES_CRYPT_E_NO_VERIFY_USAGE_CHECK,
    4041             :                 "HRES_CRYPT_E_NO_VERIFY_USAGE_CHECK",
    4042             :                 "The called function was unable to perform a usage check on the subject."
    4043             :         },
    4044             :         {
    4045             :                 HRES_CRYPT_E_VERIFY_USAGE_OFFLINE,
    4046             :                 "HRES_CRYPT_E_VERIFY_USAGE_OFFLINE",
    4047             :                 "The called function was unable to complete the usage check because the server was offline."
    4048             :         },
    4049             :         {
    4050             :                 HRES_CRYPT_E_NOT_IN_CTL,
    4051             :                 "HRES_CRYPT_E_NOT_IN_CTL",
    4052             :                 "The subject was not found in a certificate trust list (CTL)."
    4053             :         },
    4054             :         {
    4055             :                 HRES_CRYPT_E_NO_TRUSTED_SIGNER,
    4056             :                 "HRES_CRYPT_E_NO_TRUSTED_SIGNER",
    4057             :                 "None of the signers of the cryptographic message or certificate trust list is trusted."
    4058             :         },
    4059             :         {
    4060             :                 HRES_CRYPT_E_MISSING_PUBKEY_PARA,
    4061             :                 "HRES_CRYPT_E_MISSING_PUBKEY_PARA",
    4062             :                 "The public key's algorithm parameters are missing."
    4063             :         },
    4064             :         {
    4065             :                 HRES_CRYPT_E_OSS_ERROR,
    4066             :                 "HRES_CRYPT_E_OSS_ERROR",
    4067             :                 "OSS Certificate encode/decode error code base."
    4068             :         },
    4069             :         {
    4070             :                 HRES_OSS_MORE_BUF,
    4071             :                 "HRES_OSS_MORE_BUF",
    4072             :                 "OSS ASN.1 Error: Output Buffer is too small."
    4073             :         },
    4074             :         {
    4075             :                 HRES_OSS_NEGATIVE_UINTEGER,
    4076             :                 "HRES_OSS_NEGATIVE_UINTEGER",
    4077             :                 "OSS ASN.1 Error: Signed integer is encoded as a unsigned integer."
    4078             :         },
    4079             :         {
    4080             :                 HRES_OSS_PDU_RANGE,
    4081             :                 "HRES_OSS_PDU_RANGE",
    4082             :                 "OSS ASN.1 Error: Unknown ASN.1 data type."
    4083             :         },
    4084             :         {
    4085             :                 HRES_OSS_MORE_INPUT,
    4086             :                 "HRES_OSS_MORE_INPUT",
    4087             :                 "OSS ASN.1 Error: Output buffer is too small; the decoded data has been truncated."
    4088             :         },
    4089             :         {
    4090             :                 HRES_OSS_DATA_ERROR,
    4091             :                 "HRES_OSS_DATA_ERROR",
    4092             :                 "OSS ASN.1 Error: Invalid data."
    4093             :         },
    4094             :         {
    4095             :                 HRES_OSS_BAD_ARG,
    4096             :                 "HRES_OSS_BAD_ARG",
    4097             :                 "OSS ASN.1 Error: Invalid argument."
    4098             :         },
    4099             :         {
    4100             :                 HRES_OSS_BAD_VERSION,
    4101             :                 "HRES_OSS_BAD_VERSION",
    4102             :                 "OSS ASN.1 Error: Encode/Decode version mismatch."
    4103             :         },
    4104             :         {
    4105             :                 HRES_OSS_OUT_MEMORY,
    4106             :                 "HRES_OSS_OUT_MEMORY",
    4107             :                 "OSS ASN.1 Error: Out of memory."
    4108             :         },
    4109             :         {
    4110             :                 HRES_OSS_PDU_MISMATCH,
    4111             :                 "HRES_OSS_PDU_MISMATCH",
    4112             :                 "OSS ASN.1 Error: Encode/Decode error."
    4113             :         },
    4114             :         {
    4115             :                 HRES_OSS_LIMITED,
    4116             :                 "HRES_OSS_LIMITED",
    4117             :                 "OSS ASN.1 Error: Internal error."
    4118             :         },
    4119             :         {
    4120             :                 HRES_OSS_BAD_PTR,
    4121             :                 "HRES_OSS_BAD_PTR",
    4122             :                 "OSS ASN.1 Error: Invalid data."
    4123             :         },
    4124             :         {
    4125             :                 HRES_OSS_BAD_TIME,
    4126             :                 "HRES_OSS_BAD_TIME",
    4127             :                 "OSS ASN.1 Error: Invalid data."
    4128             :         },
    4129             :         {
    4130             :                 HRES_OSS_INDEFINITE_NOT_SUPPORTED,
    4131             :                 "HRES_OSS_INDEFINITE_NOT_SUPPORTED",
    4132             :                 "OSS ASN.1 Error: Unsupported BER indefinite-length encoding."
    4133             :         },
    4134             :         {
    4135             :                 HRES_OSS_MEM_ERROR,
    4136             :                 "HRES_OSS_MEM_ERROR",
    4137             :                 "OSS ASN.1 Error: Access violation."
    4138             :         },
    4139             :         {
    4140             :                 HRES_OSS_BAD_TABLE,
    4141             :                 "HRES_OSS_BAD_TABLE",
    4142             :                 "OSS ASN.1 Error: Invalid data."
    4143             :         },
    4144             :         {
    4145             :                 HRES_OSS_TOO_LONG,
    4146             :                 "HRES_OSS_TOO_LONG",
    4147             :                 "OSS ASN.1 Error: Invalid data."
    4148             :         },
    4149             :         {
    4150             :                 HRES_OSS_CONSTRAINT_VIOLATED,
    4151             :                 "HRES_OSS_CONSTRAINT_VIOLATED",
    4152             :                 "OSS ASN.1 Error: Invalid data."
    4153             :         },
    4154             :         {
    4155             :                 HRES_OSS_FATAL_ERROR,
    4156             :                 "HRES_OSS_FATAL_ERROR",
    4157             :                 "OSS ASN.1 Error: Internal error."
    4158             :         },
    4159             :         {
    4160             :                 HRES_OSS_ACCESS_SERIALIZATION_ERROR,
    4161             :                 "HRES_OSS_ACCESS_SERIALIZATION_ERROR",
    4162             :                 "OSS ASN.1 Error: Multithreading conflict."
    4163             :         },
    4164             :         {
    4165             :                 HRES_OSS_NULL_TBL,
    4166             :                 "HRES_OSS_NULL_TBL",
    4167             :                 "OSS ASN.1 Error: Invalid data."
    4168             :         },
    4169             :         {
    4170             :                 HRES_OSS_NULL_FCN,
    4171             :                 "HRES_OSS_NULL_FCN",
    4172             :                 "OSS ASN.1 Error: Invalid data."
    4173             :         },
    4174             :         {
    4175             :                 HRES_OSS_BAD_ENCRULES,
    4176             :                 "HRES_OSS_BAD_ENCRULES",
    4177             :                 "OSS ASN.1 Error: Invalid data."
    4178             :         },
    4179             :         {
    4180             :                 HRES_OSS_UNAVAIL_ENCRULES,
    4181             :                 "HRES_OSS_UNAVAIL_ENCRULES",
    4182             :                 "OSS ASN.1 Error: Encode/Decode function not implemented."
    4183             :         },
    4184             :         {
    4185             :                 HRES_OSS_CANT_OPEN_TRACE_WINDOW,
    4186             :                 "HRES_OSS_CANT_OPEN_TRACE_WINDOW",
    4187             :                 "OSS ASN.1 Error: Trace file error."
    4188             :         },
    4189             :         {
    4190             :                 HRES_OSS_UNIMPLEMENTED,
    4191             :                 "HRES_OSS_UNIMPLEMENTED",
    4192             :                 "OSS ASN.1 Error: Function not implemented."
    4193             :         },
    4194             :         {
    4195             :                 HRES_OSS_OID_DLL_NOT_LINKED,
    4196             :                 "HRES_OSS_OID_DLL_NOT_LINKED",
    4197             :                 "OSS ASN.1 Error: Program link error."
    4198             :         },
    4199             :         {
    4200             :                 HRES_OSS_CANT_OPEN_TRACE_FILE,
    4201             :                 "HRES_OSS_CANT_OPEN_TRACE_FILE",
    4202             :                 "OSS ASN.1 Error: Trace file error."
    4203             :         },
    4204             :         {
    4205             :                 HRES_OSS_TRACE_FILE_ALREADY_OPEN,
    4206             :                 "HRES_OSS_TRACE_FILE_ALREADY_OPEN",
    4207             :                 "OSS ASN.1 Error: Trace file error."
    4208             :         },
    4209             :         {
    4210             :                 HRES_OSS_TABLE_MISMATCH,
    4211             :                 "HRES_OSS_TABLE_MISMATCH",
    4212             :                 "OSS ASN.1 Error: Invalid data."
    4213             :         },
    4214             :         {
    4215             :                 HRES_OSS_TYPE_NOT_SUPPORTED,
    4216             :                 "HRES_OSS_TYPE_NOT_SUPPORTED",
    4217             :                 "OSS ASN.1 Error: Invalid data."
    4218             :         },
    4219             :         {
    4220             :                 HRES_OSS_REAL_DLL_NOT_LINKED,
    4221             :                 "HRES_OSS_REAL_DLL_NOT_LINKED",
    4222             :                 "OSS ASN.1 Error: Program link error."
    4223             :         },
    4224             :         {
    4225             :                 HRES_OSS_REAL_CODE_NOT_LINKED,
    4226             :                 "HRES_OSS_REAL_CODE_NOT_LINKED",
    4227             :                 "OSS ASN.1 Error: Program link error."
    4228             :         },
    4229             :         {
    4230             :                 HRES_OSS_OUT_OF_RANGE,
    4231             :                 "HRES_OSS_OUT_OF_RANGE",
    4232             :                 "OSS ASN.1 Error: Program link error."
    4233             :         },
    4234             :         {
    4235             :                 HRES_OSS_COPIER_DLL_NOT_LINKED,
    4236             :                 "HRES_OSS_COPIER_DLL_NOT_LINKED",
    4237             :                 "OSS ASN.1 Error: Program link error."
    4238             :         },
    4239             :         {
    4240             :                 HRES_OSS_CONSTRAINT_DLL_NOT_LINKED,
    4241             :                 "HRES_OSS_CONSTRAINT_DLL_NOT_LINKED",
    4242             :                 "OSS ASN.1 Error: Program link error."
    4243             :         },
    4244             :         {
    4245             :                 HRES_OSS_COMPARATOR_DLL_NOT_LINKED,
    4246             :                 "HRES_OSS_COMPARATOR_DLL_NOT_LINKED",
    4247             :                 "OSS ASN.1 Error: Program link error."
    4248             :         },
    4249             :         {
    4250             :                 HRES_OSS_COMPARATOR_CODE_NOT_LINKED,
    4251             :                 "HRES_OSS_COMPARATOR_CODE_NOT_LINKED",
    4252             :                 "OSS ASN.1 Error: Program link error."
    4253             :         },
    4254             :         {
    4255             :                 HRES_OSS_MEM_MGR_DLL_NOT_LINKED,
    4256             :                 "HRES_OSS_MEM_MGR_DLL_NOT_LINKED",
    4257             :                 "OSS ASN.1 Error: Program link error."
    4258             :         },
    4259             :         {
    4260             :                 HRES_OSS_PDV_DLL_NOT_LINKED,
    4261             :                 "HRES_OSS_PDV_DLL_NOT_LINKED",
    4262             :                 "OSS ASN.1 Error: Program link error."
    4263             :         },
    4264             :         {
    4265             :                 HRES_OSS_PDV_CODE_NOT_LINKED,
    4266             :                 "HRES_OSS_PDV_CODE_NOT_LINKED",
    4267             :                 "OSS ASN.1 Error: Program link error."
    4268             :         },
    4269             :         {
    4270             :                 HRES_OSS_API_DLL_NOT_LINKED,
    4271             :                 "HRES_OSS_API_DLL_NOT_LINKED",
    4272             :                 "OSS ASN.1 Error: Program link error."
    4273             :         },
    4274             :         {
    4275             :                 HRES_OSS_BERDER_DLL_NOT_LINKED,
    4276             :                 "HRES_OSS_BERDER_DLL_NOT_LINKED",
    4277             :                 "OSS ASN.1 Error: Program link error."
    4278             :         },
    4279             :         {
    4280             :                 HRES_OSS_PER_DLL_NOT_LINKED,
    4281             :                 "HRES_OSS_PER_DLL_NOT_LINKED",
    4282             :                 "OSS ASN.1 Error: Program link error."
    4283             :         },
    4284             :         {
    4285             :                 HRES_OSS_OPEN_TYPE_ERROR,
    4286             :                 "HRES_OSS_OPEN_TYPE_ERROR",
    4287             :                 "OSS ASN.1 Error: Program link error."
    4288             :         },
    4289             :         {
    4290             :                 HRES_OSS_MUTEX_NOT_CREATED,
    4291             :                 "HRES_OSS_MUTEX_NOT_CREATED",
    4292             :                 "OSS ASN.1 Error: System resource error."
    4293             :         },
    4294             :         {
    4295             :                 HRES_OSS_CANT_CLOSE_TRACE_FILE,
    4296             :                 "HRES_OSS_CANT_CLOSE_TRACE_FILE",
    4297             :                 "OSS ASN.1 Error: Trace file error."
    4298             :         },
    4299             :         {
    4300             :                 HRES_CRYPT_E_ASN1_ERROR,
    4301             :                 "HRES_CRYPT_E_ASN1_ERROR",
    4302             :                 "ASN1 Certificate encode/decode error code base."
    4303             :         },
    4304             :         {
    4305             :                 HRES_CRYPT_E_ASN1_INTERNAL,
    4306             :                 "HRES_CRYPT_E_ASN1_INTERNAL",
    4307             :                 "ASN1 internal encode or decode error."
    4308             :         },
    4309             :         {
    4310             :                 HRES_CRYPT_E_ASN1_EOD,
    4311             :                 "HRES_CRYPT_E_ASN1_EOD",
    4312             :                 "ASN1 unexpected end of data."
    4313             :         },
    4314             :         {
    4315             :                 HRES_CRYPT_E_ASN1_CORRUPT,
    4316             :                 "HRES_CRYPT_E_ASN1_CORRUPT",
    4317             :                 "ASN1 corrupted data."
    4318             :         },
    4319             :         {
    4320             :                 HRES_CRYPT_E_ASN1_LARGE,
    4321             :                 "HRES_CRYPT_E_ASN1_LARGE",
    4322             :                 "ASN1 value too large."
    4323             :         },
    4324             :         {
    4325             :                 HRES_CRYPT_E_ASN1_CONSTRAINT,
    4326             :                 "HRES_CRYPT_E_ASN1_CONSTRAINT",
    4327             :                 "ASN1 constraint violated."
    4328             :         },
    4329             :         {
    4330             :                 HRES_CRYPT_E_ASN1_MEMORY,
    4331             :                 "HRES_CRYPT_E_ASN1_MEMORY",
    4332             :                 "ASN1 out of memory."
    4333             :         },
    4334             :         {
    4335             :                 HRES_CRYPT_E_ASN1_OVERFLOW,
    4336             :                 "HRES_CRYPT_E_ASN1_OVERFLOW",
    4337             :                 "ASN1 buffer overflow."
    4338             :         },
    4339             :         {
    4340             :                 HRES_CRYPT_E_ASN1_BADPDU,
    4341             :                 "HRES_CRYPT_E_ASN1_BADPDU",
    4342             :                 "ASN1 function not supported for this protocol data unit (PDU)."
    4343             :         },
    4344             :         {
    4345             :                 HRES_CRYPT_E_ASN1_BADARGS,
    4346             :                 "HRES_CRYPT_E_ASN1_BADARGS",
    4347             :                 "ASN1 bad arguments to function call."
    4348             :         },
    4349             :         {
    4350             :                 HRES_CRYPT_E_ASN1_BADREAL,
    4351             :                 "HRES_CRYPT_E_ASN1_BADREAL",
    4352             :                 "ASN1 bad real value."
    4353             :         },
    4354             :         {
    4355             :                 HRES_CRYPT_E_ASN1_BADTAG,
    4356             :                 "HRES_CRYPT_E_ASN1_BADTAG",
    4357             :                 "ASN1 bad tag value met."
    4358             :         },
    4359             :         {
    4360             :                 HRES_CRYPT_E_ASN1_CHOICE,
    4361             :                 "HRES_CRYPT_E_ASN1_CHOICE",
    4362             :                 "ASN1 bad choice value."
    4363             :         },
    4364             :         {
    4365             :                 HRES_CRYPT_E_ASN1_RULE,
    4366             :                 "HRES_CRYPT_E_ASN1_RULE",
    4367             :                 "ASN1 bad encoding rule."
    4368             :         },
    4369             :         {
    4370             :                 HRES_CRYPT_E_ASN1_UTF8,
    4371             :                 "HRES_CRYPT_E_ASN1_UTF8",
    4372             :                 "ASN1 bad Unicode (UTF8)."
    4373             :         },
    4374             :         {
    4375             :                 HRES_CRYPT_E_ASN1_PDU_TYPE,
    4376             :                 "HRES_CRYPT_E_ASN1_PDU_TYPE",
    4377             :                 "ASN1 bad PDU type."
    4378             :         },
    4379             :         {
    4380             :                 HRES_CRYPT_E_ASN1_NYI,
    4381             :                 "HRES_CRYPT_E_ASN1_NYI",
    4382             :                 "ASN1 not yet implemented."
    4383             :         },
    4384             :         {
    4385             :                 HRES_CRYPT_E_ASN1_EXTENDED,
    4386             :                 "HRES_CRYPT_E_ASN1_EXTENDED",
    4387             :                 "ASN1 skipped unknown extensions."
    4388             :         },
    4389             :         {
    4390             :                 HRES_CRYPT_E_ASN1_NOEOD,
    4391             :                 "HRES_CRYPT_E_ASN1_NOEOD",
    4392             :                 "ASN1 end of data expected."
    4393             :         },
    4394             :         {
    4395             :                 HRES_CERTSRV_E_BAD_REQUESTSUBJECT,
    4396             :                 "HRES_CERTSRV_E_BAD_REQUESTSUBJECT",
    4397             :                 "The request subject name is invalid or too long."
    4398             :         },
    4399             :         {
    4400             :                 HRES_CERTSRV_E_NO_REQUEST,
    4401             :                 "HRES_CERTSRV_E_NO_REQUEST",
    4402             :                 "The request does not exist."
    4403             :         },
    4404             :         {
    4405             :                 HRES_CERTSRV_E_BAD_REQUESTSTATUS,
    4406             :                 "HRES_CERTSRV_E_BAD_REQUESTSTATUS",
    4407             :                 "The request's current status does not allow this operation."
    4408             :         },
    4409             :         {
    4410             :                 HRES_CERTSRV_E_PROPERTY_EMPTY,
    4411             :                 "HRES_CERTSRV_E_PROPERTY_EMPTY",
    4412             :                 "The requested property value is empty."
    4413             :         },
    4414             :         {
    4415             :                 HRES_CERTSRV_E_INVALID_CA_CERTIFICATE,
    4416             :                 "HRES_CERTSRV_E_INVALID_CA_CERTIFICATE",
    4417             :                 "The CA's certificate contains invalid data."
    4418             :         },
    4419             :         {
    4420             :                 HRES_CERTSRV_E_SERVER_SUSPENDED,
    4421             :                 "HRES_CERTSRV_E_SERVER_SUSPENDED",
    4422             :                 "Certificate service has been suspended for a database restore operation."
    4423             :         },
    4424             :         {
    4425             :                 HRES_CERTSRV_E_ENCODING_LENGTH,
    4426             :                 "HRES_CERTSRV_E_ENCODING_LENGTH",
    4427             :                 "The certificate contains an encoded length that is potentially incompatible with older enrollment software."
    4428             :         },
    4429             :         {
    4430             :                 HRES_CERTSRV_E_ROLECONFLICT,
    4431             :                 "HRES_CERTSRV_E_ROLECONFLICT",
    4432             :                 "The operation is denied. The user has multiple roles assigned, and the CA is configured to enforce role separation."
    4433             :         },
    4434             :         {
    4435             :                 HRES_CERTSRV_E_RESTRICTEDOFFICER,
    4436             :                 "HRES_CERTSRV_E_RESTRICTEDOFFICER",
    4437             :                 "The operation is denied. It can only be performed by a certificate manager that is allowed to manage certificates for the current requester."
    4438             :         },
    4439             :         {
    4440             :                 HRES_CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED,
    4441             :                 "HRES_CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED",
    4442             :                 "Cannot archive private key. The CA is not configured for key archival."
    4443             :         },
    4444             :         {
    4445             :                 HRES_CERTSRV_E_NO_VALID_KRA,
    4446             :                 "HRES_CERTSRV_E_NO_VALID_KRA",
    4447             :                 "Cannot archive private key. The CA could not verify one or more key recovery certificates."
    4448             :         },
    4449             :         {
    4450             :                 HRES_CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL,
    4451             :                 "HRES_CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL",
    4452             :                 "The request is incorrectly formatted. The encrypted private key must be in an unauthenticated attribute in an outermost signature."
    4453             :         },
    4454             :         {
    4455             :                 HRES_CERTSRV_E_NO_CAADMIN_DEFINED,
    4456             :                 "HRES_CERTSRV_E_NO_CAADMIN_DEFINED",
    4457             :                 "At least one security principal must have the permission to manage this CA."
    4458             :         },
    4459             :         {
    4460             :                 HRES_CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE,
    4461             :                 "HRES_CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE",
    4462             :                 "The request contains an invalid renewal certificate attribute."
    4463             :         },
    4464             :         {
    4465             :                 HRES_CERTSRV_E_NO_DB_SESSIONS,
    4466             :                 "HRES_CERTSRV_E_NO_DB_SESSIONS",
    4467             :                 "An attempt was made to open a CA database session, but there are already too many active sessions. The server needs to be configured to allow additional sessions."
    4468             :         },
    4469             :         {
    4470             :                 HRES_CERTSRV_E_ALIGNMENT_FAULT,
    4471             :                 "HRES_CERTSRV_E_ALIGNMENT_FAULT",
    4472             :                 "A memory reference caused a data alignment fault."
    4473             :         },
    4474             :         {
    4475             :                 HRES_CERTSRV_E_ENROLL_DENIED,
    4476             :                 "HRES_CERTSRV_E_ENROLL_DENIED",
    4477             :                 "The permissions on this CA do not allow the current user to enroll for certificates."
    4478             :         },
    4479             :         {
    4480             :                 HRES_CERTSRV_E_TEMPLATE_DENIED,
    4481             :                 "HRES_CERTSRV_E_TEMPLATE_DENIED",
    4482             :                 "The permissions on the certificate template do not allow the current user to enroll for this type of certificate."
    4483             :         },
    4484             :         {
    4485             :                 HRES_CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE,
    4486             :                 "HRES_CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE",
    4487             :                 "The contacted domain controller cannot support signed Lightweight Directory Access Protocol (LDAP) traffic. Update the domain controller or configure Certificate Services to use SSL for Active Directory access."
    4488             :         },
    4489             :         {
    4490             :                 HRES_CERTSRV_E_UNSUPPORTED_CERT_TYPE,
    4491             :                 "HRES_CERTSRV_E_UNSUPPORTED_CERT_TYPE",
    4492             :                 "The requested certificate template is not supported by this CA."
    4493             :         },
    4494             :         {
    4495             :                 HRES_CERTSRV_E_NO_CERT_TYPE,
    4496             :                 "HRES_CERTSRV_E_NO_CERT_TYPE",
    4497             :                 "The request contains no certificate template information."
    4498             :         },
    4499             :         {
    4500             :                 HRES_CERTSRV_E_TEMPLATE_CONFLICT,
    4501             :                 "HRES_CERTSRV_E_TEMPLATE_CONFLICT",
    4502             :                 "The request contains conflicting template information."
    4503             :         },
    4504             :         {
    4505             :                 HRES_CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED,
    4506             :                 "HRES_CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED",
    4507             :                 "The request is missing a required Subject Alternate name extension."
    4508             :         },
    4509             :         {
    4510             :                 HRES_CERTSRV_E_ARCHIVED_KEY_REQUIRED,
    4511             :                 "HRES_CERTSRV_E_ARCHIVED_KEY_REQUIRED",
    4512             :                 "The request is missing a required private key for archival by the server."
    4513             :         },
    4514             :         {
    4515             :                 HRES_CERTSRV_E_SMIME_REQUIRED,
    4516             :                 "HRES_CERTSRV_E_SMIME_REQUIRED",
    4517             :                 "The request is missing a required SMIME capabilities extension."
    4518             :         },
    4519             :         {
    4520             :                 HRES_CERTSRV_E_BAD_RENEWAL_SUBJECT,
    4521             :                 "HRES_CERTSRV_E_BAD_RENEWAL_SUBJECT",
    4522             :                 "The request was made on behalf of a subject other than the caller. The certificate template must be configured to require at least one signature to authorize the request."
    4523             :         },
    4524             :         {
    4525             :                 HRES_CERTSRV_E_BAD_TEMPLATE_VERSION,
    4526             :                 "HRES_CERTSRV_E_BAD_TEMPLATE_VERSION",
    4527             :                 "The request template version is newer than the supported template version."
    4528             :         },
    4529             :         {
    4530             :                 HRES_CERTSRV_E_TEMPLATE_POLICY_REQUIRED,
    4531             :                 "HRES_CERTSRV_E_TEMPLATE_POLICY_REQUIRED",
    4532             :                 "The template is missing a required signature policy attribute."
    4533             :         },
    4534             :         {
    4535             :                 HRES_CERTSRV_E_SIGNATURE_POLICY_REQUIRED,
    4536             :                 "HRES_CERTSRV_E_SIGNATURE_POLICY_REQUIRED",
    4537             :                 "The request is missing required signature policy information."
    4538             :         },
    4539             :         {
    4540             :                 HRES_CERTSRV_E_SIGNATURE_COUNT,
    4541             :                 "HRES_CERTSRV_E_SIGNATURE_COUNT",
    4542             :                 "The request is missing one or more required signatures."
    4543             :         },
    4544             :         {
    4545             :                 HRES_CERTSRV_E_SIGNATURE_REJECTED,
    4546             :                 "HRES_CERTSRV_E_SIGNATURE_REJECTED",
    4547             :                 "One or more signatures did not include the required application or issuance policies. The request is missing one or more required valid signatures."
    4548             :         },
    4549             :         {
    4550             :                 HRES_CERTSRV_E_ISSUANCE_POLICY_REQUIRED,
    4551             :                 "HRES_CERTSRV_E_ISSUANCE_POLICY_REQUIRED",
    4552             :                 "The request is missing one or more required signature issuance policies."
    4553             :         },
    4554             :         {
    4555             :                 HRES_CERTSRV_E_SUBJECT_UPN_REQUIRED,
    4556             :                 "HRES_CERTSRV_E_SUBJECT_UPN_REQUIRED",
    4557             :                 "The UPN is unavailable and cannot be added to the Subject Alternate name."
    4558             :         },
    4559             :         {
    4560             :                 HRES_CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED,
    4561             :                 "HRES_CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED",
    4562             :                 "The Active Directory GUID is unavailable and cannot be added to the Subject Alternate name."
    4563             :         },
    4564             :         {
    4565             :                 HRES_CERTSRV_E_SUBJECT_DNS_REQUIRED,
    4566             :                 "HRES_CERTSRV_E_SUBJECT_DNS_REQUIRED",
    4567             :                 "The Domain Name System (DNS) name is unavailable and cannot be added to the Subject Alternate name."
    4568             :         },
    4569             :         {
    4570             :                 HRES_CERTSRV_E_ARCHIVED_KEY_UNEXPECTED,
    4571             :                 "HRES_CERTSRV_E_ARCHIVED_KEY_UNEXPECTED",
    4572             :                 "The request includes a private key for archival by the server, but key archival is not enabled for the specified certificate template."
    4573             :         },
    4574             :         {
    4575             :                 HRES_CERTSRV_E_KEY_LENGTH,
    4576             :                 "HRES_CERTSRV_E_KEY_LENGTH",
    4577             :                 "The public key does not meet the minimum size required by the specified certificate template."
    4578             :         },
    4579             :         {
    4580             :                 HRES_CERTSRV_E_SUBJECT_EMAIL_REQUIRED,
    4581             :                 "HRES_CERTSRV_E_SUBJECT_EMAIL_REQUIRED",
    4582             :                 "The email name is unavailable and cannot be added to the Subject or Subject Alternate name."
    4583             :         },
    4584             :         {
    4585             :                 HRES_CERTSRV_E_UNKNOWN_CERT_TYPE,
    4586             :                 "HRES_CERTSRV_E_UNKNOWN_CERT_TYPE",
    4587             :                 "One or more certificate templates to be enabled on this CA could not be found."
    4588             :         },
    4589             :         {
    4590             :                 HRES_CERTSRV_E_CERT_TYPE_OVERLAP,
    4591             :                 "HRES_CERTSRV_E_CERT_TYPE_OVERLAP",
    4592             :                 "The certificate template renewal period is longer than the certificate validity period. The template should be reconfigured or the CA certificate renewed."
    4593             :         },
    4594             :         {
    4595             :                 HRES_CERTSRV_E_TOO_MANY_SIGNATURES,
    4596             :                 "HRES_CERTSRV_E_TOO_MANY_SIGNATURES",
    4597             :                 "The certificate template requires too many return authorization (RA) signatures. Only one RA signature is allowed."
    4598             :         },
    4599             :         {
    4600             :                 HRES_CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY,
    4601             :                 "HRES_CERTSRV_E_RENEWAL_BAD_PUBLIC_KEY",
    4602             :                 "The key used in a renewal request does not match one of the certificates being renewed."
    4603             :         },
    4604             :         {
    4605             :                 HRES_CERTSRV_E_INVALID_EK,
    4606             :                 "HRES_CERTSRV_E_INVALID_EK",
    4607             :                 "The endorsement key certificate is not valid."
    4608             :         },
    4609             :         {
    4610             :                 HRES_CERTSRV_E_KEY_ATTESTATION,
    4611             :                 "HRES_CERTSRV_E_KEY_ATTESTATION",
    4612             :                 "Key attestation did not succeed."
    4613             :         },
    4614             :         {
    4615             :                 HRES_XENROLL_E_KEY_NOT_EXPORTABLE,
    4616             :                 "HRES_XENROLL_E_KEY_NOT_EXPORTABLE",
    4617             :                 "The key is not exportable."
    4618             :         },
    4619             :         {
    4620             :                 HRES_XENROLL_E_CANNOT_ADD_ROOT_CERT,
    4621             :                 "HRES_XENROLL_E_CANNOT_ADD_ROOT_CERT",
    4622             :                 "You cannot add the root CA certificate into your local store."
    4623             :         },
    4624             :         {
    4625             :                 HRES_XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND,
    4626             :                 "HRES_XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND",
    4627             :                 "The key archival hash attribute was not found in the response."
    4628             :         },
    4629             :         {
    4630             :                 HRES_XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH,
    4631             :                 "HRES_XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH",
    4632             :                 "An unexpected key archival hash attribute was found in the response."
    4633             :         },
    4634             :         {
    4635             :                 HRES_XENROLL_E_RESPONSE_KA_HASH_MISMATCH,
    4636             :                 "HRES_XENROLL_E_RESPONSE_KA_HASH_MISMATCH",
    4637             :                 "There is a key archival hash mismatch between the request and the response."
    4638             :         },
    4639             :         {
    4640             :                 HRES_XENROLL_E_KEYSPEC_SMIME_MISMATCH,
    4641             :                 "HRES_XENROLL_E_KEYSPEC_SMIME_MISMATCH",
    4642             :                 "Signing certificate cannot include SMIME extension."
    4643             :         },
    4644             :         {
    4645             :                 HRES_TRUST_E_SYSTEM_ERROR,
    4646             :                 "HRES_TRUST_E_SYSTEM_ERROR",
    4647             :                 "A system-level error occurred while verifying trust."
    4648             :         },
    4649             :         {
    4650             :                 HRES_TRUST_E_NO_SIGNER_CERT,
    4651             :                 "HRES_TRUST_E_NO_SIGNER_CERT",
    4652             :                 "The certificate for the signer of the message is invalid or not found."
    4653             :         },
    4654             :         {
    4655             :                 HRES_TRUST_E_COUNTER_SIGNER,
    4656             :                 "HRES_TRUST_E_COUNTER_SIGNER",
    4657             :                 "One of the counter signatures was invalid."
    4658             :         },
    4659             :         {
    4660             :                 HRES_TRUST_E_CERT_SIGNATURE,
    4661             :                 "HRES_TRUST_E_CERT_SIGNATURE",
    4662             :                 "The signature of the certificate cannot be verified."
    4663             :         },
    4664             :         {
    4665             :                 HRES_TRUST_E_TIME_STAMP,
    4666             :                 "HRES_TRUST_E_TIME_STAMP",
    4667             :                 "The time-stamp signature or certificate could not be verified or is malformed."
    4668             :         },
    4669             :         {
    4670             :                 HRES_TRUST_E_BAD_DIGEST,
    4671             :                 "HRES_TRUST_E_BAD_DIGEST",
    4672             :                 "The digital signature of the object did not verify."
    4673             :         },
    4674             :         {
    4675             :                 HRES_TRUST_E_BASIC_CONSTRAINTS,
    4676             :                 "HRES_TRUST_E_BASIC_CONSTRAINTS",
    4677             :                 "A certificate's basic constraint extension has not been observed."
    4678             :         },
    4679             :         {
    4680             :                 HRES_TRUST_E_FINANCIAL_CRITERIA,
    4681             :                 "HRES_TRUST_E_FINANCIAL_CRITERIA",
    4682             :                 "The certificate does not meet or contain the Authenticode financial extensions."
    4683             :         },
    4684             :         {
    4685             :                 HRES_MSSIPOTF_E_OUTOFMEMRANGE,
    4686             :                 "HRES_MSSIPOTF_E_OUTOFMEMRANGE",
    4687             :                 "Tried to reference a part of the file outside the proper range."
    4688             :         },
    4689             :         {
    4690             :                 HRES_MSSIPOTF_E_CANTGETOBJECT,
    4691             :                 "HRES_MSSIPOTF_E_CANTGETOBJECT",
    4692             :                 "Could not retrieve an object from the file."
    4693             :         },
    4694             :         {
    4695             :                 HRES_MSSIPOTF_E_NOHEADTABLE,
    4696             :                 "HRES_MSSIPOTF_E_NOHEADTABLE",
    4697             :                 "Could not find the head table in the file."
    4698             :         },
    4699             :         {
    4700             :                 HRES_MSSIPOTF_E_BAD_MAGICNUMBER,
    4701             :                 "HRES_MSSIPOTF_E_BAD_MAGICNUMBER",
    4702             :                 "The magic number in the head table is incorrect."
    4703             :         },
    4704             :         {
    4705             :                 HRES_MSSIPOTF_E_BAD_OFFSET_TABLE,
    4706             :                 "HRES_MSSIPOTF_E_BAD_OFFSET_TABLE",
    4707             :                 "The offset table has incorrect values."
    4708             :         },
    4709             :         {
    4710             :                 HRES_MSSIPOTF_E_TABLE_TAGORDER,
    4711             :                 "HRES_MSSIPOTF_E_TABLE_TAGORDER",
    4712             :                 "Duplicate table tags or the tags are out of alphabetical order."
    4713             :         },
    4714             :         {
    4715             :                 HRES_MSSIPOTF_E_TABLE_LONGWORD,
    4716             :                 "HRES_MSSIPOTF_E_TABLE_LONGWORD",
    4717             :                 "A table does not start on a long word boundary."
    4718             :         },
    4719             :         {
    4720             :                 HRES_MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT,
    4721             :                 "HRES_MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT",
    4722             :                 "First table does not appear after header information."
    4723             :         },
    4724             :         {
    4725             :                 HRES_MSSIPOTF_E_TABLES_OVERLAP,
    4726             :                 "HRES_MSSIPOTF_E_TABLES_OVERLAP",
    4727             :                 "Two or more tables overlap."
    4728             :         },
    4729             :         {
    4730             :                 HRES_MSSIPOTF_E_TABLE_PADBYTES,
    4731             :                 "HRES_MSSIPOTF_E_TABLE_PADBYTES",
    4732             :                 "Too many pad bytes between tables, or pad bytes are not 0."
    4733             :         },
    4734             :         {
    4735             :                 HRES_MSSIPOTF_E_FILETOOSMALL,
    4736             :                 "HRES_MSSIPOTF_E_FILETOOSMALL",
    4737             :                 "File is too small to contain the last table."
    4738             :         },
    4739             :         {
    4740             :                 HRES_MSSIPOTF_E_TABLE_CHECKSUM,
    4741             :                 "HRES_MSSIPOTF_E_TABLE_CHECKSUM",
    4742             :                 "A table checksum is incorrect."
    4743             :         },
    4744             :         {
    4745             :                 HRES_MSSIPOTF_E_FILE_CHECKSUM,
    4746             :                 "HRES_MSSIPOTF_E_FILE_CHECKSUM",
    4747             :                 "The file checksum is incorrect."
    4748             :         },
    4749             :         {
    4750             :                 HRES_MSSIPOTF_E_FAILED_POLICY,
    4751             :                 "HRES_MSSIPOTF_E_FAILED_POLICY",
    4752             :                 "The signature does not have the correct attributes for the policy."
    4753             :         },
    4754             :         {
    4755             :                 HRES_MSSIPOTF_E_FAILED_HINTS_CHECK,
    4756             :                 "HRES_MSSIPOTF_E_FAILED_HINTS_CHECK",
    4757             :                 "The file did not pass the hints check."
    4758             :         },
    4759             :         {
    4760             :                 HRES_MSSIPOTF_E_NOT_OPENTYPE,
    4761             :                 "HRES_MSSIPOTF_E_NOT_OPENTYPE",
    4762             :                 "The file is not an OpenType file."
    4763             :         },
    4764             :         {
    4765             :                 HRES_MSSIPOTF_E_FILE,
    4766             :                 "HRES_MSSIPOTF_E_FILE",
    4767             :                 "Failed on a file operation (such as open, map, read, or write)."
    4768             :         },
    4769             :         {
    4770             :                 HRES_MSSIPOTF_E_CRYPT,
    4771             :                 "HRES_MSSIPOTF_E_CRYPT",
    4772             :                 "A call to a CryptoAPI function failed."
    4773             :         },
    4774             :         {
    4775             :                 HRES_MSSIPOTF_E_BADVERSION,
    4776             :                 "HRES_MSSIPOTF_E_BADVERSION",
    4777             :                 "There is a bad version number in the file."
    4778             :         },
    4779             :         {
    4780             :                 HRES_MSSIPOTF_E_DSIG_STRUCTURE,
    4781             :                 "HRES_MSSIPOTF_E_DSIG_STRUCTURE",
    4782             :                 "The structure of the DSIG table is incorrect."
    4783             :         },
    4784             :         {
    4785             :                 HRES_MSSIPOTF_E_PCONST_CHECK,
    4786             :                 "HRES_MSSIPOTF_E_PCONST_CHECK",
    4787             :                 "A check failed in a partially constant table."
    4788             :         },
    4789             :         {
    4790             :                 HRES_MSSIPOTF_E_STRUCTURE,
    4791             :                 "HRES_MSSIPOTF_E_STRUCTURE",
    4792             :                 "Some kind of structural error."
    4793             :         },
    4794             :         {
    4795             :                 HRES_ERROR_CRED_REQUIRES_CONFIRMATION,
    4796             :                 "HRES_ERROR_CRED_REQUIRES_CONFIRMATION",
    4797             :                 "The requested credential requires confirmation."
    4798             :         },
    4799             :         {
    4800             :                 HRES_TRUST_E_PROVIDER_UNKNOWN,
    4801             :                 "HRES_TRUST_E_PROVIDER_UNKNOWN",
    4802             :                 "Unknown trust provider."
    4803             :         },
    4804             :         {
    4805             :                 HRES_TRUST_E_ACTION_UNKNOWN,
    4806             :                 "HRES_TRUST_E_ACTION_UNKNOWN",
    4807             :                 "The trust verification action specified is not supported by the specified trust provider."
    4808             :         },
    4809             :         {
    4810             :                 HRES_TRUST_E_SUBJECT_FORM_UNKNOWN,
    4811             :                 "HRES_TRUST_E_SUBJECT_FORM_UNKNOWN",
    4812             :                 "The form specified for the subject is not one supported or known by the specified trust provider."
    4813             :         },
    4814             :         {
    4815             :                 HRES_TRUST_E_SUBJECT_NOT_TRUSTED,
    4816             :                 "HRES_TRUST_E_SUBJECT_NOT_TRUSTED",
    4817             :                 "The subject is not trusted for the specified action."
    4818             :         },
    4819             :         {
    4820             :                 HRES_DIGSIG_E_ENCODE,
    4821             :                 "HRES_DIGSIG_E_ENCODE",
    4822             :                 "Error due to problem in ASN.1 encoding process."
    4823             :         },
    4824             :         {
    4825             :                 HRES_DIGSIG_E_DECODE,
    4826             :                 "HRES_DIGSIG_E_DECODE",
    4827             :                 "Error due to problem in ASN.1 decoding process."
    4828             :         },
    4829             :         {
    4830             :                 HRES_DIGSIG_E_EXTENSIBILITY,
    4831             :                 "HRES_DIGSIG_E_EXTENSIBILITY",
    4832             :                 "Reading/writing extensions where attributes are appropriate, and vice versa."
    4833             :         },
    4834             :         {
    4835             :                 HRES_DIGSIG_E_CRYPTO,
    4836             :                 "HRES_DIGSIG_E_CRYPTO",
    4837             :                 "Unspecified cryptographic failure."
    4838             :         },
    4839             :         {
    4840             :                 HRES_PERSIST_E_SIZEDEFINITE,
    4841             :                 "HRES_PERSIST_E_SIZEDEFINITE",
    4842             :                 "The size of the data could not be determined."
    4843             :         },
    4844             :         {
    4845             :                 HRES_PERSIST_E_SIZEINDEFINITE,
    4846             :                 "HRES_PERSIST_E_SIZEINDEFINITE",
    4847             :                 "The size of the indefinite-sized data could not be determined."
    4848             :         },
    4849             :         {
    4850             :                 HRES_PERSIST_E_NOTSELFSIZING,
    4851             :                 "HRES_PERSIST_E_NOTSELFSIZING",
    4852             :                 "This object does not read and write self-sizing data."
    4853             :         },
    4854             :         {
    4855             :                 HRES_TRUST_E_NOSIGNATURE,
    4856             :                 "HRES_TRUST_E_NOSIGNATURE",
    4857             :                 "No signature was present in the subject."
    4858             :         },
    4859             :         {
    4860             :                 HRES_CERT_E_EXPIRED,
    4861             :                 "HRES_CERT_E_EXPIRED",
    4862             :                 "A required certificate is not within its validity period when verifying against the current system clock or the time stamp in the signed file."
    4863             :         },
    4864             :         {
    4865             :                 HRES_CERT_E_VALIDITYPERIODNESTING,
    4866             :                 "HRES_CERT_E_VALIDITYPERIODNESTING",
    4867             :                 "The validity periods of the certification chain do not nest correctly."
    4868             :         },
    4869             :         {
    4870             :                 HRES_CERT_E_ROLE,
    4871             :                 "HRES_CERT_E_ROLE",
    4872             :                 "A certificate that can only be used as an end entity is being used as a CA or vice versa."
    4873             :         },
    4874             :         {
    4875             :                 HRES_CERT_E_PATHLENCONST,
    4876             :                 "HRES_CERT_E_PATHLENCONST",
    4877             :                 "A path length constraint in the certification chain has been violated."
    4878             :         },
    4879             :         {
    4880             :                 HRES_CERT_E_CRITICAL,
    4881             :                 "HRES_CERT_E_CRITICAL",
    4882             :                 "A certificate contains an unknown extension that is marked \"critical\"."
    4883             :         },
    4884             :         {
    4885             :                 HRES_CERT_E_PURPOSE,
    4886             :                 "HRES_CERT_E_PURPOSE",
    4887             :                 "A certificate is being used for a purpose other than the ones specified by its CA."
    4888             :         },
    4889             :         {
    4890             :                 HRES_CERT_E_ISSUERCHAINING,
    4891             :                 "HRES_CERT_E_ISSUERCHAINING",
    4892             :                 "A parent of a given certificate did not issue that child certificate."
    4893             :         },
    4894             :         {
    4895             :                 HRES_CERT_E_MALFORMED,
    4896             :                 "HRES_CERT_E_MALFORMED",
    4897             :                 "A certificate is missing or has an empty value for an important field, such as a subject or issuer name."
    4898             :         },
    4899             :         {
    4900             :                 HRES_CERT_E_UNTRUSTEDROOT,
    4901             :                 "HRES_CERT_E_UNTRUSTEDROOT",
    4902             :                 "A certificate chain processed, but terminated in a root certificate that is not trusted by the trust provider."
    4903             :         },
    4904             :         {
    4905             :                 HRES_CERT_E_CHAINING,
    4906             :                 "HRES_CERT_E_CHAINING",
    4907             :                 "A certificate chain could not be built to a trusted root authority."
    4908             :         },
    4909             :         {
    4910             :                 HRES_TRUST_E_FAIL,
    4911             :                 "HRES_TRUST_E_FAIL",
    4912             :                 "Generic trust failure."
    4913             :         },
    4914             :         {
    4915             :                 HRES_CERT_E_REVOKED,
    4916             :                 "HRES_CERT_E_REVOKED",
    4917             :                 "A certificate was explicitly revoked by its issuer."
    4918             :         },
    4919             :         {
    4920             :                 HRES_CERT_E_UNTRUSTEDTESTROOT,
    4921             :                 "HRES_CERT_E_UNTRUSTEDTESTROOT",
    4922             :                 "The certification path terminates with the test root that is not trusted with the current policy settings."
    4923             :         },
    4924             :         {
    4925             :                 HRES_CERT_E_REVOCATION_FAILURE,
    4926             :                 "HRES_CERT_E_REVOCATION_FAILURE",
    4927             :                 "The revocation process could not continue—the certificates could not be checked."
    4928             :         },
    4929             :         {
    4930             :                 HRES_CERT_E_CN_NO_MATCH,
    4931             :                 "HRES_CERT_E_CN_NO_MATCH",
    4932             :                 "The certificate's CN name does not match the passed value."
    4933             :         },
    4934             :         {
    4935             :                 HRES_CERT_E_WRONG_USAGE,
    4936             :                 "HRES_CERT_E_WRONG_USAGE",
    4937             :                 "The certificate is not valid for the requested usage."
    4938             :         },
    4939             :         {
    4940             :                 HRES_TRUST_E_EXPLICIT_DISTRUST,
    4941             :                 "HRES_TRUST_E_EXPLICIT_DISTRUST",
    4942             :                 "The certificate was explicitly marked as untrusted by the user."
    4943             :         },
    4944             :         {
    4945             :                 HRES_CERT_E_UNTRUSTEDCA,
    4946             :                 "HRES_CERT_E_UNTRUSTEDCA",
    4947             :                 "A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider."
    4948             :         },
    4949             :         {
    4950             :                 HRES_CERT_E_INVALID_POLICY,
    4951             :                 "HRES_CERT_E_INVALID_POLICY",
    4952             :                 "The certificate has invalid policy."
    4953             :         },
    4954             :         {
    4955             :                 HRES_CERT_E_INVALID_NAME,
    4956             :                 "HRES_CERT_E_INVALID_NAME",
    4957             :                 "The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded."
    4958             :         },
    4959             :         {
    4960             :                 HRES_NS_W_SERVER_BANDWIDTH_LIMIT,
    4961             :                 "HRES_NS_W_SERVER_BANDWIDTH_LIMIT",
    4962             :                 "The maximum filebitrate value specified is greater than the server's configured maximum bandwidth."
    4963             :         },
    4964             :         {
    4965             :                 HRES_NS_W_FILE_BANDWIDTH_LIMIT,
    4966             :                 "HRES_NS_W_FILE_BANDWIDTH_LIMIT",
    4967             :                 "The maximum bandwidth value specified is less than the maximum filebitrate."
    4968             :         },
    4969             :         {
    4970             :                 HRES_NS_W_UNKNOWN_EVENT,
    4971             :                 "HRES_NS_W_UNKNOWN_EVENT",
    4972             :                 "Unknown %1 event encountered."
    4973             :         },
    4974             :         {
    4975             :                 HRES_NS_I_CATATONIC_FAILURE,
    4976             :                 "HRES_NS_I_CATATONIC_FAILURE",
    4977             :                 "Disk %1 ( %2 ) on Content Server %3, will be failed because it is catatonic."
    4978             :         },
    4979             :         {
    4980             :                 HRES_NS_I_CATATONIC_AUTO_UNFAIL,
    4981             :                 "HRES_NS_I_CATATONIC_AUTO_UNFAIL",
    4982             :                 "Disk %1 ( %2 ) on Content Server %3, auto online from catatonic state."
    4983             :         },
    4984             :         {
    4985             :                 HRES_SPAPI_E_EXPECTED_SECTION_NAME,
    4986             :                 "HRES_SPAPI_E_EXPECTED_SECTION_NAME",
    4987             :                 "A non-empty line was encountered in the INF before the start of a section."
    4988             :         },
    4989             :         {
    4990             :                 HRES_SPAPI_E_BAD_SECTION_NAME_LINE,
    4991             :                 "HRES_SPAPI_E_BAD_SECTION_NAME_LINE",
    4992             :                 "A section name marker in the information file (INF) is not complete or does not exist on a line by itself."
    4993             :         },
    4994             :         {
    4995             :                 HRES_SPAPI_E_SECTION_NAME_TOO_LONG,
    4996             :                 "HRES_SPAPI_E_SECTION_NAME_TOO_LONG",
    4997             :                 "An INF section was encountered whose name exceeds the maximum section name length."
    4998             :         },
    4999             :         {
    5000             :                 HRES_SPAPI_E_GENERAL_SYNTAX,
    5001             :                 "HRES_SPAPI_E_GENERAL_SYNTAX",
    5002             :                 "The syntax of the INF is invalid."
    5003             :         },
    5004             :         {
    5005             :                 HRES_SPAPI_E_WRONG_INF_STYLE,
    5006             :                 "HRES_SPAPI_E_WRONG_INF_STYLE",
    5007             :                 "The style of the INF is different than what was requested."
    5008             :         },
    5009             :         {
    5010             :                 HRES_SPAPI_E_SECTION_NOT_FOUND,
    5011             :                 "HRES_SPAPI_E_SECTION_NOT_FOUND",
    5012             :                 "The required section was not found in the INF."
    5013             :         },
    5014             :         {
    5015             :                 HRES_SPAPI_E_LINE_NOT_FOUND,
    5016             :                 "HRES_SPAPI_E_LINE_NOT_FOUND",
    5017             :                 "The required line was not found in the INF."
    5018             :         },
    5019             :         {
    5020             :                 HRES_SPAPI_E_NO_BACKUP,
    5021             :                 "HRES_SPAPI_E_NO_BACKUP",
    5022             :                 "The files affected by the installation of this file queue have not been backed up for uninstall."
    5023             :         },
    5024             :         {
    5025             :                 HRES_SPAPI_E_NO_ASSOCIATED_CLASS,
    5026             :                 "HRES_SPAPI_E_NO_ASSOCIATED_CLASS",
    5027             :                 "The INF or the device information set or element does not have an associated install class."
    5028             :         },
    5029             :         {
    5030             :                 HRES_SPAPI_E_CLASS_MISMATCH,
    5031             :                 "HRES_SPAPI_E_CLASS_MISMATCH",
    5032             :                 "The INF or the device information set or element does not match the specified install class."
    5033             :         },
    5034             :         {
    5035             :                 HRES_SPAPI_E_DUPLICATE_FOUND,
    5036             :                 "HRES_SPAPI_E_DUPLICATE_FOUND",
    5037             :                 "An existing device was found that is a duplicate of the device being manually installed."
    5038             :         },
    5039             :         {
    5040             :                 HRES_SPAPI_E_NO_DRIVER_SELECTED,
    5041             :                 "HRES_SPAPI_E_NO_DRIVER_SELECTED",
    5042             :                 "There is no driver selected for the device information set or element."
    5043             :         },
    5044             :         {
    5045             :                 HRES_SPAPI_E_KEY_DOES_NOT_EXIST,
    5046             :                 "HRES_SPAPI_E_KEY_DOES_NOT_EXIST",
    5047             :                 "The requested device registry key does not exist."
    5048             :         },
    5049             :         {
    5050             :                 HRES_SPAPI_E_INVALID_DEVINST_NAME,
    5051             :                 "HRES_SPAPI_E_INVALID_DEVINST_NAME",
    5052             :                 "The device instance name is invalid."
    5053             :         },
    5054             :         {
    5055             :                 HRES_SPAPI_E_INVALID_CLASS,
    5056             :                 "HRES_SPAPI_E_INVALID_CLASS",
    5057             :                 "The install class is not present or is invalid."
    5058             :         },
    5059             :         {
    5060             :                 HRES_SPAPI_E_DEVINST_ALREADY_EXISTS,
    5061             :                 "HRES_SPAPI_E_DEVINST_ALREADY_EXISTS",
    5062             :                 "The device instance cannot be created because it already exists."
    5063             :         },
    5064             :         {
    5065             :                 HRES_SPAPI_E_DEVINFO_NOT_REGISTERED,
    5066             :                 "HRES_SPAPI_E_DEVINFO_NOT_REGISTERED",
    5067             :                 "The operation cannot be performed on a device information element that has not been registered."
    5068             :         },
    5069             :         {
    5070             :                 HRES_SPAPI_E_INVALID_REG_PROPERTY,
    5071             :                 "HRES_SPAPI_E_INVALID_REG_PROPERTY",
    5072             :                 "The device property code is invalid."
    5073             :         },
    5074             :         {
    5075             :                 HRES_SPAPI_E_NO_INF,
    5076             :                 "HRES_SPAPI_E_NO_INF",
    5077             :                 "The INF from which a driver list is to be built does not exist."
    5078             :         },
    5079             :         {
    5080             :                 HRES_SPAPI_E_NO_SUCH_DEVINST,
    5081             :                 "HRES_SPAPI_E_NO_SUCH_DEVINST",
    5082             :                 "The device instance does not exist in the hardware tree."
    5083             :         },
    5084             :         {
    5085             :                 HRES_SPAPI_E_CANT_LOAD_CLASS_ICON,
    5086             :                 "HRES_SPAPI_E_CANT_LOAD_CLASS_ICON",
    5087             :                 "The icon representing this install class cannot be loaded."
    5088             :         },
    5089             :         {
    5090             :                 HRES_SPAPI_E_INVALID_CLASS_INSTALLER,
    5091             :                 "HRES_SPAPI_E_INVALID_CLASS_INSTALLER",
    5092             :                 "The class installer registry entry is invalid."
    5093             :         },
    5094             :         {
    5095             :                 HRES_SPAPI_E_DI_DO_DEFAULT,
    5096             :                 "HRES_SPAPI_E_DI_DO_DEFAULT",
    5097             :                 "The class installer has indicated that the default action should be performed for this installation request."
    5098             :         },
    5099             :         {
    5100             :                 HRES_SPAPI_E_DI_NOFILECOPY,
    5101             :                 "HRES_SPAPI_E_DI_NOFILECOPY",
    5102             :                 "The operation does not require any files to be copied."
    5103             :         },
    5104             :         {
    5105             :                 HRES_SPAPI_E_INVALID_HWPROFILE,
    5106             :                 "HRES_SPAPI_E_INVALID_HWPROFILE",
    5107             :                 "The specified hardware profile does not exist."
    5108             :         },
    5109             :         {
    5110             :                 HRES_SPAPI_E_NO_DEVICE_SELECTED,
    5111             :                 "HRES_SPAPI_E_NO_DEVICE_SELECTED",
    5112             :                 "There is no device information element currently selected for this device information set."
    5113             :         },
    5114             :         {
    5115             :                 HRES_SPAPI_E_DEVINFO_LIST_LOCKED,
    5116             :                 "HRES_SPAPI_E_DEVINFO_LIST_LOCKED",
    5117             :                 "The operation cannot be performed because the device information set is locked."
    5118             :         },
    5119             :         {
    5120             :                 HRES_SPAPI_E_DEVINFO_DATA_LOCKED,
    5121             :                 "HRES_SPAPI_E_DEVINFO_DATA_LOCKED",
    5122             :                 "The operation cannot be performed because the device information element is locked."
    5123             :         },
    5124             :         {
    5125             :                 HRES_SPAPI_E_DI_BAD_PATH,
    5126             :                 "HRES_SPAPI_E_DI_BAD_PATH",
    5127             :                 "The specified path does not contain any applicable device INFs."
    5128             :         },
    5129             :         {
    5130             :                 HRES_SPAPI_E_NO_CLASSINSTALL_PARAMS,
    5131             :                 "HRES_SPAPI_E_NO_CLASSINSTALL_PARAMS",
    5132             :                 "No class installer parameters have been set for the device information set or element."
    5133             :         },
    5134             :         {
    5135             :                 HRES_SPAPI_E_FILEQUEUE_LOCKED,
    5136             :                 "HRES_SPAPI_E_FILEQUEUE_LOCKED",
    5137             :                 "The operation cannot be performed because the file queue is locked."
    5138             :         },
    5139             :         {
    5140             :                 HRES_SPAPI_E_BAD_SERVICE_INSTALLSECT,
    5141             :                 "HRES_SPAPI_E_BAD_SERVICE_INSTALLSECT",
    5142             :                 "A service installation section in this INF is invalid."
    5143             :         },
    5144             :         {
    5145             :                 HRES_SPAPI_E_NO_CLASS_DRIVER_LIST,
    5146             :                 "HRES_SPAPI_E_NO_CLASS_DRIVER_LIST",
    5147             :                 "There is no class driver list for the device information element."
    5148             :         },
    5149             :         {
    5150             :                 HRES_SPAPI_E_NO_ASSOCIATED_SERVICE,
    5151             :                 "HRES_SPAPI_E_NO_ASSOCIATED_SERVICE",
    5152             :                 "The installation failed because a function driver was not specified for this device instance."
    5153             :         },
    5154             :         {
    5155             :                 HRES_SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE,
    5156             :                 "HRES_SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE",
    5157             :                 "There is presently no default device interface designated for this interface class."
    5158             :         },
    5159             :         {
    5160             :                 HRES_SPAPI_E_DEVICE_INTERFACE_ACTIVE,
    5161             :                 "HRES_SPAPI_E_DEVICE_INTERFACE_ACTIVE",
    5162             :                 "The operation cannot be performed because the device interface is currently active."
    5163             :         },
    5164             :         {
    5165             :                 HRES_SPAPI_E_DEVICE_INTERFACE_REMOVED,
    5166             :                 "HRES_SPAPI_E_DEVICE_INTERFACE_REMOVED",
    5167             :                 "The operation cannot be performed because the device interface has been removed from the system."
    5168             :         },
    5169             :         {
    5170             :                 HRES_SPAPI_E_BAD_INTERFACE_INSTALLSECT,
    5171             :                 "HRES_SPAPI_E_BAD_INTERFACE_INSTALLSECT",
    5172             :                 "An interface installation section in this INF is invalid."
    5173             :         },
    5174             :         {
    5175             :                 HRES_SPAPI_E_NO_SUCH_INTERFACE_CLASS,
    5176             :                 "HRES_SPAPI_E_NO_SUCH_INTERFACE_CLASS",
    5177             :                 "This interface class does not exist in the system."
    5178             :         },
    5179             :         {
    5180             :                 HRES_SPAPI_E_INVALID_REFERENCE_STRING,
    5181             :                 "HRES_SPAPI_E_INVALID_REFERENCE_STRING",
    5182             :                 "The reference string supplied for this interface device is invalid."
    5183             :         },
    5184             :         {
    5185             :                 HRES_SPAPI_E_INVALID_MACHINENAME,
    5186             :                 "HRES_SPAPI_E_INVALID_MACHINENAME",
    5187             :                 "The specified machine name does not conform to Universal Naming Convention (UNCs)."
    5188             :         },
    5189             :         {
    5190             :                 HRES_SPAPI_E_REMOTE_COMM_FAILURE,
    5191             :                 "HRES_SPAPI_E_REMOTE_COMM_FAILURE",
    5192             :                 "A general remote communication error occurred."
    5193             :         },
    5194             :         {
    5195             :                 HRES_SPAPI_E_MACHINE_UNAVAILABLE,
    5196             :                 "HRES_SPAPI_E_MACHINE_UNAVAILABLE",
    5197             :                 "The machine selected for remote communication is not available at this time."
    5198             :         },
    5199             :         {
    5200             :                 HRES_SPAPI_E_NO_CONFIGMGR_SERVICES,
    5201             :                 "HRES_SPAPI_E_NO_CONFIGMGR_SERVICES",
    5202             :                 "The Plug and Play service is not available on the remote machine."
    5203             :         },
    5204             :         {
    5205             :                 HRES_SPAPI_E_INVALID_PROPPAGE_PROVIDER,
    5206             :                 "HRES_SPAPI_E_INVALID_PROPPAGE_PROVIDER",
    5207             :                 "The property page provider registry entry is invalid."
    5208             :         },
    5209             :         {
    5210             :                 HRES_SPAPI_E_NO_SUCH_DEVICE_INTERFACE,
    5211             :                 "HRES_SPAPI_E_NO_SUCH_DEVICE_INTERFACE",
    5212             :                 "The requested device interface is not present in the system."
    5213             :         },
    5214             :         {
    5215             :                 HRES_SPAPI_E_DI_POSTPROCESSING_REQUIRED,
    5216             :                 "HRES_SPAPI_E_DI_POSTPROCESSING_REQUIRED",
    5217             :                 "The device's co-installer has additional work to perform after installation is complete."
    5218             :         },
    5219             :         {
    5220             :                 HRES_SPAPI_E_INVALID_COINSTALLER,
    5221             :                 "HRES_SPAPI_E_INVALID_COINSTALLER",
    5222             :                 "The device's co-installer is invalid."
    5223             :         },
    5224             :         {
    5225             :                 HRES_SPAPI_E_NO_COMPAT_DRIVERS,
    5226             :                 "HRES_SPAPI_E_NO_COMPAT_DRIVERS",
    5227             :                 "There are no compatible drivers for this device."
    5228             :         },
    5229             :         {
    5230             :                 HRES_SPAPI_E_NO_DEVICE_ICON,
    5231             :                 "HRES_SPAPI_E_NO_DEVICE_ICON",
    5232             :                 "There is no icon that represents this device or device type."
    5233             :         },
    5234             :         {
    5235             :                 HRES_SPAPI_E_INVALID_INF_LOGCONFIG,
    5236             :                 "HRES_SPAPI_E_INVALID_INF_LOGCONFIG",
    5237             :                 "A logical configuration specified in this INF is invalid."
    5238             :         },
    5239             :         {
    5240             :                 HRES_SPAPI_E_DI_DONT_INSTALL,
    5241             :                 "HRES_SPAPI_E_DI_DONT_INSTALL",
    5242             :                 "The class installer has denied the request to install or upgrade this device."
    5243             :         },
    5244             :         {
    5245             :                 HRES_SPAPI_E_INVALID_FILTER_DRIVER,
    5246             :                 "HRES_SPAPI_E_INVALID_FILTER_DRIVER",
    5247             :                 "One of the filter drivers installed for this device is invalid."
    5248             :         },
    5249             :         {
    5250             :                 HRES_SPAPI_E_NON_WINDOWS_NT_DRIVER,
    5251             :                 "HRES_SPAPI_E_NON_WINDOWS_NT_DRIVER",
    5252             :                 "The driver selected for this device does not support Windows XP operating system."
    5253             :         },
    5254             :         {
    5255             :                 HRES_SPAPI_E_NON_WINDOWS_DRIVER,
    5256             :                 "HRES_SPAPI_E_NON_WINDOWS_DRIVER",
    5257             :                 "The driver selected for this device does not support Windows."
    5258             :         },
    5259             :         {
    5260             :                 HRES_SPAPI_E_NO_CATALOG_FOR_OEM_INF,
    5261             :                 "HRES_SPAPI_E_NO_CATALOG_FOR_OEM_INF",
    5262             :                 "The third-party INF does not contain digital signature information."
    5263             :         },
    5264             :         {
    5265             :                 HRES_SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE,
    5266             :                 "HRES_SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE",
    5267             :                 "An invalid attempt was made to use a device installation file queue for verification of digital signatures relative to other platforms."
    5268             :         },
    5269             :         {
    5270             :                 HRES_SPAPI_E_NOT_DISABLEABLE,
    5271             :                 "HRES_SPAPI_E_NOT_DISABLEABLE",
    5272             :                 "The device cannot be disabled."
    5273             :         },
    5274             :         {
    5275             :                 HRES_SPAPI_E_CANT_REMOVE_DEVINST,
    5276             :                 "HRES_SPAPI_E_CANT_REMOVE_DEVINST",
    5277             :                 "The device could not be dynamically removed."
    5278             :         },
    5279             :         {
    5280             :                 HRES_SPAPI_E_INVALID_TARGET,
    5281             :                 "HRES_SPAPI_E_INVALID_TARGET",
    5282             :                 "Cannot copy to specified target."
    5283             :         },
    5284             :         {
    5285             :                 HRES_SPAPI_E_DRIVER_NONNATIVE,
    5286             :                 "HRES_SPAPI_E_DRIVER_NONNATIVE",
    5287             :                 "Driver is not intended for this platform."
    5288             :         },
    5289             :         {
    5290             :                 HRES_SPAPI_E_IN_WOW64,
    5291             :                 "HRES_SPAPI_E_IN_WOW64",
    5292             :                 "Operation not allowed in WOW64."
    5293             :         },
    5294             :         {
    5295             :                 HRES_SPAPI_E_SET_SYSTEM_RESTORE_POINT,
    5296             :                 "HRES_SPAPI_E_SET_SYSTEM_RESTORE_POINT",
    5297             :                 "The operation involving unsigned file copying was rolled back, so that a system restore point could be set."
    5298             :         },
    5299             :         {
    5300             :                 HRES_SPAPI_E_INCORRECTLY_COPIED_INF,
    5301             :                 "HRES_SPAPI_E_INCORRECTLY_COPIED_INF",
    5302             :                 "An INF was copied into the Windows INF directory in an improper manner."
    5303             :         },
    5304             :         {
    5305             :                 HRES_SPAPI_E_SCE_DISABLED,
    5306             :                 "HRES_SPAPI_E_SCE_DISABLED",
    5307             :                 "The Security Configuration Editor (SCE) APIs have been disabled on this embedded product."
    5308             :         },
    5309             :         {
    5310             :                 HRES_SPAPI_E_UNKNOWN_EXCEPTION,
    5311             :                 "HRES_SPAPI_E_UNKNOWN_EXCEPTION",
    5312             :                 "An unknown exception was encountered."
    5313             :         },
    5314             :         {
    5315             :                 HRES_SPAPI_E_PNP_REGISTRY_ERROR,
    5316             :                 "HRES_SPAPI_E_PNP_REGISTRY_ERROR",
    5317             :                 "A problem was encountered when accessing the Plug and Play registry database."
    5318             :         },
    5319             :         {
    5320             :                 HRES_SPAPI_E_REMOTE_REQUEST_UNSUPPORTED,
    5321             :                 "HRES_SPAPI_E_REMOTE_REQUEST_UNSUPPORTED",
    5322             :                 "The requested operation is not supported for a remote machine."
    5323             :         },
    5324             :         {
    5325             :                 HRES_SPAPI_E_NOT_AN_INSTALLED_OEM_INF,
    5326             :                 "HRES_SPAPI_E_NOT_AN_INSTALLED_OEM_INF",
    5327             :                 "The specified file is not an installed original equipment manufacturer (OEM) INF."
    5328             :         },
    5329             :         {
    5330             :                 HRES_SPAPI_E_INF_IN_USE_BY_DEVICES,
    5331             :                 "HRES_SPAPI_E_INF_IN_USE_BY_DEVICES",
    5332             :                 "One or more devices are presently installed using the specified INF."
    5333             :         },
    5334             :         {
    5335             :                 HRES_SPAPI_E_DI_FUNCTION_OBSOLETE,
    5336             :                 "HRES_SPAPI_E_DI_FUNCTION_OBSOLETE",
    5337             :                 "The requested device install operation is obsolete."
    5338             :         },
    5339             :         {
    5340             :                 HRES_SPAPI_E_NO_AUTHENTICODE_CATALOG,
    5341             :                 "HRES_SPAPI_E_NO_AUTHENTICODE_CATALOG",
    5342             :                 "A file could not be verified because it does not have an associated catalog signed via Authenticode."
    5343             :         },
    5344             :         {
    5345             :                 HRES_SPAPI_E_AUTHENTICODE_DISALLOWED,
    5346             :                 "HRES_SPAPI_E_AUTHENTICODE_DISALLOWED",
    5347             :                 "Authenticode signature verification is not supported for the specified INF."
    5348             :         },
    5349             :         {
    5350             :                 HRES_SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER,
    5351             :                 "HRES_SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER",
    5352             :                 "The INF was signed with an Authenticode catalog from a trusted publisher."
    5353             :         },
    5354             :         {
    5355             :                 HRES_SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED,
    5356             :                 "HRES_SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED",
    5357             :                 "The publisher of an Authenticode-signed catalog has not yet been established as trusted."
    5358             :         },
    5359             :         {
    5360             :                 HRES_SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED,
    5361             :                 "HRES_SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED",
    5362             :                 "The publisher of an Authenticode-signed catalog was not established as trusted."
    5363             :         },
    5364             :         {
    5365             :                 HRES_SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH,
    5366             :                 "HRES_SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH",
    5367             :                 "The software was tested for compliance with Windows logo requirements on a different version of Windows and might not be compatible with this version."
    5368             :         },
    5369             :         {
    5370             :                 HRES_SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE,
    5371             :                 "HRES_SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE",
    5372             :                 "The file can be validated only by a catalog signed via Authenticode."
    5373             :         },
    5374             :         {
    5375             :                 HRES_SPAPI_E_DEVICE_INSTALLER_NOT_READY,
    5376             :                 "HRES_SPAPI_E_DEVICE_INSTALLER_NOT_READY",
    5377             :                 "One of the installers for this device cannot perform the installation at this time."
    5378             :         },
    5379             :         {
    5380             :                 HRES_SPAPI_E_DRIVER_STORE_ADD_FAILED,
    5381             :                 "HRES_SPAPI_E_DRIVER_STORE_ADD_FAILED",
    5382             :                 "A problem was encountered while attempting to add the driver to the store."
    5383             :         },
    5384             :         {
    5385             :                 HRES_SPAPI_E_DEVICE_INSTALL_BLOCKED,
    5386             :                 "HRES_SPAPI_E_DEVICE_INSTALL_BLOCKED",
    5387             :                 "The installation of this device is forbidden by system policy. Contact your system administrator."
    5388             :         },
    5389             :         {
    5390             :                 HRES_SPAPI_E_DRIVER_INSTALL_BLOCKED,
    5391             :                 "HRES_SPAPI_E_DRIVER_INSTALL_BLOCKED",
    5392             :                 "The installation of this driver is forbidden by system policy. Contact your system administrator."
    5393             :         },
    5394             :         {
    5395             :                 HRES_SPAPI_E_WRONG_INF_TYPE,
    5396             :                 "HRES_SPAPI_E_WRONG_INF_TYPE",
    5397             :                 "The specified INF is the wrong type for this operation."
    5398             :         },
    5399             :         {
    5400             :                 HRES_SPAPI_E_FILE_HASH_NOT_IN_CATALOG,
    5401             :                 "HRES_SPAPI_E_FILE_HASH_NOT_IN_CATALOG",
    5402             :                 "The hash for the file is not present in the specified catalog file. The file is likely corrupt or the victim of tampering."
    5403             :         },
    5404             :         {
    5405             :                 HRES_SPAPI_E_DRIVER_STORE_DELETE_FAILED,
    5406             :                 "HRES_SPAPI_E_DRIVER_STORE_DELETE_FAILED",
    5407             :                 "A problem was encountered while attempting to delete the driver from the store."
    5408             :         },
    5409             :         {
    5410             :                 HRES_SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW,
    5411             :                 "HRES_SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW",
    5412             :                 "An unrecoverable stack overflow was encountered."
    5413             :         },
    5414             :         {
    5415             :                 HRES_SPAPI_E_ERROR_NOT_INSTALLED,
    5416             :                 "HRES_SPAPI_E_ERROR_NOT_INSTALLED",
    5417             :                 "No installed components were detected."
    5418             :         },
    5419             :         {
    5420             :                 HRES_SCARD_F_INTERNAL_ERROR,
    5421             :                 "HRES_SCARD_F_INTERNAL_ERROR",
    5422             :                 "An internal consistency check failed."
    5423             :         },
    5424             :         {
    5425             :                 HRES_SCARD_E_CANCELLED,
    5426             :                 "HRES_SCARD_E_CANCELLED",
    5427             :                 "The action was canceled by an SCardCancel request."
    5428             :         },
    5429             :         {
    5430             :                 HRES_SCARD_E_INVALID_HANDLE,
    5431             :                 "HRES_SCARD_E_INVALID_HANDLE",
    5432             :                 "The supplied handle was invalid."
    5433             :         },
    5434             :         {
    5435             :                 HRES_SCARD_E_INVALID_PARAMETER,
    5436             :                 "HRES_SCARD_E_INVALID_PARAMETER",
    5437             :                 "One or more of the supplied parameters could not be properly interpreted."
    5438             :         },
    5439             :         {
    5440             :                 HRES_SCARD_E_INVALID_TARGET,
    5441             :                 "HRES_SCARD_E_INVALID_TARGET",
    5442             :                 "Registry startup information is missing or invalid."
    5443             :         },
    5444             :         {
    5445             :                 HRES_SCARD_E_NO_MEMORY,
    5446             :                 "HRES_SCARD_E_NO_MEMORY",
    5447             :                 "Not enough memory available to complete this command."
    5448             :         },
    5449             :         {
    5450             :                 HRES_SCARD_F_WAITED_TOO_LONG,
    5451             :                 "HRES_SCARD_F_WAITED_TOO_LONG",
    5452             :                 "An internal consistency timer has expired."
    5453             :         },
    5454             :         {
    5455             :                 HRES_SCARD_E_INSUFFICIENT_BUFFER,
    5456             :                 "HRES_SCARD_E_INSUFFICIENT_BUFFER",
    5457             :                 "The data buffer to receive returned data is too small for the returned data."
    5458             :         },
    5459             :         {
    5460             :                 HRES_SCARD_E_UNKNOWN_READER,
    5461             :                 "HRES_SCARD_E_UNKNOWN_READER",
    5462             :                 "The specified reader name is not recognized."
    5463             :         },
    5464             :         {
    5465             :                 HRES_SCARD_E_TIMEOUT,
    5466             :                 "HRES_SCARD_E_TIMEOUT",
    5467             :                 "The user-specified time-out value has expired."
    5468             :         },
    5469             :         {
    5470             :                 HRES_SCARD_E_SHARING_VIOLATION,
    5471             :                 "HRES_SCARD_E_SHARING_VIOLATION",
    5472             :                 "The smart card cannot be accessed because of other connections outstanding."
    5473             :         },
    5474             :         {
    5475             :                 HRES_SCARD_E_NO_SMARTCARD,
    5476             :                 "HRES_SCARD_E_NO_SMARTCARD",
    5477             :                 "The operation requires a smart card, but no smart card is currently in the device."
    5478             :         },
    5479             :         {
    5480             :                 HRES_SCARD_E_UNKNOWN_CARD,
    5481             :                 "HRES_SCARD_E_UNKNOWN_CARD",
    5482             :                 "The specified smart card name is not recognized."
    5483             :         },
    5484             :         {
    5485             :                 HRES_SCARD_E_CANT_DISPOSE,
    5486             :                 "HRES_SCARD_E_CANT_DISPOSE",
    5487             :                 "The system could not dispose of the media in the requested manner."
    5488             :         },
    5489             :         {
    5490             :                 HRES_SCARD_E_PROTO_MISMATCH,
    5491             :                 "HRES_SCARD_E_PROTO_MISMATCH",
    5492             :                 "The requested protocols are incompatible with the protocol currently in use with the smart card."
    5493             :         },
    5494             :         {
    5495             :                 HRES_SCARD_E_NOT_READY,
    5496             :                 "HRES_SCARD_E_NOT_READY",
    5497             :                 "The reader or smart card is not ready to accept commands."
    5498             :         },
    5499             :         {
    5500             :                 HRES_SCARD_E_INVALID_VALUE,
    5501             :                 "HRES_SCARD_E_INVALID_VALUE",
    5502             :                 "One or more of the supplied parameters values could not be properly interpreted."
    5503             :         },
    5504             :         {
    5505             :                 HRES_SCARD_E_SYSTEM_CANCELLED,
    5506             :                 "HRES_SCARD_E_SYSTEM_CANCELLED",
    5507             :                 "The action was canceled by the system, presumably to log off or shut down."
    5508             :         },
    5509             :         {
    5510             :                 HRES_SCARD_F_COMM_ERROR,
    5511             :                 "HRES_SCARD_F_COMM_ERROR",
    5512             :                 "An internal communications error has been detected."
    5513             :         },
    5514             :         {
    5515             :                 HRES_SCARD_F_UNKNOWN_ERROR,
    5516             :                 "HRES_SCARD_F_UNKNOWN_ERROR",
    5517             :                 "An internal error has been detected, but the source is unknown."
    5518             :         },
    5519             :         {
    5520             :                 HRES_SCARD_E_INVALID_ATR,
    5521             :                 "HRES_SCARD_E_INVALID_ATR",
    5522             :                 "An automatic terminal recognition (ATR) obtained from the registry is not a valid ATR string."
    5523             :         },
    5524             :         {
    5525             :                 HRES_SCARD_E_NOT_TRANSACTED,
    5526             :                 "HRES_SCARD_E_NOT_TRANSACTED",
    5527             :                 "An attempt was made to end a nonexistent transaction."
    5528             :         },
    5529             :         {
    5530             :                 HRES_SCARD_E_READER_UNAVAILABLE,
    5531             :                 "HRES_SCARD_E_READER_UNAVAILABLE",
    5532             :                 "The specified reader is not currently available for use."
    5533             :         },
    5534             :         {
    5535             :                 HRES_SCARD_P_SHUTDOWN,
    5536             :                 "HRES_SCARD_P_SHUTDOWN",
    5537             :                 "The operation has been aborted to allow the server application to exit."
    5538             :         },
    5539             :         {
    5540             :                 HRES_SCARD_E_PCI_TOO_SMALL,
    5541             :                 "HRES_SCARD_E_PCI_TOO_SMALL",
    5542             :                 "The peripheral component interconnect (PCI) Receive buffer was too small."
    5543             :         },
    5544             :         {
    5545             :                 HRES_SCARD_E_READER_UNSUPPORTED,
    5546             :                 "HRES_SCARD_E_READER_UNSUPPORTED",
    5547             :                 "The reader driver does not meet minimal requirements for support."
    5548             :         },
    5549             :         {
    5550             :                 HRES_SCARD_E_DUPLICATE_READER,
    5551             :                 "HRES_SCARD_E_DUPLICATE_READER",
    5552             :                 "The reader driver did not produce a unique reader name."
    5553             :         },
    5554             :         {
    5555             :                 HRES_SCARD_E_CARD_UNSUPPORTED,
    5556             :                 "HRES_SCARD_E_CARD_UNSUPPORTED",
    5557             :                 "The smart card does not meet minimal requirements for support."
    5558             :         },
    5559             :         {
    5560             :                 HRES_SCARD_E_NO_SERVICE,
    5561             :                 "HRES_SCARD_E_NO_SERVICE",
    5562             :                 "The smart card resource manager is not running."
    5563             :         },
    5564             :         {
    5565             :                 HRES_SCARD_E_SERVICE_STOPPED,
    5566             :                 "HRES_SCARD_E_SERVICE_STOPPED",
    5567             :                 "The smart card resource manager has shut down."
    5568             :         },
    5569             :         {
    5570             :                 HRES_SCARD_E_UNEXPECTED,
    5571             :                 "HRES_SCARD_E_UNEXPECTED",
    5572             :                 "An unexpected card error has occurred."
    5573             :         },
    5574             :         {
    5575             :                 HRES_SCARD_E_ICC_INSTALLATION,
    5576             :                 "HRES_SCARD_E_ICC_INSTALLATION",
    5577             :                 "No primary provider can be found for the smart card."
    5578             :         },
    5579             :         {
    5580             :                 HRES_SCARD_E_ICC_CREATEORDER,
    5581             :                 "HRES_SCARD_E_ICC_CREATEORDER",
    5582             :                 "The requested order of object creation is not supported."
    5583             :         },
    5584             :         {
    5585             :                 HRES_SCARD_E_UNSUPPORTED_FEATURE,
    5586             :                 "HRES_SCARD_E_UNSUPPORTED_FEATURE",
    5587             :                 "This smart card does not support the requested feature."
    5588             :         },
    5589             :         {
    5590             :                 HRES_SCARD_E_DIR_NOT_FOUND,
    5591             :                 "HRES_SCARD_E_DIR_NOT_FOUND",
    5592             :                 "The identified directory does not exist in the smart card."
    5593             :         },
    5594             :         {
    5595             :                 HRES_SCARD_E_FILE_NOT_FOUND,
    5596             :                 "HRES_SCARD_E_FILE_NOT_FOUND",
    5597             :                 "The identified file does not exist in the smart card."
    5598             :         },
    5599             :         {
    5600             :                 HRES_SCARD_E_NO_DIR,
    5601             :                 "HRES_SCARD_E_NO_DIR",
    5602             :                 "The supplied path does not represent a smart card directory."
    5603             :         },
    5604             :         {
    5605             :                 HRES_SCARD_E_NO_FILE,
    5606             :                 "HRES_SCARD_E_NO_FILE",
    5607             :                 "The supplied path does not represent a smart card file."
    5608             :         },
    5609             :         {
    5610             :                 HRES_SCARD_E_NO_ACCESS,
    5611             :                 "HRES_SCARD_E_NO_ACCESS",
    5612             :                 "Access is denied to this file."
    5613             :         },
    5614             :         {
    5615             :                 HRES_SCARD_E_WRITE_TOO_MANY,
    5616             :                 "HRES_SCARD_E_WRITE_TOO_MANY",
    5617             :                 "The smart card does not have enough memory to store the information."
    5618             :         },
    5619             :         {
    5620             :                 HRES_SCARD_E_BAD_SEEK,
    5621             :                 "HRES_SCARD_E_BAD_SEEK",
    5622             :                 "There was an error trying to set the smart card file object pointer."
    5623             :         },
    5624             :         {
    5625             :                 HRES_SCARD_E_INVALID_CHV,
    5626             :                 "HRES_SCARD_E_INVALID_CHV",
    5627             :                 "The supplied PIN is incorrect."
    5628             :         },
    5629             :         {
    5630             :                 HRES_SCARD_E_UNKNOWN_RES_MNG,
    5631             :                 "HRES_SCARD_E_UNKNOWN_RES_MNG",
    5632             :                 "An unrecognized error code was returned from a layered component."
    5633             :         },
    5634             :         {
    5635             :                 HRES_SCARD_E_NO_SUCH_CERTIFICATE,
    5636             :                 "HRES_SCARD_E_NO_SUCH_CERTIFICATE",
    5637             :                 "The requested certificate does not exist."
    5638             :         },
    5639             :         {
    5640             :                 HRES_SCARD_E_CERTIFICATE_UNAVAILABLE,
    5641             :                 "HRES_SCARD_E_CERTIFICATE_UNAVAILABLE",
    5642             :                 "The requested certificate could not be obtained."
    5643             :         },
    5644             :         {
    5645             :                 HRES_SCARD_E_NO_READERS_AVAILABLE,
    5646             :                 "HRES_SCARD_E_NO_READERS_AVAILABLE",
    5647             :                 "Cannot find a smart card reader."
    5648             :         },
    5649             :         {
    5650             :                 HRES_SCARD_E_COMM_DATA_LOST,
    5651             :                 "HRES_SCARD_E_COMM_DATA_LOST",
    5652             :                 "A communications error with the smart card has been detected. Retry the operation."
    5653             :         },
    5654             :         {
    5655             :                 HRES_SCARD_E_NO_KEY_CONTAINER,
    5656             :                 "HRES_SCARD_E_NO_KEY_CONTAINER",
    5657             :                 "The requested key container does not exist on the smart card."
    5658             :         },
    5659             :         {
    5660             :                 HRES_SCARD_E_SERVER_TOO_BUSY,
    5661             :                 "HRES_SCARD_E_SERVER_TOO_BUSY",
    5662             :                 "The smart card resource manager is too busy to complete this operation."
    5663             :         },
    5664             :         {
    5665             :                 HRES_SCARD_W_UNSUPPORTED_CARD,
    5666             :                 "HRES_SCARD_W_UNSUPPORTED_CARD",
    5667             :                 "The reader cannot communicate with the smart card, due to ATR configuration conflicts."
    5668             :         },
    5669             :         {
    5670             :                 HRES_SCARD_W_UNRESPONSIVE_CARD,
    5671             :                 "HRES_SCARD_W_UNRESPONSIVE_CARD",
    5672             :                 "The smart card is not responding to a reset."
    5673             :         },
    5674             :         {
    5675             :                 HRES_SCARD_W_UNPOWERED_CARD,
    5676             :                 "HRES_SCARD_W_UNPOWERED_CARD",
    5677             :                 "Power has been removed from the smart card, so that further communication is not possible."
    5678             :         },
    5679             :         {
    5680             :                 HRES_SCARD_W_RESET_CARD,
    5681             :                 "HRES_SCARD_W_RESET_CARD",
    5682             :                 "The smart card has been reset, so any shared state information is invalid."
    5683             :         },
    5684             :         {
    5685             :                 HRES_SCARD_W_REMOVED_CARD,
    5686             :                 "HRES_SCARD_W_REMOVED_CARD",
    5687             :                 "The smart card has been removed, so that further communication is not possible."
    5688             :         },
    5689             :         {
    5690             :                 HRES_SCARD_W_SECURITY_VIOLATION,
    5691             :                 "HRES_SCARD_W_SECURITY_VIOLATION",
    5692             :                 "Access was denied because of a security violation."
    5693             :         },
    5694             :         {
    5695             :                 HRES_SCARD_W_WRONG_CHV,
    5696             :                 "HRES_SCARD_W_WRONG_CHV",
    5697             :                 "The card cannot be accessed because the wrong PIN was presented."
    5698             :         },
    5699             :         {
    5700             :                 HRES_SCARD_W_CHV_BLOCKED,
    5701             :                 "HRES_SCARD_W_CHV_BLOCKED",
    5702             :                 "The card cannot be accessed because the maximum number of PIN entry attempts has been reached."
    5703             :         },
    5704             :         {
    5705             :                 HRES_SCARD_W_EOF,
    5706             :                 "HRES_SCARD_W_EOF",
    5707             :                 "The end of the smart card file has been reached."
    5708             :         },
    5709             :         {
    5710             :                 HRES_SCARD_W_CANCELLED_BY_USER,
    5711             :                 "HRES_SCARD_W_CANCELLED_BY_USER",
    5712             :                 "The action was canceled by the user."
    5713             :         },
    5714             :         {
    5715             :                 HRES_SCARD_W_CARD_NOT_AUTHENTICATED,
    5716             :                 "HRES_SCARD_W_CARD_NOT_AUTHENTICATED",
    5717             :                 "No PIN was presented to the smart card."
    5718             :         },
    5719             :         {
    5720             :                 HRES_COMADMIN_E_OBJECTERRORS,
    5721             :                 "HRES_COMADMIN_E_OBJECTERRORS",
    5722             :                 "Errors occurred accessing one or more objects—the ErrorInfo collection contains more detail."
    5723             :         },
    5724             :         {
    5725             :                 HRES_COMADMIN_E_OBJECTINVALID,
    5726             :                 "HRES_COMADMIN_E_OBJECTINVALID",
    5727             :                 "One or more of the object's properties are missing or invalid."
    5728             :         },
    5729             :         {
    5730             :                 HRES_COMADMIN_E_KEYMISSING,
    5731             :                 "HRES_COMADMIN_E_KEYMISSING",
    5732             :                 "The object was not found in the catalog."
    5733             :         },
    5734             :         {
    5735             :                 HRES_COMADMIN_E_ALREADYINSTALLED,
    5736             :                 "HRES_COMADMIN_E_ALREADYINSTALLED",
    5737             :                 "The object is already registered."
    5738             :         },
    5739             :         {
    5740             :                 HRES_COMADMIN_E_APP_FILE_WRITEFAIL,
    5741             :                 "HRES_COMADMIN_E_APP_FILE_WRITEFAIL",
    5742             :                 "An error occurred writing to the application file."
    5743             :         },
    5744             :         {
    5745             :                 HRES_COMADMIN_E_APP_FILE_READFAIL,
    5746             :                 "HRES_COMADMIN_E_APP_FILE_READFAIL",
    5747             :                 "An error occurred reading the application file."
    5748             :         },
    5749             :         {
    5750             :                 HRES_COMADMIN_E_APP_FILE_VERSION,
    5751             :                 "HRES_COMADMIN_E_APP_FILE_VERSION",
    5752             :                 "Invalid version number in application file."
    5753             :         },
    5754             :         {
    5755             :                 HRES_COMADMIN_E_BADPATH,
    5756             :                 "HRES_COMADMIN_E_BADPATH",
    5757             :                 "The file path is invalid."
    5758             :         },
    5759             :         {
    5760             :                 HRES_COMADMIN_E_APPLICATIONEXISTS,
    5761             :                 "HRES_COMADMIN_E_APPLICATIONEXISTS",
    5762             :                 "The application is already installed."
    5763             :         },
    5764             :         {
    5765             :                 HRES_COMADMIN_E_ROLEEXISTS,
    5766             :                 "HRES_COMADMIN_E_ROLEEXISTS",
    5767             :                 "The role already exists."
    5768             :         },
    5769             :         {
    5770             :                 HRES_COMADMIN_E_CANTCOPYFILE,
    5771             :                 "HRES_COMADMIN_E_CANTCOPYFILE",
    5772             :                 "An error occurred copying the file."
    5773             :         },
    5774             :         {
    5775             :                 HRES_COMADMIN_E_NOUSER,
    5776             :                 "HRES_COMADMIN_E_NOUSER",
    5777             :                 "One or more users are not valid."
    5778             :         },
    5779             :         {
    5780             :                 HRES_COMADMIN_E_INVALIDUSERIDS,
    5781             :                 "HRES_COMADMIN_E_INVALIDUSERIDS",
    5782             :                 "One or more users in the application file are not valid."
    5783             :         },
    5784             :         {
    5785             :                 HRES_COMADMIN_E_NOREGISTRYCLSID,
    5786             :                 "HRES_COMADMIN_E_NOREGISTRYCLSID",
    5787             :                 "The component's CLSID is missing or corrupt."
    5788             :         },
    5789             :         {
    5790             :                 HRES_COMADMIN_E_BADREGISTRYPROGID,
    5791             :                 "HRES_COMADMIN_E_BADREGISTRYPROGID",
    5792             :                 "The component's programmatic ID is missing or corrupt."
    5793             :         },
    5794             :         {
    5795             :                 HRES_COMADMIN_E_AUTHENTICATIONLEVEL,
    5796             :                 "HRES_COMADMIN_E_AUTHENTICATIONLEVEL",
    5797             :                 "Unable to set required authentication level for update request."
    5798             :         },
    5799             :         {
    5800             :                 HRES_COMADMIN_E_USERPASSWDNOTVALID,
    5801             :                 "HRES_COMADMIN_E_USERPASSWDNOTVALID",
    5802             :                 "The identity or password set on the application is not valid."
    5803             :         },
    5804             :         {
    5805             :                 HRES_COMADMIN_E_CLSIDORIIDMISMATCH,
    5806             :                 "HRES_COMADMIN_E_CLSIDORIIDMISMATCH",
    5807             :                 "Application file CLSIDs or instance identifiers (IIDs) do not match corresponding DLLs."
    5808             :         },
    5809             :         {
    5810             :                 HRES_COMADMIN_E_REMOTEINTERFACE,
    5811             :                 "HRES_COMADMIN_E_REMOTEINTERFACE",
    5812             :                 "Interface information is either missing or changed."
    5813             :         },
    5814             :         {
    5815             :                 HRES_COMADMIN_E_DLLREGISTERSERVER,
    5816             :                 "HRES_COMADMIN_E_DLLREGISTERSERVER",
    5817             :                 "DllRegisterServer failed on component install."
    5818             :         },
    5819             :         {
    5820             :                 HRES_COMADMIN_E_NOSERVERSHARE,
    5821             :                 "HRES_COMADMIN_E_NOSERVERSHARE",
    5822             :                 "No server file share available."
    5823             :         },
    5824             :         {
    5825             :                 HRES_COMADMIN_E_DLLLOADFAILED,
    5826             :                 "HRES_COMADMIN_E_DLLLOADFAILED",
    5827             :                 "DLL could not be loaded."
    5828             :         },
    5829             :         {
    5830             :                 HRES_COMADMIN_E_BADREGISTRYLIBID,
    5831             :                 "HRES_COMADMIN_E_BADREGISTRYLIBID",
    5832             :                 "The registered TypeLib ID is not valid."
    5833             :         },
    5834             :         {
    5835             :                 HRES_COMADMIN_E_APPDIRNOTFOUND,
    5836             :                 "HRES_COMADMIN_E_APPDIRNOTFOUND",
    5837             :                 "Application install directory not found."
    5838             :         },
    5839             :         {
    5840             :                 HRES_COMADMIN_E_REGISTRARFAILED,
    5841             :                 "HRES_COMADMIN_E_REGISTRARFAILED",
    5842             :                 "Errors occurred while in the component registrar."
    5843             :         },
    5844             :         {
    5845             :                 HRES_COMADMIN_E_COMPFILE_DOESNOTEXIST,
    5846             :                 "HRES_COMADMIN_E_COMPFILE_DOESNOTEXIST",
    5847             :                 "The file does not exist."
    5848             :         },
    5849             :         {
    5850             :                 HRES_COMADMIN_E_COMPFILE_LOADDLLFAIL,
    5851             :                 "HRES_COMADMIN_E_COMPFILE_LOADDLLFAIL",
    5852             :                 "The DLL could not be loaded."
    5853             :         },
    5854             :         {
    5855             :                 HRES_COMADMIN_E_COMPFILE_GETCLASSOBJ,
    5856             :                 "HRES_COMADMIN_E_COMPFILE_GETCLASSOBJ",
    5857             :                 "GetClassObject failed in the DLL."
    5858             :         },
    5859             :         {
    5860             :                 HRES_COMADMIN_E_COMPFILE_CLASSNOTAVAIL,
    5861             :                 "HRES_COMADMIN_E_COMPFILE_CLASSNOTAVAIL",
    5862             :                 "The DLL does not support the components listed in the TypeLib."
    5863             :         },
    5864             :         {
    5865             :                 HRES_COMADMIN_E_COMPFILE_BADTLB,
    5866             :                 "HRES_COMADMIN_E_COMPFILE_BADTLB",
    5867             :                 "The TypeLib could not be loaded."
    5868             :         },
    5869             :         {
    5870             :                 HRES_COMADMIN_E_COMPFILE_NOTINSTALLABLE,
    5871             :                 "HRES_COMADMIN_E_COMPFILE_NOTINSTALLABLE",
    5872             :                 "The file does not contain components or component information."
    5873             :         },
    5874             :         {
    5875             :                 HRES_COMADMIN_E_NOTCHANGEABLE,
    5876             :                 "HRES_COMADMIN_E_NOTCHANGEABLE",
    5877             :                 "Changes to this object and its subobjects have been disabled."
    5878             :         },
    5879             :         {
    5880             :                 HRES_COMADMIN_E_NOTDELETEABLE,
    5881             :                 "HRES_COMADMIN_E_NOTDELETEABLE",
    5882             :                 "The delete function has been disabled for this object."
    5883             :         },
    5884             :         {
    5885             :                 HRES_COMADMIN_E_SESSION,
    5886             :                 "HRES_COMADMIN_E_SESSION",
    5887             :                 "The server catalog version is not supported."
    5888             :         },
    5889             :         {
    5890             :                 HRES_COMADMIN_E_COMP_MOVE_LOCKED,
    5891             :                 "HRES_COMADMIN_E_COMP_MOVE_LOCKED",
    5892             :                 "The component move was disallowed because the source or destination application is either a system application or currently locked against changes."
    5893             :         },
    5894             :         {
    5895             :                 HRES_COMADMIN_E_COMP_MOVE_BAD_DEST,
    5896             :                 "HRES_COMADMIN_E_COMP_MOVE_BAD_DEST",
    5897             :                 "The component move failed because the destination application no longer exists."
    5898             :         },
    5899             :         {
    5900             :                 HRES_COMADMIN_E_REGISTERTLB,
    5901             :                 "HRES_COMADMIN_E_REGISTERTLB",
    5902             :                 "The system was unable to register the TypeLib."
    5903             :         },
    5904             :         {
    5905             :                 HRES_COMADMIN_E_SYSTEMAPP,
    5906             :                 "HRES_COMADMIN_E_SYSTEMAPP",
    5907             :                 "This operation cannot be performed on the system application."
    5908             :         },
    5909             :         {
    5910             :                 HRES_COMADMIN_E_COMPFILE_NOREGISTRAR,
    5911             :                 "HRES_COMADMIN_E_COMPFILE_NOREGISTRAR",
    5912             :                 "The component registrar referenced in this file is not available."
    5913             :         },
    5914             :         {
    5915             :                 HRES_COMADMIN_E_COREQCOMPINSTALLED,
    5916             :                 "HRES_COMADMIN_E_COREQCOMPINSTALLED",
    5917             :                 "A component in the same DLL is already installed."
    5918             :         },
    5919             :         {
    5920             :                 HRES_COMADMIN_E_SERVICENOTINSTALLED,
    5921             :                 "HRES_COMADMIN_E_SERVICENOTINSTALLED",
    5922             :                 "The service is not installed."
    5923             :         },
    5924             :         {
    5925             :                 HRES_COMADMIN_E_PROPERTYSAVEFAILED,
    5926             :                 "HRES_COMADMIN_E_PROPERTYSAVEFAILED",
    5927             :                 "One or more property settings are either invalid or in conflict with each other."
    5928             :         },
    5929             :         {
    5930             :                 HRES_COMADMIN_E_OBJECTEXISTS,
    5931             :                 "HRES_COMADMIN_E_OBJECTEXISTS",
    5932             :                 "The object you are attempting to add or rename already exists."
    5933             :         },
    5934             :         {
    5935             :                 HRES_COMADMIN_E_COMPONENTEXISTS,
    5936             :                 "HRES_COMADMIN_E_COMPONENTEXISTS",
    5937             :                 "The component already exists."
    5938             :         },
    5939             :         {
    5940             :                 HRES_COMADMIN_E_REGFILE_CORRUPT,
    5941             :                 "HRES_COMADMIN_E_REGFILE_CORRUPT",
    5942             :                 "The registration file is corrupt."
    5943             :         },
    5944             :         {
    5945             :                 HRES_COMADMIN_E_PROPERTY_OVERFLOW,
    5946             :                 "HRES_COMADMIN_E_PROPERTY_OVERFLOW",
    5947             :                 "The property value is too large."
    5948             :         },
    5949             :         {
    5950             :                 HRES_COMADMIN_E_NOTINREGISTRY,
    5951             :                 "HRES_COMADMIN_E_NOTINREGISTRY",
    5952             :                 "Object was not found in registry."
    5953             :         },
    5954             :         {
    5955             :                 HRES_COMADMIN_E_OBJECTNOTPOOLABLE,
    5956             :                 "HRES_COMADMIN_E_OBJECTNOTPOOLABLE",
    5957             :                 "This object cannot be pooled."
    5958             :         },
    5959             :         {
    5960             :                 HRES_COMADMIN_E_APPLID_MATCHES_CLSID,
    5961             :                 "HRES_COMADMIN_E_APPLID_MATCHES_CLSID",
    5962             :                 "A CLSID with the same GUID as the new application ID is already installed on this machine."
    5963             :         },
    5964             :         {
    5965             :                 HRES_COMADMIN_E_ROLE_DOES_NOT_EXIST,
    5966             :                 "HRES_COMADMIN_E_ROLE_DOES_NOT_EXIST",
    5967             :                 "A role assigned to a component, interface, or method did not exist in the application."
    5968             :         },
    5969             :         {
    5970             :                 HRES_COMADMIN_E_START_APP_NEEDS_COMPONENTS,
    5971             :                 "HRES_COMADMIN_E_START_APP_NEEDS_COMPONENTS",
    5972             :                 "You must have components in an application to start the application."
    5973             :         },
    5974             :         {
    5975             :                 HRES_COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM,
    5976             :                 "HRES_COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM",
    5977             :                 "This operation is not enabled on this platform."
    5978             :         },
    5979             :         {
    5980             :                 HRES_COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY,
    5981             :                 "HRES_COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY",
    5982             :                 "Application proxy is not exportable."
    5983             :         },
    5984             :         {
    5985             :                 HRES_COMADMIN_E_CAN_NOT_START_APP,
    5986             :                 "HRES_COMADMIN_E_CAN_NOT_START_APP",
    5987             :                 "Failed to start application because it is either a library application or an application proxy."
    5988             :         },
    5989             :         {
    5990             :                 HRES_COMADMIN_E_CAN_NOT_EXPORT_SYS_APP,
    5991             :                 "HRES_COMADMIN_E_CAN_NOT_EXPORT_SYS_APP",
    5992             :                 "System application is not exportable."
    5993             :         },
    5994             :         {
    5995             :                 HRES_COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT,
    5996             :                 "HRES_COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT",
    5997             :                 "Cannot subscribe to this component (the component might have been imported)."
    5998             :         },
    5999             :         {
    6000             :                 HRES_COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER,
    6001             :                 "HRES_COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER",
    6002             :                 "An event class cannot also be a subscriber component."
    6003             :         },
    6004             :         {
    6005             :                 HRES_COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE,
    6006             :                 "HRES_COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE",
    6007             :                 "Library applications and application proxies are incompatible."
    6008             :         },
    6009             :         {
    6010             :                 HRES_COMADMIN_E_BASE_PARTITION_ONLY,
    6011             :                 "HRES_COMADMIN_E_BASE_PARTITION_ONLY",
    6012             :                 "This function is valid for the base partition only."
    6013             :         },
    6014             :         {
    6015             :                 HRES_COMADMIN_E_START_APP_DISABLED,
    6016             :                 "HRES_COMADMIN_E_START_APP_DISABLED",
    6017             :                 "You cannot start an application that has been disabled."
    6018             :         },
    6019             :         {
    6020             :                 HRES_COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME,
    6021             :                 "HRES_COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME",
    6022             :                 "The specified partition name is already in use on this computer."
    6023             :         },
    6024             :         {
    6025             :                 HRES_COMADMIN_E_CAT_INVALID_PARTITION_NAME,
    6026             :                 "HRES_COMADMIN_E_CAT_INVALID_PARTITION_NAME",
    6027             :                 "The specified partition name is invalid. Check that the name contains at least one visible character."
    6028             :         },
    6029             :         {
    6030             :                 HRES_COMADMIN_E_CAT_PARTITION_IN_USE,
    6031             :                 "HRES_COMADMIN_E_CAT_PARTITION_IN_USE",
    6032             :                 "The partition cannot be deleted because it is the default partition for one or more users."
    6033             :         },
    6034             :         {
    6035             :                 HRES_COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES,
    6036             :                 "HRES_COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES",
    6037             :                 "The partition cannot be exported because one or more components in the partition have the same file name."
    6038             :         },
    6039             :         {
    6040             :                 HRES_COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED,
    6041             :                 "HRES_COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED",
    6042             :                 "Applications that contain one or more imported components cannot be installed into a nonbase partition."
    6043             :         },
    6044             :         {
    6045             :                 HRES_COMADMIN_E_AMBIGUOUS_APPLICATION_NAME,
    6046             :                 "HRES_COMADMIN_E_AMBIGUOUS_APPLICATION_NAME",
    6047             :                 "The application name is not unique and cannot be resolved to an application ID."
    6048             :         },
    6049             :         {
    6050             :                 HRES_COMADMIN_E_AMBIGUOUS_PARTITION_NAME,
    6051             :                 "HRES_COMADMIN_E_AMBIGUOUS_PARTITION_NAME",
    6052             :                 "The partition name is not unique and cannot be resolved to a partition ID."
    6053             :         },
    6054             :         {
    6055             :                 HRES_COMADMIN_E_REGDB_NOTINITIALIZED,
    6056             :                 "HRES_COMADMIN_E_REGDB_NOTINITIALIZED",
    6057             :                 "The COM+ registry database has not been initialized."
    6058             :         },
    6059             :         {
    6060             :                 HRES_COMADMIN_E_REGDB_NOTOPEN,
    6061             :                 "HRES_COMADMIN_E_REGDB_NOTOPEN",
    6062             :                 "The COM+ registry database is not open."
    6063             :         },
    6064             :         {
    6065             :                 HRES_COMADMIN_E_REGDB_SYSTEMERR,
    6066             :                 "HRES_COMADMIN_E_REGDB_SYSTEMERR",
    6067             :                 "The COM+ registry database detected a system error."
    6068             :         },
    6069             :         {
    6070             :                 HRES_COMADMIN_E_REGDB_ALREADYRUNNING,
    6071             :                 "HRES_COMADMIN_E_REGDB_ALREADYRUNNING",
    6072             :                 "The COM+ registry database is already running."
    6073             :         },
    6074             :         {
    6075             :                 HRES_COMADMIN_E_MIG_VERSIONNOTSUPPORTED,
    6076             :                 "HRES_COMADMIN_E_MIG_VERSIONNOTSUPPORTED",
    6077             :                 "This version of the COM+ registry database cannot be migrated."
    6078             :         },
    6079             :         {
    6080             :                 HRES_COMADMIN_E_MIG_SCHEMANOTFOUND,
    6081             :                 "HRES_COMADMIN_E_MIG_SCHEMANOTFOUND",
    6082             :                 "The schema version to be migrated could not be found in the COM+ registry database."
    6083             :         },
    6084             :         {
    6085             :                 HRES_COMADMIN_E_CAT_BITNESSMISMATCH,
    6086             :                 "HRES_COMADMIN_E_CAT_BITNESSMISMATCH",
    6087             :                 "There was a type mismatch between binaries."
    6088             :         },
    6089             :         {
    6090             :                 HRES_COMADMIN_E_CAT_UNACCEPTABLEBITNESS,
    6091             :                 "HRES_COMADMIN_E_CAT_UNACCEPTABLEBITNESS",
    6092             :                 "A binary of unknown or invalid type was provided."
    6093             :         },
    6094             :         {
    6095             :                 HRES_COMADMIN_E_CAT_WRONGAPPBITNESS,
    6096             :                 "HRES_COMADMIN_E_CAT_WRONGAPPBITNESS",
    6097             :                 "There was a type mismatch between a binary and an application."
    6098             :         },
    6099             :         {
    6100             :                 HRES_COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED,
    6101             :                 "HRES_COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED",
    6102             :                 "The application cannot be paused or resumed."
    6103             :         },
    6104             :         {
    6105             :                 HRES_COMADMIN_E_CAT_SERVERFAULT,
    6106             :                 "HRES_COMADMIN_E_CAT_SERVERFAULT",
    6107             :                 "The COM+ catalog server threw an exception during execution."
    6108             :         },
    6109             :         {
    6110             :                 HRES_COMQC_E_APPLICATION_NOT_QUEUED,
    6111             :                 "HRES_COMQC_E_APPLICATION_NOT_QUEUED",
    6112             :                 "Only COM+ applications marked \"queued\" can be invoked using the \"queue\" moniker."
    6113             :         },
    6114             :         {
    6115             :                 HRES_COMQC_E_NO_QUEUEABLE_INTERFACES,
    6116             :                 "HRES_COMQC_E_NO_QUEUEABLE_INTERFACES",
    6117             :                 "At least one interface must be marked \"queued\" to create a queued component instance with the \"queue\" moniker."
    6118             :         },
    6119             :         {
    6120             :                 HRES_COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE,
    6121             :                 "HRES_COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE",
    6122             :                 "Message Queuing is required for the requested operation and is not installed."
    6123             :         },
    6124             :         {
    6125             :                 HRES_COMQC_E_NO_IPERSISTSTREAM,
    6126             :                 "HRES_COMQC_E_NO_IPERSISTSTREAM",
    6127             :                 "Unable to marshal an interface that does not support IPersistStream."
    6128             :         },
    6129             :         {
    6130             :                 HRES_COMQC_E_BAD_MESSAGE,
    6131             :                 "HRES_COMQC_E_BAD_MESSAGE",
    6132             :                 "The message is improperly formatted or was damaged in transit."
    6133             :         },
    6134             :         {
    6135             :                 HRES_COMQC_E_UNAUTHENTICATED,
    6136             :                 "HRES_COMQC_E_UNAUTHENTICATED",
    6137             :                 "An unauthenticated message was received by an application that accepts only authenticated messages."
    6138             :         },
    6139             :         {
    6140             :                 HRES_COMQC_E_UNTRUSTED_ENQUEUER,
    6141             :                 "HRES_COMQC_E_UNTRUSTED_ENQUEUER",
    6142             :                 "The message was requeued or moved by a user not in the QC Trusted User \"role\"."
    6143             :         },
    6144             :         {
    6145             :                 HRES_MSDTC_E_DUPLICATE_RESOURCE,
    6146             :                 "HRES_MSDTC_E_DUPLICATE_RESOURCE",
    6147             :                 "Cannot create a duplicate resource of type Distributed Transaction Coordinator."
    6148             :         },
    6149             :         {
    6150             :                 HRES_COMADMIN_E_OBJECT_PARENT_MISSING,
    6151             :                 "HRES_COMADMIN_E_OBJECT_PARENT_MISSING",
    6152             :                 "One of the objects being inserted or updated does not belong to a valid parent collection."
    6153             :         },
    6154             :         {
    6155             :                 HRES_COMADMIN_E_OBJECT_DOES_NOT_EXIST,
    6156             :                 "HRES_COMADMIN_E_OBJECT_DOES_NOT_EXIST",
    6157             :                 "One of the specified objects cannot be found."
    6158             :         },
    6159             :         {
    6160             :                 HRES_COMADMIN_E_APP_NOT_RUNNING,
    6161             :                 "HRES_COMADMIN_E_APP_NOT_RUNNING",
    6162             :                 "The specified application is not currently running."
    6163             :         },
    6164             :         {
    6165             :                 HRES_COMADMIN_E_INVALID_PARTITION,
    6166             :                 "HRES_COMADMIN_E_INVALID_PARTITION",
    6167             :                 "The partitions specified are not valid."
    6168             :         },
    6169             :         {
    6170             :                 HRES_COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE,
    6171             :                 "HRES_COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE",
    6172             :                 "COM+ applications that run as Windows NT service cannot be pooled or recycled."
    6173             :         },
    6174             :         {
    6175             :                 HRES_COMADMIN_E_USER_IN_SET,
    6176             :                 "HRES_COMADMIN_E_USER_IN_SET",
    6177             :                 "One or more users are already assigned to a local partition set."
    6178             :         },
    6179             :         {
    6180             :                 HRES_COMADMIN_E_CANTRECYCLELIBRARYAPPS,
    6181             :                 "HRES_COMADMIN_E_CANTRECYCLELIBRARYAPPS",
    6182             :                 "Library applications cannot be recycled."
    6183             :         },
    6184             :         {
    6185             :                 HRES_COMADMIN_E_CANTRECYCLESERVICEAPPS,
    6186             :                 "HRES_COMADMIN_E_CANTRECYCLESERVICEAPPS",
    6187             :                 "Applications running as Windows NT services cannot be recycled."
    6188             :         },
    6189             :         {
    6190             :                 HRES_COMADMIN_E_PROCESSALREADYRECYCLED,
    6191             :                 "HRES_COMADMIN_E_PROCESSALREADYRECYCLED",
    6192             :                 "The process has already been recycled."
    6193             :         },
    6194             :         {
    6195             :                 HRES_COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED,
    6196             :                 "HRES_COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED",
    6197             :                 "A paused process cannot be recycled."
    6198             :         },
    6199             :         {
    6200             :                 HRES_COMADMIN_E_CANTMAKEINPROCSERVICE,
    6201             :                 "HRES_COMADMIN_E_CANTMAKEINPROCSERVICE",
    6202             :                 "Library applications cannot be Windows NT services."
    6203             :         },
    6204             :         {
    6205             :                 HRES_COMADMIN_E_PROGIDINUSEBYCLSID,
    6206             :                 "HRES_COMADMIN_E_PROGIDINUSEBYCLSID",
    6207             :                 "The ProgID provided to the copy operation is invalid. The ProgID is in use by another registered CLSID."
    6208             :         },
    6209             :         {
    6210             :                 HRES_COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET,
    6211             :                 "HRES_COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET",
    6212             :                 "The partition specified as the default is not a member of the partition set."
    6213             :         },
    6214             :         {
    6215             :                 HRES_COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED,
    6216             :                 "HRES_COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED",
    6217             :                 "A recycled process cannot be paused."
    6218             :         },
    6219             :         {
    6220             :                 HRES_COMADMIN_E_PARTITION_ACCESSDENIED,
    6221             :                 "HRES_COMADMIN_E_PARTITION_ACCESSDENIED",
    6222             :                 "Access to the specified partition is denied."
    6223             :         },
    6224             :         {
    6225             :                 HRES_COMADMIN_E_PARTITION_MSI_ONLY,
    6226             :                 "HRES_COMADMIN_E_PARTITION_MSI_ONLY",
    6227             :                 "Only application files (*.msi files) can be installed into partitions."
    6228             :         },
    6229             :         {
    6230             :                 HRES_COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT,
    6231             :                 "HRES_COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT",
    6232             :                 "Applications containing one or more legacy components cannot be exported to 1.0 format."
    6233             :         },
    6234             :         {
    6235             :                 HRES_COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS,
    6236             :                 "HRES_COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS",
    6237             :                 "Legacy components cannot exist in nonbase partitions."
    6238             :         },
    6239             :         {
    6240             :                 HRES_COMADMIN_E_COMP_MOVE_SOURCE,
    6241             :                 "HRES_COMADMIN_E_COMP_MOVE_SOURCE",
    6242             :                 "A component cannot be moved (or copied) from the System Application, an application proxy, or a nonchangeable application."
    6243             :         },
    6244             :         {
    6245             :                 HRES_COMADMIN_E_COMP_MOVE_DEST,
    6246             :                 "HRES_COMADMIN_E_COMP_MOVE_DEST",
    6247             :                 "A component cannot be moved (or copied) to the System Application, an application proxy or a nonchangeable application."
    6248             :         },
    6249             :         {
    6250             :                 HRES_COMADMIN_E_COMP_MOVE_PRIVATE,
    6251             :                 "HRES_COMADMIN_E_COMP_MOVE_PRIVATE",
    6252             :                 "A private component cannot be moved (or copied) to a library application or to the base partition."
    6253             :         },
    6254             :         {
    6255             :                 HRES_COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET,
    6256             :                 "HRES_COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET",
    6257             :                 "The Base Application Partition exists in all partition sets and cannot be removed."
    6258             :         },
    6259             :         {
    6260             :                 HRES_COMADMIN_E_CANNOT_ALIAS_EVENTCLASS,
    6261             :                 "HRES_COMADMIN_E_CANNOT_ALIAS_EVENTCLASS",
    6262             :                 "Alas, Event Class components cannot be aliased."
    6263             :         },
    6264             :         {
    6265             :                 HRES_COMADMIN_E_PRIVATE_ACCESSDENIED,
    6266             :                 "HRES_COMADMIN_E_PRIVATE_ACCESSDENIED",
    6267             :                 "Access is denied because the component is private."
    6268             :         },
    6269             :         {
    6270             :                 HRES_COMADMIN_E_SAFERINVALID,
    6271             :                 "HRES_COMADMIN_E_SAFERINVALID",
    6272             :                 "The specified SAFER level is invalid."
    6273             :         },
    6274             :         {
    6275             :                 HRES_COMADMIN_E_REGISTRY_ACCESSDENIED,
    6276             :                 "HRES_COMADMIN_E_REGISTRY_ACCESSDENIED",
    6277             :                 "The specified user cannot write to the system registry."
    6278             :         },
    6279             :         {
    6280             :                 HRES_COMADMIN_E_PARTITIONS_DISABLED,
    6281             :                 "HRES_COMADMIN_E_PARTITIONS_DISABLED",
    6282             :                 "COM+ partitions are currently disabled."
    6283             :         },
    6284             :         {
    6285             :                 HRES_ERROR_FLT_NO_HANDLER_DEFINED,
    6286             :                 "HRES_ERROR_FLT_NO_HANDLER_DEFINED",
    6287             :                 "A handler was not defined by the filter for this operation."
    6288             :         },
    6289             :         {
    6290             :                 HRES_ERROR_FLT_CONTEXT_ALREADY_DEFINED,
    6291             :                 "HRES_ERROR_FLT_CONTEXT_ALREADY_DEFINED",
    6292             :                 "A context is already defined for this object."
    6293             :         },
    6294             :         {
    6295             :                 HRES_ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST,
    6296             :                 "HRES_ERROR_FLT_INVALID_ASYNCHRONOUS_REQUEST",
    6297             :                 "Asynchronous requests are not valid for this operation."
    6298             :         },
    6299             :         {
    6300             :                 HRES_ERROR_FLT_DISALLOW_FAST_IO,
    6301             :                 "HRES_ERROR_FLT_DISALLOW_FAST_IO",
    6302             :                 "Disallow the Fast IO path for this operation."
    6303             :         },
    6304             :         {
    6305             :                 HRES_ERROR_FLT_INVALID_NAME_REQUEST,
    6306             :                 "HRES_ERROR_FLT_INVALID_NAME_REQUEST",
    6307             :                 "An invalid name request was made. The name requested cannot be retrieved at this time."
    6308             :         },
    6309             :         {
    6310             :                 HRES_ERROR_FLT_NOT_SAFE_TO_POST_OPERATION,
    6311             :                 "HRES_ERROR_FLT_NOT_SAFE_TO_POST_OPERATION",
    6312             :                 "Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock."
    6313             :         },
    6314             :         {
    6315             :                 HRES_ERROR_FLT_NOT_INITIALIZED,
    6316             :                 "HRES_ERROR_FLT_NOT_INITIALIZED",
    6317             :                 "The Filter Manager was not initialized when a filter tried to register. Be sure that the Filter Manager is being loaded as a driver."
    6318             :         },
    6319             :         {
    6320             :                 HRES_ERROR_FLT_FILTER_NOT_READY,
    6321             :                 "HRES_ERROR_FLT_FILTER_NOT_READY",
    6322             :                 "The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called)."
    6323             :         },
    6324             :         {
    6325             :                 HRES_ERROR_FLT_POST_OPERATION_CLEANUP,
    6326             :                 "HRES_ERROR_FLT_POST_OPERATION_CLEANUP",
    6327             :                 "The filter must clean up any operation-specific context at this time because it is being removed from the system before the operation is completed by the lower drivers."
    6328             :         },
    6329             :         {
    6330             :                 HRES_ERROR_FLT_INTERNAL_ERROR,
    6331             :                 "HRES_ERROR_FLT_INTERNAL_ERROR",
    6332             :                 "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 preoperation callback."
    6333             :         },
    6334             :         {
    6335             :                 HRES_ERROR_FLT_DELETING_OBJECT,
    6336             :                 "HRES_ERROR_FLT_DELETING_OBJECT",
    6337             :                 "The object specified for this action is in the process of being deleted; therefore, the action requested cannot be completed at this time."
    6338             :         },
    6339             :         {
    6340             :                 HRES_ERROR_FLT_MUST_BE_NONPAGED_POOL,
    6341             :                 "HRES_ERROR_FLT_MUST_BE_NONPAGED_POOL",
    6342             :                 "Nonpaged pool must be used for this type of context."
    6343             :         },
    6344             :         {
    6345             :                 HRES_ERROR_FLT_DUPLICATE_ENTRY,
    6346             :                 "HRES_ERROR_FLT_DUPLICATE_ENTRY",
    6347             :                 "A duplicate handler definition has been provided for an operation."
    6348             :         },
    6349             :         {
    6350             :                 HRES_ERROR_FLT_CBDQ_DISABLED,
    6351             :                 "HRES_ERROR_FLT_CBDQ_DISABLED",
    6352             :                 "The callback data queue has been disabled."
    6353             :         },
    6354             :         {
    6355             :                 HRES_ERROR_FLT_DO_NOT_ATTACH,
    6356             :                 "HRES_ERROR_FLT_DO_NOT_ATTACH",
    6357             :                 "Do not attach the filter to the volume at this time."
    6358             :         },
    6359             :         {
    6360             :                 HRES_ERROR_FLT_DO_NOT_DETACH,
    6361             :                 "HRES_ERROR_FLT_DO_NOT_DETACH",
    6362             :                 "Do not detach the filter from the volume at this time."
    6363             :         },
    6364             :         {
    6365             :                 HRES_ERROR_FLT_INSTANCE_ALTITUDE_COLLISION,
    6366             :                 "HRES_ERROR_FLT_INSTANCE_ALTITUDE_COLLISION",
    6367             :                 "An instance already exists at this altitude on the volume specified."
    6368             :         },
    6369             :         {
    6370             :                 HRES_ERROR_FLT_INSTANCE_NAME_COLLISION,
    6371             :                 "HRES_ERROR_FLT_INSTANCE_NAME_COLLISION",
    6372             :                 "An instance already exists with this name on the volume specified."
    6373             :         },
    6374             :         {
    6375             :                 HRES_ERROR_FLT_FILTER_NOT_FOUND,
    6376             :                 "HRES_ERROR_FLT_FILTER_NOT_FOUND",
    6377             :                 "The system could not find the filter specified."
    6378             :         },
    6379             :         {
    6380             :                 HRES_ERROR_FLT_VOLUME_NOT_FOUND,
    6381             :                 "HRES_ERROR_FLT_VOLUME_NOT_FOUND",
    6382             :                 "The system could not find the volume specified."
    6383             :         },
    6384             :         {
    6385             :                 HRES_ERROR_FLT_INSTANCE_NOT_FOUND,
    6386             :                 "HRES_ERROR_FLT_INSTANCE_NOT_FOUND",
    6387             :                 "The system could not find the instance specified."
    6388             :         },
    6389             :         {
    6390             :                 HRES_ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND,
    6391             :                 "HRES_ERROR_FLT_CONTEXT_ALLOCATION_NOT_FOUND",
    6392             :                 "No registered context allocation definition was found for the given request."
    6393             :         },
    6394             :         {
    6395             :                 HRES_ERROR_FLT_INVALID_CONTEXT_REGISTRATION,
    6396             :                 "HRES_ERROR_FLT_INVALID_CONTEXT_REGISTRATION",
    6397             :                 "An invalid parameter was specified during context registration."
    6398             :         },
    6399             :         {
    6400             :                 HRES_ERROR_FLT_NAME_CACHE_MISS,
    6401             :                 "HRES_ERROR_FLT_NAME_CACHE_MISS",
    6402             :                 "The name requested was not found in the Filter Manager name cache and could not be retrieved from the file system."
    6403             :         },
    6404             :         {
    6405             :                 HRES_ERROR_FLT_NO_DEVICE_OBJECT,
    6406             :                 "HRES_ERROR_FLT_NO_DEVICE_OBJECT",
    6407             :                 "The requested device object does not exist for the given volume."
    6408             :         },
    6409             :         {
    6410             :                 HRES_ERROR_FLT_VOLUME_ALREADY_MOUNTED,
    6411             :                 "HRES_ERROR_FLT_VOLUME_ALREADY_MOUNTED",
    6412             :                 "The specified volume is already mounted."
    6413             :         },
    6414             :         {
    6415             :                 HRES_ERROR_FLT_ALREADY_ENLISTED,
    6416             :                 "HRES_ERROR_FLT_ALREADY_ENLISTED",
    6417             :                 "The specified Transaction Context is already enlisted in a transaction."
    6418             :         },
    6419             :         {
    6420             :                 HRES_ERROR_FLT_CONTEXT_ALREADY_LINKED,
    6421             :                 "HRES_ERROR_FLT_CONTEXT_ALREADY_LINKED",
    6422             :                 "The specified context is already attached to another object."
    6423             :         },
    6424             :         {
    6425             :                 HRES_ERROR_FLT_NO_WAITER_FOR_REPLY,
    6426             :                 "HRES_ERROR_FLT_NO_WAITER_FOR_REPLY",
    6427             :                 "No waiter is present for the filter's reply to this message."
    6428             :         },
    6429             :         {
    6430             :                 HRES_ERROR_HUNG_DISPLAY_DRIVER_THREAD,
    6431             :                 "HRES_ERROR_HUNG_DISPLAY_DRIVER_THREAD",
    6432             :                 "{Display Driver Stopped Responding} 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."
    6433             :         },
    6434             :         {
    6435             :                 HRES_ERROR_MONITOR_NO_DESCRIPTOR,
    6436             :                 "HRES_ERROR_MONITOR_NO_DESCRIPTOR",
    6437             :                 "Monitor descriptor could not be obtained."
    6438             :         },
    6439             :         {
    6440             :                 HRES_ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT,
    6441             :                 "HRES_ERROR_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT",
    6442             :                 "Format of the obtained monitor descriptor is not supported by this release."
    6443             :         },
    6444             :         {
    6445             :                 HRES_DWM_E_COMPOSITIONDISABLED,
    6446             :                 "HRES_DWM_E_COMPOSITIONDISABLED",
    6447             :                 "{Desktop Composition is Disabled} The operation could not be completed because desktop composition is disabled."
    6448             :         },
    6449             :         {
    6450             :                 HRES_DWM_E_REMOTING_NOT_SUPPORTED,
    6451             :                 "HRES_DWM_E_REMOTING_NOT_SUPPORTED",
    6452             :                 "{Some Desktop Composition APIs Are Not Supported While Remoting} Some desktop composition APIs are not supported while remoting. The operation is not supported while running in a remote session."
    6453             :         },
    6454             :         {
    6455             :                 HRES_DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE,
    6456             :                 "HRES_DWM_E_NO_REDIRECTION_SURFACE_AVAILABLE",
    6457             :                 "{No DWM Redirection Surface is Available} The Desktop Window Manager (DWM) was unable to provide a redirection surface to complete the DirectX present."
    6458             :         },
    6459             :         {
    6460             :                 HRES_DWM_E_NOT_QUEUING_PRESENTS,
    6461             :                 "HRES_DWM_E_NOT_QUEUING_PRESENTS",
    6462             :                 "{DWM Is Not Queuing Presents for the Specified Window} The window specified is not currently using queued presents."
    6463             :         },
    6464             :         {
    6465             :                 HRES_TPM_E_ERROR_MASK,
    6466             :                 "HRES_TPM_E_ERROR_MASK",
    6467             :                 "This is an error mask to convert Trusted Platform Module (TPM) hardware errors to Win32 errors."
    6468             :         },
    6469             :         {
    6470             :                 HRES_TPM_E_AUTHFAIL,
    6471             :                 "HRES_TPM_E_AUTHFAIL",
    6472             :                 "Authentication failed."
    6473             :         },
    6474             :         {
    6475             :                 HRES_TPM_E_BADINDEX,
    6476             :                 "HRES_TPM_E_BADINDEX",
    6477             :                 "The index to a Platform Configuration Register (PCR), DIR, or other register is incorrect."
    6478             :         },
    6479             :         {
    6480             :                 HRES_TPM_E_BAD_PARAMETER,
    6481             :                 "HRES_TPM_E_BAD_PARAMETER",
    6482             :                 "One or more parameters are bad."
    6483             :         },
    6484             :         {
    6485             :                 HRES_TPM_E_AUDITFAILURE,
    6486             :                 "HRES_TPM_E_AUDITFAILURE",
    6487             :                 "An operation completed successfully but the auditing of that operation failed."
    6488             :         },
    6489             :         {
    6490             :                 HRES_TPM_E_CLEAR_DISABLED,
    6491             :                 "HRES_TPM_E_CLEAR_DISABLED",
    6492             :                 "The clear disable flag is set and all clear operations now require physical access."
    6493             :         },
    6494             :         {
    6495             :                 HRES_TPM_E_DEACTIVATED,
    6496             :                 "HRES_TPM_E_DEACTIVATED",
    6497             :                 "The TPM is deactivated."
    6498             :         },
    6499             :         {
    6500             :                 HRES_TPM_E_DISABLED,
    6501             :                 "HRES_TPM_E_DISABLED",
    6502             :                 "The TPM is disabled."
    6503             :         },
    6504             :         {
    6505             :                 HRES_TPM_E_DISABLED_CMD,
    6506             :                 "HRES_TPM_E_DISABLED_CMD",
    6507             :                 "The target command has been disabled."
    6508             :         },
    6509             :         {
    6510             :                 HRES_TPM_E_FAIL,
    6511             :                 "HRES_TPM_E_FAIL",
    6512             :                 "The operation failed."
    6513             :         },
    6514             :         {
    6515             :                 HRES_TPM_E_BAD_ORDINAL,
    6516             :                 "HRES_TPM_E_BAD_ORDINAL",
    6517             :                 "The ordinal was unknown or inconsistent."
    6518             :         },
    6519             :         {
    6520             :                 HRES_TPM_E_INSTALL_DISABLED,
    6521             :                 "HRES_TPM_E_INSTALL_DISABLED",
    6522             :                 "The ability to install an owner is disabled."
    6523             :         },
    6524             :         {
    6525             :                 HRES_TPM_E_INVALID_KEYHANDLE,
    6526             :                 "HRES_TPM_E_INVALID_KEYHANDLE",
    6527             :                 "The key handle cannot be interpreted."
    6528             :         },
    6529             :         {
    6530             :                 HRES_TPM_E_KEYNOTFOUND,
    6531             :                 "HRES_TPM_E_KEYNOTFOUND",
    6532             :                 "The key handle points to an invalid key."
    6533             :         },
    6534             :         {
    6535             :                 HRES_TPM_E_INAPPROPRIATE_ENC,
    6536             :                 "HRES_TPM_E_INAPPROPRIATE_ENC",
    6537             :                 "Unacceptable encryption scheme."
    6538             :         },
    6539             :         {
    6540             :                 HRES_TPM_E_MIGRATEFAIL,
    6541             :                 "HRES_TPM_E_MIGRATEFAIL",
    6542             :                 "Migration authorization failed."
    6543             :         },
    6544             :         {
    6545             :                 HRES_TPM_E_INVALID_PCR_INFO,
    6546             :                 "HRES_TPM_E_INVALID_PCR_INFO",
    6547             :                 "PCR information could not be interpreted."
    6548             :         },
    6549             :         {
    6550             :                 HRES_TPM_E_NOSPACE,
    6551             :                 "HRES_TPM_E_NOSPACE",
    6552             :                 "No room to load key."
    6553             :         },
    6554             :         {
    6555             :                 HRES_TPM_E_NOSRK,
    6556             :                 "HRES_TPM_E_NOSRK",
    6557             :                 "There is no storage root key (SRK) set."
    6558             :         },
    6559             :         {
    6560             :                 HRES_TPM_E_NOTSEALED_BLOB,
    6561             :                 "HRES_TPM_E_NOTSEALED_BLOB",
    6562             :                 "An encrypted blob is invalid or was not created by this TPM."
    6563             :         },
    6564             :         {
    6565             :                 HRES_TPM_E_OWNER_SET,
    6566             :                 "HRES_TPM_E_OWNER_SET",
    6567             :                 "There is already an owner."
    6568             :         },
    6569             :         {
    6570             :                 HRES_TPM_E_RESOURCES,
    6571             :                 "HRES_TPM_E_RESOURCES",
    6572             :                 "The TPM has insufficient internal resources to perform the requested action."
    6573             :         },
    6574             :         {
    6575             :                 HRES_TPM_E_SHORTRANDOM,
    6576             :                 "HRES_TPM_E_SHORTRANDOM",
    6577             :                 "A random string was too short."
    6578             :         },
    6579             :         {
    6580             :                 HRES_TPM_E_SIZE,
    6581             :                 "HRES_TPM_E_SIZE",
    6582             :                 "The TPM does not have the space to perform the operation."
    6583             :         },
    6584             :         {
    6585             :                 HRES_TPM_E_WRONGPCRVAL,
    6586             :                 "HRES_TPM_E_WRONGPCRVAL",
    6587             :                 "The named PCR value does not match the current PCR value."
    6588             :         },
    6589             :         {
    6590             :                 HRES_TPM_E_BAD_PARAM_SIZE,
    6591             :                 "HRES_TPM_E_BAD_PARAM_SIZE",
    6592             :                 "The paramSize argument to the command has the incorrect value."
    6593             :         },
    6594             :         {
    6595             :                 HRES_TPM_E_SHA_THREAD,
    6596             :                 "HRES_TPM_E_SHA_THREAD",
    6597             :                 "There is no existing SHA-1 thread."
    6598             :         },
    6599             :         {
    6600             :                 HRES_TPM_E_SHA_ERROR,
    6601             :                 "HRES_TPM_E_SHA_ERROR",
    6602             :                 "The calculation is unable to proceed because the existing SHA-1 thread has already encountered an error."
    6603             :         },
    6604             :         {
    6605             :                 HRES_TPM_E_FAILEDSELFTEST,
    6606             :                 "HRES_TPM_E_FAILEDSELFTEST",
    6607             :                 "Self-test has failed and the TPM has shut down."
    6608             :         },
    6609             :         {
    6610             :                 HRES_TPM_E_AUTH2FAIL,
    6611             :                 "HRES_TPM_E_AUTH2FAIL",
    6612             :                 "The authorization for the second key in a two-key function failed authorization."
    6613             :         },
    6614             :         {
    6615             :                 HRES_TPM_E_BADTAG,
    6616             :                 "HRES_TPM_E_BADTAG",
    6617             :                 "The tag value sent to for a command is invalid."
    6618             :         },
    6619             :         {
    6620             :                 HRES_TPM_E_IOERROR,
    6621             :                 "HRES_TPM_E_IOERROR",
    6622             :                 "An I/O error occurred transmitting information to the TPM."
    6623             :         },
    6624             :         {
    6625             :                 HRES_TPM_E_ENCRYPT_ERROR,
    6626             :                 "HRES_TPM_E_ENCRYPT_ERROR",
    6627             :                 "The encryption process had a problem."
    6628             :         },
    6629             :         {
    6630             :                 HRES_TPM_E_DECRYPT_ERROR,
    6631             :                 "HRES_TPM_E_DECRYPT_ERROR",
    6632             :                 "The decryption process did not complete."
    6633             :         },
    6634             :         {
    6635             :                 HRES_TPM_E_INVALID_AUTHHANDLE,
    6636             :                 "HRES_TPM_E_INVALID_AUTHHANDLE",
    6637             :                 "An invalid handle was used."
    6638             :         },
    6639             :         {
    6640             :                 HRES_TPM_E_NO_ENDORSEMENT,
    6641             :                 "HRES_TPM_E_NO_ENDORSEMENT",
    6642             :                 "The TPM does not have an endorsement key (EK) installed."
    6643             :         },
    6644             :         {
    6645             :                 HRES_TPM_E_INVALID_KEYUSAGE,
    6646             :                 "HRES_TPM_E_INVALID_KEYUSAGE",
    6647             :                 "The usage of a key is not allowed."
    6648             :         },
    6649             :         {
    6650             :                 HRES_TPM_E_WRONG_ENTITYTYPE,
    6651             :                 "HRES_TPM_E_WRONG_ENTITYTYPE",
    6652             :                 "The submitted entity type is not allowed."
    6653             :         },
    6654             :         {
    6655             :                 HRES_TPM_E_INVALID_POSTINIT,
    6656             :                 "HRES_TPM_E_INVALID_POSTINIT",
    6657             :                 "The command was received in the wrong sequence relative to TPM_Init and a subsequent TPM_Startup."
    6658             :         },
    6659             :         {
    6660             :                 HRES_TPM_E_INAPPROPRIATE_SIG,
    6661             :                 "HRES_TPM_E_INAPPROPRIATE_SIG",
    6662             :                 "Signed data cannot include additional DER information."
    6663             :         },
    6664             :         {
    6665             :                 HRES_TPM_E_BAD_KEY_PROPERTY,
    6666             :                 "HRES_TPM_E_BAD_KEY_PROPERTY",
    6667             :                 "The key properties in TPM_KEY_PARMs are not supported by this TPM."
    6668             :         },
    6669             :         {
    6670             :                 HRES_TPM_E_BAD_MIGRATION,
    6671             :                 "HRES_TPM_E_BAD_MIGRATION",
    6672             :                 "The migration properties of this key are incorrect."
    6673             :         },
    6674             :         {
    6675             :                 HRES_TPM_E_BAD_SCHEME,
    6676             :                 "HRES_TPM_E_BAD_SCHEME",
    6677             :                 "The signature or encryption scheme for this key is incorrect or not permitted in this situation."
    6678             :         },
    6679             :         {
    6680             :                 HRES_TPM_E_BAD_DATASIZE,
    6681             :                 "HRES_TPM_E_BAD_DATASIZE",
    6682             :                 "The size of the data (or blob) parameter is bad or inconsistent with the referenced key."
    6683             :         },
    6684             :         {
    6685             :                 HRES_TPM_E_BAD_MODE,
    6686             :                 "HRES_TPM_E_BAD_MODE",
    6687             :                 "A mode parameter is bad, such as capArea or subCapArea for TPM_GetCapability, physicalPresence parameter for TPM_PhysicalPresence, or migrationType for TPM_CreateMigrationBlob."
    6688             :         },
    6689             :         {
    6690             :                 HRES_TPM_E_BAD_PRESENCE,
    6691             :                 "HRES_TPM_E_BAD_PRESENCE",
    6692             :                 "Either the physicalPresence or physicalPresenceLock bits have the wrong value."
    6693             :         },
    6694             :         {
    6695             :                 HRES_TPM_E_BAD_VERSION,
    6696             :                 "HRES_TPM_E_BAD_VERSION",
    6697             :                 "The TPM cannot perform this version of the capability."
    6698             :         },
    6699             :         {
    6700             :                 HRES_TPM_E_NO_WRAP_TRANSPORT,
    6701             :                 "HRES_TPM_E_NO_WRAP_TRANSPORT",
    6702             :                 "The TPM does not allow for wrapped transport sessions."
    6703             :         },
    6704             :         {
    6705             :                 HRES_TPM_E_AUDITFAIL_UNSUCCESSFUL,
    6706             :                 "HRES_TPM_E_AUDITFAIL_UNSUCCESSFUL",
    6707             :                 "TPM audit construction failed and the underlying command was returning a failure code also."
    6708             :         },
    6709             :         {
    6710             :                 HRES_TPM_E_AUDITFAIL_SUCCESSFUL,
    6711             :                 "HRES_TPM_E_AUDITFAIL_SUCCESSFUL",
    6712             :                 "TPM audit construction failed and the underlying command was returning success."
    6713             :         },
    6714             :         {
    6715             :                 HRES_TPM_E_NOTRESETABLE,
    6716             :                 "HRES_TPM_E_NOTRESETABLE",
    6717             :                 "Attempt to reset a PCR that does not have the resettable attribute."
    6718             :         },
    6719             :         {
    6720             :                 HRES_TPM_E_NOTLOCAL,
    6721             :                 "HRES_TPM_E_NOTLOCAL",
    6722             :                 "Attempt to reset a PCR register that requires locality and the locality modifier not part of command transport."
    6723             :         },
    6724             :         {
    6725             :                 HRES_TPM_E_BAD_TYPE,
    6726             :                 "HRES_TPM_E_BAD_TYPE",
    6727             :                 "Make identity blob not properly typed."
    6728             :         },
    6729             :         {
    6730             :                 HRES_TPM_E_INVALID_RESOURCE,
    6731             :                 "HRES_TPM_E_INVALID_RESOURCE",
    6732             :                 "When saving context identified resource type does not match actual resource."
    6733             :         },
    6734             :         {
    6735             :                 HRES_TPM_E_NOTFIPS,
    6736             :                 "HRES_TPM_E_NOTFIPS",
    6737             :                 "The TPM is attempting to execute a command only available when in Federal Information Processing Standards (FIPS) mode."
    6738             :         },
    6739             :         {
    6740             :                 HRES_TPM_E_INVALID_FAMILY,
    6741             :                 "HRES_TPM_E_INVALID_FAMILY",
    6742             :                 "The command is attempting to use an invalid family ID."
    6743             :         },
    6744             :         {
    6745             :                 HRES_TPM_E_NO_NV_PERMISSION,
    6746             :                 "HRES_TPM_E_NO_NV_PERMISSION",
    6747             :                 "The permission to manipulate the NV storage is not available."
    6748             :         },
    6749             :         {
    6750             :                 HRES_TPM_E_REQUIRES_SIGN,
    6751             :                 "HRES_TPM_E_REQUIRES_SIGN",
    6752             :                 "The operation requires a signed command."
    6753             :         },
    6754             :         {
    6755             :                 HRES_TPM_E_KEY_NOTSUPPORTED,
    6756             :                 "HRES_TPM_E_KEY_NOTSUPPORTED",
    6757             :                 "Wrong operation to load an NV key."
    6758             :         },
    6759             :         {
    6760             :                 HRES_TPM_E_AUTH_CONFLICT,
    6761             :                 "HRES_TPM_E_AUTH_CONFLICT",
    6762             :                 "NV_LoadKey blob requires both owner and blob authorization."
    6763             :         },
    6764             :         {
    6765             :                 HRES_TPM_E_AREA_LOCKED,
    6766             :                 "HRES_TPM_E_AREA_LOCKED",
    6767             :                 "The NV area is locked and not writable."
    6768             :         },
    6769             :         {
    6770             :                 HRES_TPM_E_BAD_LOCALITY,
    6771             :                 "HRES_TPM_E_BAD_LOCALITY",
    6772             :                 "The locality is incorrect for the attempted operation."
    6773             :         },
    6774             :         {
    6775             :                 HRES_TPM_E_READ_ONLY,
    6776             :                 "HRES_TPM_E_READ_ONLY",
    6777             :                 "The NV area is read-only and cannot be written to."
    6778             :         },
    6779             :         {
    6780             :                 HRES_TPM_E_PER_NOWRITE,
    6781             :                 "HRES_TPM_E_PER_NOWRITE",
    6782             :                 "There is no protection on the write to the NV area."
    6783             :         },
    6784             :         {
    6785             :                 HRES_TPM_E_FAMILYCOUNT,
    6786             :                 "HRES_TPM_E_FAMILYCOUNT",
    6787             :                 "The family count value does not match."
    6788             :         },
    6789             :         {
    6790             :                 HRES_TPM_E_WRITE_LOCKED,
    6791             :                 "HRES_TPM_E_WRITE_LOCKED",
    6792             :                 "The NV area has already been written to."
    6793             :         },
    6794             :         {
    6795             :                 HRES_TPM_E_BAD_ATTRIBUTES,
    6796             :                 "HRES_TPM_E_BAD_ATTRIBUTES",
    6797             :                 "The NV area attributes conflict."
    6798             :         },
    6799             :         {
    6800             :                 HRES_TPM_E_INVALID_STRUCTURE,
    6801             :                 "HRES_TPM_E_INVALID_STRUCTURE",
    6802             :                 "The structure tag and version are invalid or inconsistent."
    6803             :         },
    6804             :         {
    6805             :                 HRES_TPM_E_KEY_OWNER_CONTROL,
    6806             :                 "HRES_TPM_E_KEY_OWNER_CONTROL",
    6807             :                 "The key is under control of the TPM owner and can only be evicted by the TPM owner."
    6808             :         },
    6809             :         {
    6810             :                 HRES_TPM_E_BAD_COUNTER,
    6811             :                 "HRES_TPM_E_BAD_COUNTER",
    6812             :                 "The counter handle is incorrect."
    6813             :         },
    6814             :         {
    6815             :                 HRES_TPM_E_NOT_FULLWRITE,
    6816             :                 "HRES_TPM_E_NOT_FULLWRITE",
    6817             :                 "The write is not a complete write of the area."
    6818             :         },
    6819             :         {
    6820             :                 HRES_TPM_E_CONTEXT_GAP,
    6821             :                 "HRES_TPM_E_CONTEXT_GAP",
    6822             :                 "The gap between saved context counts is too large."
    6823             :         },
    6824             :         {
    6825             :                 HRES_TPM_E_MAXNVWRITES,
    6826             :                 "HRES_TPM_E_MAXNVWRITES",
    6827             :                 "The maximum number of NV writes without an owner has been exceeded."
    6828             :         },
    6829             :         {
    6830             :                 HRES_TPM_E_NOOPERATOR,
    6831             :                 "HRES_TPM_E_NOOPERATOR",
    6832             :                 "No operator AuthData value is set."
    6833             :         },
    6834             :         {
    6835             :                 HRES_TPM_E_RESOURCEMISSING,
    6836             :                 "HRES_TPM_E_RESOURCEMISSING",
    6837             :                 "The resource pointed to by context is not loaded."
    6838             :         },
    6839             :         {
    6840             :                 HRES_TPM_E_DELEGATE_LOCK,
    6841             :                 "HRES_TPM_E_DELEGATE_LOCK",
    6842             :                 "The delegate administration is locked."
    6843             :         },
    6844             :         {
    6845             :                 HRES_TPM_E_DELEGATE_FAMILY,
    6846             :                 "HRES_TPM_E_DELEGATE_FAMILY",
    6847             :                 "Attempt to manage a family other then the delegated family."
    6848             :         },
    6849             :         {
    6850             :                 HRES_TPM_E_DELEGATE_ADMIN,
    6851             :                 "HRES_TPM_E_DELEGATE_ADMIN",
    6852             :                 "Delegation table management not enabled."
    6853             :         },
    6854             :         {
    6855             :                 HRES_TPM_E_TRANSPORT_NOTEXCLUSIVE,
    6856             :                 "HRES_TPM_E_TRANSPORT_NOTEXCLUSIVE",
    6857             :                 "There was a command executed outside an exclusive transport session."
    6858             :         },
    6859             :         {
    6860             :                 HRES_TPM_E_OWNER_CONTROL,
    6861             :                 "HRES_TPM_E_OWNER_CONTROL",
    6862             :                 "Attempt to context save an owner evict controlled key."
    6863             :         },
    6864             :         {
    6865             :                 HRES_TPM_E_DAA_RESOURCES,
    6866             :                 "HRES_TPM_E_DAA_RESOURCES",
    6867             :                 "The DAA command has no resources available to execute the command."
    6868             :         },
    6869             :         {
    6870             :                 HRES_TPM_E_DAA_INPUT_DATA0,
    6871             :                 "HRES_TPM_E_DAA_INPUT_DATA0",
    6872             :                 "The consistency check on DAA parameter inputData0 has failed."
    6873             :         },
    6874             :         {
    6875             :                 HRES_TPM_E_DAA_INPUT_DATA1,
    6876             :                 "HRES_TPM_E_DAA_INPUT_DATA1",
    6877             :                 "The consistency check on DAA parameter inputData1 has failed."
    6878             :         },
    6879             :         {
    6880             :                 HRES_TPM_E_DAA_ISSUER_SETTINGS,
    6881             :                 "HRES_TPM_E_DAA_ISSUER_SETTINGS",
    6882             :                 "The consistency check on DAA_issuerSettings has failed."
    6883             :         },
    6884             :         {
    6885             :                 HRES_TPM_E_DAA_TPM_SETTINGS,
    6886             :                 "HRES_TPM_E_DAA_TPM_SETTINGS",
    6887             :                 "The consistency check on DAA_tpmSpecific has failed."
    6888             :         },
    6889             :         {
    6890             :                 HRES_TPM_E_DAA_STAGE,
    6891             :                 "HRES_TPM_E_DAA_STAGE",
    6892             :                 "The atomic process indicated by the submitted DAA command is not the expected process."
    6893             :         },
    6894             :         {
    6895             :                 HRES_TPM_E_DAA_ISSUER_VALIDITY,
    6896             :                 "HRES_TPM_E_DAA_ISSUER_VALIDITY",
    6897             :                 "The issuer's validity check has detected an inconsistency."
    6898             :         },
    6899             :         {
    6900             :                 HRES_TPM_E_DAA_WRONG_W,
    6901             :                 "HRES_TPM_E_DAA_WRONG_W",
    6902             :                 "The consistency check on w has failed."
    6903             :         },
    6904             :         {
    6905             :                 HRES_TPM_E_BAD_HANDLE,
    6906             :                 "HRES_TPM_E_BAD_HANDLE",
    6907             :                 "The handle is incorrect."
    6908             :         },
    6909             :         {
    6910             :                 HRES_TPM_E_BAD_DELEGATE,
    6911             :                 "HRES_TPM_E_BAD_DELEGATE",
    6912             :                 "Delegation is not correct."
    6913             :         },
    6914             :         {
    6915             :                 HRES_TPM_E_BADCONTEXT,
    6916             :                 "HRES_TPM_E_BADCONTEXT",
    6917             :                 "The context blob is invalid."
    6918             :         },
    6919             :         {
    6920             :                 HRES_TPM_E_TOOMANYCONTEXTS,
    6921             :                 "HRES_TPM_E_TOOMANYCONTEXTS",
    6922             :                 "Too many contexts held by the TPM."
    6923             :         },
    6924             :         {
    6925             :                 HRES_TPM_E_MA_TICKET_SIGNATURE,
    6926             :                 "HRES_TPM_E_MA_TICKET_SIGNATURE",
    6927             :                 "Migration authority signature validation failure."
    6928             :         },
    6929             :         {
    6930             :                 HRES_TPM_E_MA_DESTINATION,
    6931             :                 "HRES_TPM_E_MA_DESTINATION",
    6932             :                 "Migration destination not authenticated."
    6933             :         },
    6934             :         {
    6935             :                 HRES_TPM_E_MA_SOURCE,
    6936             :                 "HRES_TPM_E_MA_SOURCE",
    6937             :                 "Migration source incorrect."
    6938             :         },
    6939             :         {
    6940             :                 HRES_TPM_E_MA_AUTHORITY,
    6941             :                 "HRES_TPM_E_MA_AUTHORITY",
    6942             :                 "Incorrect migration authority."
    6943             :         },
    6944             :         {
    6945             :                 HRES_TPM_E_PERMANENTEK,
    6946             :                 "HRES_TPM_E_PERMANENTEK",
    6947             :                 "Attempt to revoke the EK and the EK is not revocable."
    6948             :         },
    6949             :         {
    6950             :                 HRES_TPM_E_BAD_SIGNATURE,
    6951             :                 "HRES_TPM_E_BAD_SIGNATURE",
    6952             :                 "Bad signature of CMK ticket."
    6953             :         },
    6954             :         {
    6955             :                 HRES_TPM_E_NOCONTEXTSPACE,
    6956             :                 "HRES_TPM_E_NOCONTEXTSPACE",
    6957             :                 "There is no room in the context list for additional contexts."
    6958             :         },
    6959             :         {
    6960             :                 HRES_TPM_E_COMMAND_BLOCKED,
    6961             :                 "HRES_TPM_E_COMMAND_BLOCKED",
    6962             :                 "The command was blocked."
    6963             :         },
    6964             :         {
    6965             :                 HRES_TPM_E_INVALID_HANDLE,
    6966             :                 "HRES_TPM_E_INVALID_HANDLE",
    6967             :                 "The specified handle was not found."
    6968             :         },
    6969             :         {
    6970             :                 HRES_TPM_E_DUPLICATE_VHANDLE,
    6971             :                 "HRES_TPM_E_DUPLICATE_VHANDLE",
    6972             :                 "The TPM returned a duplicate handle and the command needs to be resubmitted."
    6973             :         },
    6974             :         {
    6975             :                 HRES_TPM_E_EMBEDDED_COMMAND_BLOCKED,
    6976             :                 "HRES_TPM_E_EMBEDDED_COMMAND_BLOCKED",
    6977             :                 "The command within the transport was blocked."
    6978             :         },
    6979             :         {
    6980             :                 HRES_TPM_E_EMBEDDED_COMMAND_UNSUPPORTED,
    6981             :                 "HRES_TPM_E_EMBEDDED_COMMAND_UNSUPPORTED",
    6982             :                 "The command within the transport is not supported."
    6983             :         },
    6984             :         {
    6985             :                 HRES_TPM_E_RETRY,
    6986             :                 "HRES_TPM_E_RETRY",
    6987             :                 "The TPM is too busy to respond to the command immediately, but the command could be resubmitted at a later time."
    6988             :         },
    6989             :         {
    6990             :                 HRES_TPM_E_NEEDS_SELFTEST,
    6991             :                 "HRES_TPM_E_NEEDS_SELFTEST",
    6992             :                 "SelfTestFull has not been run."
    6993             :         },
    6994             :         {
    6995             :                 HRES_TPM_E_DOING_SELFTEST,
    6996             :                 "HRES_TPM_E_DOING_SELFTEST",
    6997             :                 "The TPM is currently executing a full self-test."
    6998             :         },
    6999             :         {
    7000             :                 HRES_TPM_E_DEFEND_LOCK_RUNNING,
    7001             :                 "HRES_TPM_E_DEFEND_LOCK_RUNNING",
    7002             :                 "The TPM is defending against dictionary attacks and is in a time-out period."
    7003             :         },
    7004             :         {
    7005             :                 HRES_TBS_E_INTERNAL_ERROR,
    7006             :                 "HRES_TBS_E_INTERNAL_ERROR",
    7007             :                 "An internal software error has been detected."
    7008             :         },
    7009             :         {
    7010             :                 HRES_TBS_E_BAD_PARAMETER,
    7011             :                 "HRES_TBS_E_BAD_PARAMETER",
    7012             :                 "One or more input parameters are bad."
    7013             :         },
    7014             :         {
    7015             :                 HRES_TBS_E_INVALID_OUTPUT_POINTER,
    7016             :                 "HRES_TBS_E_INVALID_OUTPUT_POINTER",
    7017             :                 "A specified output pointer is bad."
    7018             :         },
    7019             :         {
    7020             :                 HRES_TBS_E_INVALID_CONTEXT,
    7021             :                 "HRES_TBS_E_INVALID_CONTEXT",
    7022             :                 "The specified context handle does not refer to a valid context."
    7023             :         },
    7024             :         {
    7025             :                 HRES_TBS_E_INSUFFICIENT_BUFFER,
    7026             :                 "HRES_TBS_E_INSUFFICIENT_BUFFER",
    7027             :                 "A specified output buffer is too small."
    7028             :         },
    7029             :         {
    7030             :                 HRES_TBS_E_IOERROR,
    7031             :                 "HRES_TBS_E_IOERROR",
    7032             :                 "An error occurred while communicating with the TPM."
    7033             :         },
    7034             :         {
    7035             :                 HRES_TBS_E_INVALID_CONTEXT_PARAM,
    7036             :                 "HRES_TBS_E_INVALID_CONTEXT_PARAM",
    7037             :                 "One or more context parameters are invalid."
    7038             :         },
    7039             :         {
    7040             :                 HRES_TBS_E_SERVICE_NOT_RUNNING,
    7041             :                 "HRES_TBS_E_SERVICE_NOT_RUNNING",
    7042             :                 "The TPM Base Services (TBS) is not running and could not be started."
    7043             :         },
    7044             :         {
    7045             :                 HRES_TBS_E_TOO_MANY_TBS_CONTEXTS,
    7046             :                 "HRES_TBS_E_TOO_MANY_TBS_CONTEXTS",
    7047             :                 "A new context could not be created because there are too many open contexts."
    7048             :         },
    7049             :         {
    7050             :                 HRES_TBS_E_TOO_MANY_RESOURCES,
    7051             :                 "HRES_TBS_E_TOO_MANY_RESOURCES",
    7052             :                 "A new virtual resource could not be created because there are too many open virtual resources."
    7053             :         },
    7054             :         {
    7055             :                 HRES_TBS_E_SERVICE_START_PENDING,
    7056             :                 "HRES_TBS_E_SERVICE_START_PENDING",
    7057             :                 "The TBS service has been started but is not yet running."
    7058             :         },
    7059             :         {
    7060             :                 HRES_TBS_E_PPI_NOT_SUPPORTED,
    7061             :                 "HRES_TBS_E_PPI_NOT_SUPPORTED",
    7062             :                 "The physical presence interface is not supported."
    7063             :         },
    7064             :         {
    7065             :                 HRES_TBS_E_COMMAND_CANCELED,
    7066             :                 "HRES_TBS_E_COMMAND_CANCELED",
    7067             :                 "The command was canceled."
    7068             :         },
    7069             :         {
    7070             :                 HRES_TBS_E_BUFFER_TOO_LARGE,
    7071             :                 "HRES_TBS_E_BUFFER_TOO_LARGE",
    7072             :                 "The input or output buffer is too large."
    7073             :         },
    7074             :         {
    7075             :                 HRES_TPMAPI_E_INVALID_STATE,
    7076             :                 "HRES_TPMAPI_E_INVALID_STATE",
    7077             :                 "The command buffer is not in the correct state."
    7078             :         },
    7079             :         {
    7080             :                 HRES_TPMAPI_E_NOT_ENOUGH_DATA,
    7081             :                 "HRES_TPMAPI_E_NOT_ENOUGH_DATA",
    7082             :                 "The command buffer does not contain enough data to satisfy the request."
    7083             :         },
    7084             :         {
    7085             :                 HRES_TPMAPI_E_TOO_MUCH_DATA,
    7086             :                 "HRES_TPMAPI_E_TOO_MUCH_DATA",
    7087             :                 "The command buffer cannot contain any more data."
    7088             :         },
    7089             :         {
    7090             :                 HRES_TPMAPI_E_INVALID_OUTPUT_POINTER,
    7091             :                 "HRES_TPMAPI_E_INVALID_OUTPUT_POINTER",
    7092             :                 "One or more output parameters was null or invalid."
    7093             :         },
    7094             :         {
    7095             :                 HRES_TPMAPI_E_INVALID_PARAMETER,
    7096             :                 "HRES_TPMAPI_E_INVALID_PARAMETER",
    7097             :                 "One or more input parameters are invalid."
    7098             :         },
    7099             :         {
    7100             :                 HRES_TPMAPI_E_OUT_OF_MEMORY,
    7101             :                 "HRES_TPMAPI_E_OUT_OF_MEMORY",
    7102             :                 "Not enough memory was available to satisfy the request."
    7103             :         },
    7104             :         {
    7105             :                 HRES_TPMAPI_E_BUFFER_TOO_SMALL,
    7106             :                 "HRES_TPMAPI_E_BUFFER_TOO_SMALL",
    7107             :                 "The specified buffer was too small."
    7108             :         },
    7109             :         {
    7110             :                 HRES_TPMAPI_E_INTERNAL_ERROR,
    7111             :                 "HRES_TPMAPI_E_INTERNAL_ERROR",
    7112             :                 "An internal error was detected."
    7113             :         },
    7114             :         {
    7115             :                 HRES_TPMAPI_E_ACCESS_DENIED,
    7116             :                 "HRES_TPMAPI_E_ACCESS_DENIED",
    7117             :                 "The caller does not have the appropriate rights to perform the requested operation."
    7118             :         },
    7119             :         {
    7120             :                 HRES_TPMAPI_E_AUTHORIZATION_FAILED,
    7121             :                 "HRES_TPMAPI_E_AUTHORIZATION_FAILED",
    7122             :                 "The specified authorization information was invalid."
    7123             :         },
    7124             :         {
    7125             :                 HRES_TPMAPI_E_INVALID_CONTEXT_HANDLE,
    7126             :                 "HRES_TPMAPI_E_INVALID_CONTEXT_HANDLE",
    7127             :                 "The specified context handle was not valid."
    7128             :         },
    7129             :         {
    7130             :                 HRES_TPMAPI_E_TBS_COMMUNICATION_ERROR,
    7131             :                 "HRES_TPMAPI_E_TBS_COMMUNICATION_ERROR",
    7132             :                 "An error occurred while communicating with the TBS."
    7133             :         },
    7134             :         {
    7135             :                 HRES_TPMAPI_E_TPM_COMMAND_ERROR,
    7136             :                 "HRES_TPMAPI_E_TPM_COMMAND_ERROR",
    7137             :                 "The TPM returned an unexpected result."
    7138             :         },
    7139             :         {
    7140             :                 HRES_TPMAPI_E_MESSAGE_TOO_LARGE,
    7141             :                 "HRES_TPMAPI_E_MESSAGE_TOO_LARGE",
    7142             :                 "The message was too large for the encoding scheme."
    7143             :         },
    7144             :         {
    7145             :                 HRES_TPMAPI_E_INVALID_ENCODING,
    7146             :                 "HRES_TPMAPI_E_INVALID_ENCODING",
    7147             :                 "The encoding in the binary large object (BLOB) was not recognized."
    7148             :         },
    7149             :         {
    7150             :                 HRES_TPMAPI_E_INVALID_KEY_SIZE,
    7151             :                 "HRES_TPMAPI_E_INVALID_KEY_SIZE",
    7152             :                 "The key size is not valid."
    7153             :         },
    7154             :         {
    7155             :                 HRES_TPMAPI_E_ENCRYPTION_FAILED,
    7156             :                 "HRES_TPMAPI_E_ENCRYPTION_FAILED",
    7157             :                 "The encryption operation failed."
    7158             :         },
    7159             :         {
    7160             :                 HRES_TPMAPI_E_INVALID_KEY_PARAMS,
    7161             :                 "HRES_TPMAPI_E_INVALID_KEY_PARAMS",
    7162             :                 "The key parameters structure was not valid."
    7163             :         },
    7164             :         {
    7165             :                 HRES_TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB,
    7166             :                 "HRES_TPMAPI_E_INVALID_MIGRATION_AUTHORIZATION_BLOB",
    7167             :                 "The requested supplied data does not appear to be a valid migration authorization BLOB."
    7168             :         },
    7169             :         {
    7170             :                 HRES_TPMAPI_E_INVALID_PCR_INDEX,
    7171             :                 "HRES_TPMAPI_E_INVALID_PCR_INDEX",
    7172             :                 "The specified PCR index was invalid."
    7173             :         },
    7174             :         {
    7175             :                 HRES_TPMAPI_E_INVALID_DELEGATE_BLOB,
    7176             :                 "HRES_TPMAPI_E_INVALID_DELEGATE_BLOB",
    7177             :                 "The data given does not appear to be a valid delegate BLOB."
    7178             :         },
    7179             :         {
    7180             :                 HRES_TPMAPI_E_INVALID_CONTEXT_PARAMS,
    7181             :                 "HRES_TPMAPI_E_INVALID_CONTEXT_PARAMS",
    7182             :                 "One or more of the specified context parameters was not valid."
    7183             :         },
    7184             :         {
    7185             :                 HRES_TPMAPI_E_INVALID_KEY_BLOB,
    7186             :                 "HRES_TPMAPI_E_INVALID_KEY_BLOB",
    7187             :                 "The data given does not appear to be a valid key BLOB."
    7188             :         },
    7189             :         {
    7190             :                 HRES_TPMAPI_E_INVALID_PCR_DATA,
    7191             :                 "HRES_TPMAPI_E_INVALID_PCR_DATA",
    7192             :                 "The specified PCR data was invalid."
    7193             :         },
    7194             :         {
    7195             :                 HRES_TPMAPI_E_INVALID_OWNER_AUTH,
    7196             :                 "HRES_TPMAPI_E_INVALID_OWNER_AUTH",
    7197             :                 "The format of the owner authorization data was invalid."
    7198             :         },
    7199             :         {
    7200             :                 HRES_TBSIMP_E_BUFFER_TOO_SMALL,
    7201             :                 "HRES_TBSIMP_E_BUFFER_TOO_SMALL",
    7202             :                 "The specified buffer was too small."
    7203             :         },
    7204             :         {
    7205             :                 HRES_TBSIMP_E_CLEANUP_FAILED,
    7206             :                 "HRES_TBSIMP_E_CLEANUP_FAILED",
    7207             :                 "The context could not be cleaned up."
    7208             :         },
    7209             :         {
    7210             :                 HRES_TBSIMP_E_INVALID_CONTEXT_HANDLE,
    7211             :                 "HRES_TBSIMP_E_INVALID_CONTEXT_HANDLE",
    7212             :                 "The specified context handle is invalid."
    7213             :         },
    7214             :         {
    7215             :                 HRES_TBSIMP_E_INVALID_CONTEXT_PARAM,
    7216             :                 "HRES_TBSIMP_E_INVALID_CONTEXT_PARAM",
    7217             :                 "An invalid context parameter was specified."
    7218             :         },
    7219             :         {
    7220             :                 HRES_TBSIMP_E_TPM_ERROR,
    7221             :                 "HRES_TBSIMP_E_TPM_ERROR",
    7222             :                 "An error occurred while communicating with the TPM."
    7223             :         },
    7224             :         {
    7225             :                 HRES_TBSIMP_E_HASH_BAD_KEY,
    7226             :                 "HRES_TBSIMP_E_HASH_BAD_KEY",
    7227             :                 "No entry with the specified key was found."
    7228             :         },
    7229             :         {
    7230             :                 HRES_TBSIMP_E_DUPLICATE_VHANDLE,
    7231             :                 "HRES_TBSIMP_E_DUPLICATE_VHANDLE",
    7232             :                 "The specified virtual handle matches a virtual handle already in use."
    7233             :         },
    7234             :         {
    7235             :                 HRES_TBSIMP_E_INVALID_OUTPUT_POINTER,
    7236             :                 "HRES_TBSIMP_E_INVALID_OUTPUT_POINTER",
    7237             :                 "The pointer to the returned handle location was null or invalid."
    7238             :         },
    7239             :         {
    7240             :                 HRES_TBSIMP_E_INVALID_PARAMETER,
    7241             :                 "HRES_TBSIMP_E_INVALID_PARAMETER",
    7242             :                 "One or more parameters are invalid."
    7243             :         },
    7244             :         {
    7245             :                 HRES_TBSIMP_E_RPC_INIT_FAILED,
    7246             :                 "HRES_TBSIMP_E_RPC_INIT_FAILED",
    7247             :                 "The RPC subsystem could not be initialized."
    7248             :         },
    7249             :         {
    7250             :                 HRES_TBSIMP_E_SCHEDULER_NOT_RUNNING,
    7251             :                 "HRES_TBSIMP_E_SCHEDULER_NOT_RUNNING",
    7252             :                 "The TBS scheduler is not running."
    7253             :         },
    7254             :         {
    7255             :                 HRES_TBSIMP_E_COMMAND_CANCELED,
    7256             :                 "HRES_TBSIMP_E_COMMAND_CANCELED",
    7257             :                 "The command was canceled."
    7258             :         },
    7259             :         {
    7260             :                 HRES_TBSIMP_E_OUT_OF_MEMORY,
    7261             :                 "HRES_TBSIMP_E_OUT_OF_MEMORY",
    7262             :                 "There was not enough memory to fulfill the request."
    7263             :         },
    7264             :         {
    7265             :                 HRES_TBSIMP_E_LIST_NO_MORE_ITEMS,
    7266             :                 "HRES_TBSIMP_E_LIST_NO_MORE_ITEMS",
    7267             :                 "The specified list is empty, or the iteration has reached the end of the list."
    7268             :         },
    7269             :         {
    7270             :                 HRES_TBSIMP_E_LIST_NOT_FOUND,
    7271             :                 "HRES_TBSIMP_E_LIST_NOT_FOUND",
    7272             :                 "The specified item was not found in the list."
    7273             :         },
    7274             :         {
    7275             :                 HRES_TBSIMP_E_NOT_ENOUGH_SPACE,
    7276             :                 "HRES_TBSIMP_E_NOT_ENOUGH_SPACE",
    7277             :                 "The TPM does not have enough space to load the requested resource."
    7278             :         },
    7279             :         {
    7280             :                 HRES_TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS,
    7281             :                 "HRES_TBSIMP_E_NOT_ENOUGH_TPM_CONTEXTS",
    7282             :                 "There are too many TPM contexts in use."
    7283             :         },
    7284             :         {
    7285             :                 HRES_TBSIMP_E_COMMAND_FAILED,
    7286             :                 "HRES_TBSIMP_E_COMMAND_FAILED",
    7287             :                 "The TPM command failed."
    7288             :         },
    7289             :         {
    7290             :                 HRES_TBSIMP_E_UNKNOWN_ORDINAL,
    7291             :                 "HRES_TBSIMP_E_UNKNOWN_ORDINAL",
    7292             :                 "The TBS does not recognize the specified ordinal."
    7293             :         },
    7294             :         {
    7295             :                 HRES_TBSIMP_E_RESOURCE_EXPIRED,
    7296             :                 "HRES_TBSIMP_E_RESOURCE_EXPIRED",
    7297             :                 "The requested resource is no longer available."
    7298             :         },
    7299             :         {
    7300             :                 HRES_TBSIMP_E_INVALID_RESOURCE,
    7301             :                 "HRES_TBSIMP_E_INVALID_RESOURCE",
    7302             :                 "The resource type did not match."
    7303             :         },
    7304             :         {
    7305             :                 HRES_TBSIMP_E_NOTHING_TO_UNLOAD,
    7306             :                 "HRES_TBSIMP_E_NOTHING_TO_UNLOAD",
    7307             :                 "No resources can be unloaded."
    7308             :         },
    7309             :         {
    7310             :                 HRES_TBSIMP_E_HASH_TABLE_FULL,
    7311             :                 "HRES_TBSIMP_E_HASH_TABLE_FULL",
    7312             :                 "No new entries can be added to the hash table."
    7313             :         },
    7314             :         {
    7315             :                 HRES_TBSIMP_E_TOO_MANY_TBS_CONTEXTS,
    7316             :                 "HRES_TBSIMP_E_TOO_MANY_TBS_CONTEXTS",
    7317             :                 "A new TBS context could not be created because there are too many open contexts."
    7318             :         },
    7319             :         {
    7320             :                 HRES_TBSIMP_E_TOO_MANY_RESOURCES,
    7321             :                 "HRES_TBSIMP_E_TOO_MANY_RESOURCES",
    7322             :                 "A new virtual resource could not be created because there are too many open virtual resources."
    7323             :         },
    7324             :         {
    7325             :                 HRES_TBSIMP_E_PPI_NOT_SUPPORTED,
    7326             :                 "HRES_TBSIMP_E_PPI_NOT_SUPPORTED",
    7327             :                 "The physical presence interface is not supported."
    7328             :         },
    7329             :         {
    7330             :                 HRES_TBSIMP_E_TPM_INCOMPATIBLE,
    7331             :                 "HRES_TBSIMP_E_TPM_INCOMPATIBLE",
    7332             :                 "TBS is not compatible with the version of TPM found on the system."
    7333             :         },
    7334             :         {
    7335             :                 HRES_TPM_E_PPI_ACPI_FAILURE,
    7336             :                 "HRES_TPM_E_PPI_ACPI_FAILURE",
    7337             :                 "A general error was detected when attempting to acquire the BIOS response to a physical presence command."
    7338             :         },
    7339             :         {
    7340             :                 HRES_TPM_E_PPI_USER_ABORT,
    7341             :                 "HRES_TPM_E_PPI_USER_ABORT",
    7342             :                 "The user failed to confirm the TPM operation request."
    7343             :         },
    7344             :         {
    7345             :                 HRES_TPM_E_PPI_BIOS_FAILURE,
    7346             :                 "HRES_TPM_E_PPI_BIOS_FAILURE",
    7347             :                 "The BIOS failure prevented the successful execution of the requested TPM operation (for example, invalid TPM operation request, BIOS communication error with the TPM)."
    7348             :         },
    7349             :         {
    7350             :                 HRES_TPM_E_PPI_NOT_SUPPORTED,
    7351             :                 "HRES_TPM_E_PPI_NOT_SUPPORTED",
    7352             :                 "The BIOS does not support the physical presence interface."
    7353             :         },
    7354             :         {
    7355             :                 HRES_PLA_E_DCS_NOT_FOUND,
    7356             :                 "HRES_PLA_E_DCS_NOT_FOUND",
    7357             :                 "A Data Collector Set was not found."
    7358             :         },
    7359             :         {
    7360             :                 HRES_PLA_E_TOO_MANY_FOLDERS,
    7361             :                 "HRES_PLA_E_TOO_MANY_FOLDERS",
    7362             :                 "Unable to start Data Collector Set because there are too many folders."
    7363             :         },
    7364             :         {
    7365             :                 HRES_PLA_E_NO_MIN_DISK,
    7366             :                 "HRES_PLA_E_NO_MIN_DISK",
    7367             :                 "Not enough free disk space to start Data Collector Set."
    7368             :         },
    7369             :         {
    7370             :                 HRES_PLA_E_DCS_IN_USE,
    7371             :                 "HRES_PLA_E_DCS_IN_USE",
    7372             :                 "Data Collector Set is in use."
    7373             :         },
    7374             :         {
    7375             :                 HRES_PLA_E_DCS_ALREADY_EXISTS,
    7376             :                 "HRES_PLA_E_DCS_ALREADY_EXISTS",
    7377             :                 "Data Collector Set already exists."
    7378             :         },
    7379             :         {
    7380             :                 HRES_PLA_E_PROPERTY_CONFLICT,
    7381             :                 "HRES_PLA_E_PROPERTY_CONFLICT",
    7382             :                 "Property value conflict."
    7383             :         },
    7384             :         {
    7385             :                 HRES_PLA_E_DCS_SINGLETON_REQUIRED,
    7386             :                 "HRES_PLA_E_DCS_SINGLETON_REQUIRED",
    7387             :                 "The current configuration for this Data Collector Set requires that it contain exactly one Data Collector."
    7388             :         },
    7389             :         {
    7390             :                 HRES_PLA_E_CREDENTIALS_REQUIRED,
    7391             :                 "HRES_PLA_E_CREDENTIALS_REQUIRED",
    7392             :                 "A user account is required to commit the current Data Collector Set properties."
    7393             :         },
    7394             :         {
    7395             :                 HRES_PLA_E_DCS_NOT_RUNNING,
    7396             :                 "HRES_PLA_E_DCS_NOT_RUNNING",
    7397             :                 "Data Collector Set is not running."
    7398             :         },
    7399             :         {
    7400             :                 HRES_PLA_E_CONFLICT_INCL_EXCL_API,
    7401             :                 "HRES_PLA_E_CONFLICT_INCL_EXCL_API",
    7402             :                 "A conflict was detected in the list of include and exclude APIs. Do not specify the same API in both the include list and the exclude list."
    7403             :         },
    7404             :         {
    7405             :                 HRES_PLA_E_NETWORK_EXE_NOT_VALID,
    7406             :                 "HRES_PLA_E_NETWORK_EXE_NOT_VALID",
    7407             :                 "The executable path specified refers to a network share or UNC path."
    7408             :         },
    7409             :         {
    7410             :                 HRES_PLA_E_EXE_ALREADY_CONFIGURED,
    7411             :                 "HRES_PLA_E_EXE_ALREADY_CONFIGURED",
    7412             :                 "The executable path specified is already configured for API tracing."
    7413             :         },
    7414             :         {
    7415             :                 HRES_PLA_E_EXE_PATH_NOT_VALID,
    7416             :                 "HRES_PLA_E_EXE_PATH_NOT_VALID",
    7417             :                 "The executable path specified does not exist. Verify that the specified path is correct."
    7418             :         },
    7419             :         {
    7420             :                 HRES_PLA_E_DC_ALREADY_EXISTS,
    7421             :                 "HRES_PLA_E_DC_ALREADY_EXISTS",
    7422             :                 "Data Collector already exists."
    7423             :         },
    7424             :         {
    7425             :                 HRES_PLA_E_DCS_START_WAIT_TIMEOUT,
    7426             :                 "HRES_PLA_E_DCS_START_WAIT_TIMEOUT",
    7427             :                 "The wait for the Data Collector Set start notification has timed out."
    7428             :         },
    7429             :         {
    7430             :                 HRES_PLA_E_DC_START_WAIT_TIMEOUT,
    7431             :                 "HRES_PLA_E_DC_START_WAIT_TIMEOUT",
    7432             :                 "The wait for the Data Collector to start has timed out."
    7433             :         },
    7434             :         {
    7435             :                 HRES_PLA_E_REPORT_WAIT_TIMEOUT,
    7436             :                 "HRES_PLA_E_REPORT_WAIT_TIMEOUT",
    7437             :                 "The wait for the report generation tool to finish has timed out."
    7438             :         },
    7439             :         {
    7440             :                 HRES_PLA_E_NO_DUPLICATES,
    7441             :                 "HRES_PLA_E_NO_DUPLICATES",
    7442             :                 "Duplicate items are not allowed."
    7443             :         },
    7444             :         {
    7445             :                 HRES_PLA_E_EXE_FULL_PATH_REQUIRED,
    7446             :                 "HRES_PLA_E_EXE_FULL_PATH_REQUIRED",
    7447             :                 "When specifying the executable to trace, you must specify a full path to the executable and not just a file name."
    7448             :         },
    7449             :         {
    7450             :                 HRES_PLA_E_INVALID_SESSION_NAME,
    7451             :                 "HRES_PLA_E_INVALID_SESSION_NAME",
    7452             :                 "The session name provided is invalid."
    7453             :         },
    7454             :         {
    7455             :                 HRES_PLA_E_PLA_CHANNEL_NOT_ENABLED,
    7456             :                 "HRES_PLA_E_PLA_CHANNEL_NOT_ENABLED",
    7457             :                 "The Event Log channel Microsoft-Windows-Diagnosis-PLA/Operational must be enabled to perform this operation."
    7458             :         },
    7459             :         {
    7460             :                 HRES_PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED,
    7461             :                 "HRES_PLA_E_TASKSCHED_CHANNEL_NOT_ENABLED",
    7462             :                 "The Event Log channel Microsoft-Windows-TaskScheduler must be enabled to perform this operation."
    7463             :         },
    7464             :         {
    7465             :                 HRES_FVE_E_LOCKED_VOLUME,
    7466             :                 "HRES_FVE_E_LOCKED_VOLUME",
    7467             :                 "The volume must be unlocked before it can be used."
    7468             :         },
    7469             :         {
    7470             :                 HRES_FVE_E_NOT_ENCRYPTED,
    7471             :                 "HRES_FVE_E_NOT_ENCRYPTED",
    7472             :                 "The volume is fully decrypted and no key is available."
    7473             :         },
    7474             :         {
    7475             :                 HRES_FVE_E_NO_TPM_BIOS,
    7476             :                 "HRES_FVE_E_NO_TPM_BIOS",
    7477             :                 "The firmware does not support using a TPM during boot."
    7478             :         },
    7479             :         {
    7480             :                 HRES_FVE_E_NO_MBR_METRIC,
    7481             :                 "HRES_FVE_E_NO_MBR_METRIC",
    7482             :                 "The firmware does not use a TPM to perform initial program load (IPL) measurement."
    7483             :         },
    7484             :         {
    7485             :                 HRES_FVE_E_NO_BOOTSECTOR_METRIC,
    7486             :                 "HRES_FVE_E_NO_BOOTSECTOR_METRIC",
    7487             :                 "The master boot record (MBR) is not TPM-aware."
    7488             :         },
    7489             :         {
    7490             :                 HRES_FVE_E_NO_BOOTMGR_METRIC,
    7491             :                 "HRES_FVE_E_NO_BOOTMGR_METRIC",
    7492             :                 "The BOOTMGR is not being measured by the TPM."
    7493             :         },
    7494             :         {
    7495             :                 HRES_FVE_E_WRONG_BOOTMGR,
    7496             :                 "HRES_FVE_E_WRONG_BOOTMGR",
    7497             :                 "The BOOTMGR component does not perform expected TPM measurements."
    7498             :         },
    7499             :         {
    7500             :                 HRES_FVE_E_SECURE_KEY_REQUIRED,
    7501             :                 "HRES_FVE_E_SECURE_KEY_REQUIRED",
    7502             :                 "No secure key protection mechanism has been defined."
    7503             :         },
    7504             :         {
    7505             :                 HRES_FVE_E_NOT_ACTIVATED,
    7506             :                 "HRES_FVE_E_NOT_ACTIVATED",
    7507             :                 "This volume has not been provisioned for encryption."
    7508             :         },
    7509             :         {
    7510             :                 HRES_FVE_E_ACTION_NOT_ALLOWED,
    7511             :                 "HRES_FVE_E_ACTION_NOT_ALLOWED",
    7512             :                 "Requested action was denied by the full-volume encryption (FVE) control engine."
    7513             :         },
    7514             :         {
    7515             :                 HRES_FVE_E_AD_SCHEMA_NOT_INSTALLED,
    7516             :                 "HRES_FVE_E_AD_SCHEMA_NOT_INSTALLED",
    7517             :                 "The Active Directory forest does not contain the required attributes and classes to host FVE or TPM information."
    7518             :         },
    7519             :         {
    7520             :                 HRES_FVE_E_AD_INVALID_DATATYPE,
    7521             :                 "HRES_FVE_E_AD_INVALID_DATATYPE",
    7522             :                 "The type of data obtained from Active Directory was not expected."
    7523             :         },
    7524             :         {
    7525             :                 HRES_FVE_E_AD_INVALID_DATASIZE,
    7526             :                 "HRES_FVE_E_AD_INVALID_DATASIZE",
    7527             :                 "The size of the data obtained from Active Directory was not expected."
    7528             :         },
    7529             :         {
    7530             :                 HRES_FVE_E_AD_NO_VALUES,
    7531             :                 "HRES_FVE_E_AD_NO_VALUES",
    7532             :                 "The attribute read from Active Directory has no (zero) values."
    7533             :         },
    7534             :         {
    7535             :                 HRES_FVE_E_AD_ATTR_NOT_SET,
    7536             :                 "HRES_FVE_E_AD_ATTR_NOT_SET",
    7537             :                 "The attribute was not set."
    7538             :         },
    7539             :         {
    7540             :                 HRES_FVE_E_AD_GUID_NOT_FOUND,
    7541             :                 "HRES_FVE_E_AD_GUID_NOT_FOUND",
    7542             :                 "The specified GUID could not be found."
    7543             :         },
    7544             :         {
    7545             :                 HRES_FVE_E_BAD_INFORMATION,
    7546             :                 "HRES_FVE_E_BAD_INFORMATION",
    7547             :                 "The control block for the encrypted volume is not valid."
    7548             :         },
    7549             :         {
    7550             :                 HRES_FVE_E_TOO_SMALL,
    7551             :                 "HRES_FVE_E_TOO_SMALL",
    7552             :                 "Not enough free space remaining on volume to allow encryption."
    7553             :         },
    7554             :         {
    7555             :                 HRES_FVE_E_SYSTEM_VOLUME,
    7556             :                 "HRES_FVE_E_SYSTEM_VOLUME",
    7557             :                 "The volume cannot be encrypted because it is required to boot the operating system."
    7558             :         },
    7559             :         {
    7560             :                 HRES_FVE_E_FAILED_WRONG_FS,
    7561             :                 "HRES_FVE_E_FAILED_WRONG_FS",
    7562             :                 "The volume cannot be encrypted because the file system is not supported."
    7563             :         },
    7564             :         {
    7565             :                 HRES_FVE_E_FAILED_BAD_FS,
    7566             :                 "HRES_FVE_E_FAILED_BAD_FS",
    7567             :                 "The file system is inconsistent. Run CHKDSK."
    7568             :         },
    7569             :         {
    7570             :                 HRES_FVE_E_NOT_SUPPORTED,
    7571             :                 "HRES_FVE_E_NOT_SUPPORTED",
    7572             :                 "This volume cannot be encrypted."
    7573             :         },
    7574             :         {
    7575             :                 HRES_FVE_E_BAD_DATA,
    7576             :                 "HRES_FVE_E_BAD_DATA",
    7577             :                 "Data supplied is malformed."
    7578             :         },
    7579             :         {
    7580             :                 HRES_FVE_E_VOLUME_NOT_BOUND,
    7581             :                 "HRES_FVE_E_VOLUME_NOT_BOUND",
    7582             :                 "Volume is not bound to the system."
    7583             :         },
    7584             :         {
    7585             :                 HRES_FVE_E_TPM_NOT_OWNED,
    7586             :                 "HRES_FVE_E_TPM_NOT_OWNED",
    7587             :                 "TPM must be owned before a volume can be bound to it."
    7588             :         },
    7589             :         {
    7590             :                 HRES_FVE_E_NOT_DATA_VOLUME,
    7591             :                 "HRES_FVE_E_NOT_DATA_VOLUME",
    7592             :                 "The volume specified is not a data volume."
    7593             :         },
    7594             :         {
    7595             :                 HRES_FVE_E_AD_INSUFFICIENT_BUFFER,
    7596             :                 "HRES_FVE_E_AD_INSUFFICIENT_BUFFER",
    7597             :                 "The buffer supplied to a function was insufficient to contain the returned data."
    7598             :         },
    7599             :         {
    7600             :                 HRES_FVE_E_CONV_READ,
    7601             :                 "HRES_FVE_E_CONV_READ",
    7602             :                 "A read operation failed while converting the volume."
    7603             :         },
    7604             :         {
    7605             :                 HRES_FVE_E_CONV_WRITE,
    7606             :                 "HRES_FVE_E_CONV_WRITE",
    7607             :                 "A write operation failed while converting the volume."
    7608             :         },
    7609             :         {
    7610             :                 HRES_FVE_E_KEY_REQUIRED,
    7611             :                 "HRES_FVE_E_KEY_REQUIRED",
    7612             :                 "One or more key protection mechanisms are required for this volume."
    7613             :         },
    7614             :         {
    7615             :                 HRES_FVE_E_CLUSTERING_NOT_SUPPORTED,
    7616             :                 "HRES_FVE_E_CLUSTERING_NOT_SUPPORTED",
    7617             :                 "Cluster configurations are not supported."
    7618             :         },
    7619             :         {
    7620             :                 HRES_FVE_E_VOLUME_BOUND_ALREADY,
    7621             :                 "HRES_FVE_E_VOLUME_BOUND_ALREADY",
    7622             :                 "The volume is already bound to the system."
    7623             :         },
    7624             :         {
    7625             :                 HRES_FVE_E_OS_NOT_PROTECTED,
    7626             :                 "HRES_FVE_E_OS_NOT_PROTECTED",
    7627             :                 "The boot OS volume is not being protected via FVE."
    7628             :         },
    7629             :         {
    7630             :                 HRES_FVE_E_PROTECTION_DISABLED,
    7631             :                 "HRES_FVE_E_PROTECTION_DISABLED",
    7632             :                 "All protection mechanisms are effectively disabled (clear key exists)."
    7633             :         },
    7634             :         {
    7635             :                 HRES_FVE_E_RECOVERY_KEY_REQUIRED,
    7636             :                 "HRES_FVE_E_RECOVERY_KEY_REQUIRED",
    7637             :                 "A recovery key protection mechanism is required."
    7638             :         },
    7639             :         {
    7640             :                 HRES_FVE_E_FOREIGN_VOLUME,
    7641             :                 "HRES_FVE_E_FOREIGN_VOLUME",
    7642             :                 "This volume cannot be bound to a TPM."
    7643             :         },
    7644             :         {
    7645             :                 HRES_FVE_E_OVERLAPPED_UPDATE,
    7646             :                 "HRES_FVE_E_OVERLAPPED_UPDATE",
    7647             :                 "The control block for the encrypted volume was updated by another thread. Try again."
    7648             :         },
    7649             :         {
    7650             :                 HRES_FVE_E_TPM_SRK_AUTH_NOT_ZERO,
    7651             :                 "HRES_FVE_E_TPM_SRK_AUTH_NOT_ZERO",
    7652             :                 "The SRK authentication of the TPM is not zero and, therefore, is not compatible."
    7653             :         },
    7654             :         {
    7655             :                 HRES_FVE_E_FAILED_SECTOR_SIZE,
    7656             :                 "HRES_FVE_E_FAILED_SECTOR_SIZE",
    7657             :                 "The volume encryption algorithm cannot be used on this sector size."
    7658             :         },
    7659             :         {
    7660             :                 HRES_FVE_E_FAILED_AUTHENTICATION,
    7661             :                 "HRES_FVE_E_FAILED_AUTHENTICATION",
    7662             :                 "BitLocker recovery authentication failed."
    7663             :         },
    7664             :         {
    7665             :                 HRES_FVE_E_NOT_OS_VOLUME,
    7666             :                 "HRES_FVE_E_NOT_OS_VOLUME",
    7667             :                 "The volume specified is not the boot OS volume."
    7668             :         },
    7669             :         {
    7670             :                 HRES_FVE_E_AUTOUNLOCK_ENABLED,
    7671             :                 "HRES_FVE_E_AUTOUNLOCK_ENABLED",
    7672             :                 "Auto-unlock information for data volumes is present on the boot OS volume."
    7673             :         },
    7674             :         {
    7675             :                 HRES_FVE_E_WRONG_BOOTSECTOR,
    7676             :                 "HRES_FVE_E_WRONG_BOOTSECTOR",
    7677             :                 "The system partition boot sector does not perform TPM measurements."
    7678             :         },
    7679             :         {
    7680             :                 HRES_FVE_E_WRONG_SYSTEM_FS,
    7681             :                 "HRES_FVE_E_WRONG_SYSTEM_FS",
    7682             :                 "The system partition file system must be NTFS."
    7683             :         },
    7684             :         {
    7685             :                 HRES_FVE_E_POLICY_PASSWORD_REQUIRED,
    7686             :                 "HRES_FVE_E_POLICY_PASSWORD_REQUIRED",
    7687             :                 "Group policy requires a recovery password before encryption can begin."
    7688             :         },
    7689             :         {
    7690             :                 HRES_FVE_E_CANNOT_SET_FVEK_ENCRYPTED,
    7691             :                 "HRES_FVE_E_CANNOT_SET_FVEK_ENCRYPTED",
    7692             :                 "The volume encryption algorithm and key cannot be set on an encrypted volume."
    7693             :         },
    7694             :         {
    7695             :                 HRES_FVE_E_CANNOT_ENCRYPT_NO_KEY,
    7696             :                 "HRES_FVE_E_CANNOT_ENCRYPT_NO_KEY",
    7697             :                 "A key must be specified before encryption can begin."
    7698             :         },
    7699             :         {
    7700             :                 HRES_FVE_E_BOOTABLE_CDDVD,
    7701             :                 "HRES_FVE_E_BOOTABLE_CDDVD",
    7702             :                 "A bootable CD/DVD is in the system. Remove the CD/DVD and reboot the system."
    7703             :         },
    7704             :         {
    7705             :                 HRES_FVE_E_PROTECTOR_EXISTS,
    7706             :                 "HRES_FVE_E_PROTECTOR_EXISTS",
    7707             :                 "An instance of this key protector already exists on the volume."
    7708             :         },
    7709             :         {
    7710             :                 HRES_FVE_E_RELATIVE_PATH,
    7711             :                 "HRES_FVE_E_RELATIVE_PATH",
    7712             :                 "The file cannot be saved to a relative path."
    7713             :         },
    7714             :         {
    7715             :                 HRES_FWP_E_CALLOUT_NOT_FOUND,
    7716             :                 "HRES_FWP_E_CALLOUT_NOT_FOUND",
    7717             :                 "The callout does not exist."
    7718             :         },
    7719             :         {
    7720             :                 HRES_FWP_E_CONDITION_NOT_FOUND,
    7721             :                 "HRES_FWP_E_CONDITION_NOT_FOUND",
    7722             :                 "The filter condition does not exist."
    7723             :         },
    7724             :         {
    7725             :                 HRES_FWP_E_FILTER_NOT_FOUND,
    7726             :                 "HRES_FWP_E_FILTER_NOT_FOUND",
    7727             :                 "The filter does not exist."
    7728             :         },
    7729             :         {
    7730             :                 HRES_FWP_E_LAYER_NOT_FOUND,
    7731             :                 "HRES_FWP_E_LAYER_NOT_FOUND",
    7732             :                 "The layer does not exist."
    7733             :         },
    7734             :         {
    7735             :                 HRES_FWP_E_PROVIDER_NOT_FOUND,
    7736             :                 "HRES_FWP_E_PROVIDER_NOT_FOUND",
    7737             :                 "The provider does not exist."
    7738             :         },
    7739             :         {
    7740             :                 HRES_FWP_E_PROVIDER_CONTEXT_NOT_FOUND,
    7741             :                 "HRES_FWP_E_PROVIDER_CONTEXT_NOT_FOUND",
    7742             :                 "The provider context does not exist."
    7743             :         },
    7744             :         {
    7745             :                 HRES_FWP_E_SUBLAYER_NOT_FOUND,
    7746             :                 "HRES_FWP_E_SUBLAYER_NOT_FOUND",
    7747             :                 "The sublayer does not exist."
    7748             :         },
    7749             :         {
    7750             :                 HRES_FWP_E_NOT_FOUND,
    7751             :                 "HRES_FWP_E_NOT_FOUND",
    7752             :                 "The object does not exist."
    7753             :         },
    7754             :         {
    7755             :                 HRES_FWP_E_ALREADY_EXISTS,
    7756             :                 "HRES_FWP_E_ALREADY_EXISTS",
    7757             :                 "An object with that GUID or LUID already exists."
    7758             :         },
    7759             :         {
    7760             :                 HRES_FWP_E_IN_USE,
    7761             :                 "HRES_FWP_E_IN_USE",
    7762             :                 "The object is referenced by other objects and, therefore, cannot be deleted."
    7763             :         },
    7764             :         {
    7765             :                 HRES_FWP_E_DYNAMIC_SESSION_IN_PROGRESS,
    7766             :                 "HRES_FWP_E_DYNAMIC_SESSION_IN_PROGRESS",
    7767             :                 "The call is not allowed from within a dynamic session."
    7768             :         },
    7769             :         {
    7770             :                 HRES_FWP_E_WRONG_SESSION,
    7771             :                 "HRES_FWP_E_WRONG_SESSION",
    7772             :                 "The call was made from the wrong session and, therefore, cannot be completed."
    7773             :         },
    7774             :         {
    7775             :                 HRES_FWP_E_NO_TXN_IN_PROGRESS,
    7776             :                 "HRES_FWP_E_NO_TXN_IN_PROGRESS",
    7777             :                 "The call must be made from within an explicit transaction."
    7778             :         },
    7779             :         {
    7780             :                 HRES_FWP_E_TXN_IN_PROGRESS,
    7781             :                 "HRES_FWP_E_TXN_IN_PROGRESS",
    7782             :                 "The call is not allowed from within an explicit transaction."
    7783             :         },
    7784             :         {
    7785             :                 HRES_FWP_E_TXN_ABORTED,
    7786             :                 "HRES_FWP_E_TXN_ABORTED",
    7787             :                 "The explicit transaction has been forcibly canceled."
    7788             :         },
    7789             :         {
    7790             :                 HRES_FWP_E_SESSION_ABORTED,
    7791             :                 "HRES_FWP_E_SESSION_ABORTED",
    7792             :                 "The session has been canceled."
    7793             :         },
    7794             :         {
    7795             :                 HRES_FWP_E_INCOMPATIBLE_TXN,
    7796             :                 "HRES_FWP_E_INCOMPATIBLE_TXN",
    7797             :                 "The call is not allowed from within a read-only transaction."
    7798             :         },
    7799             :         {
    7800             :                 HRES_FWP_E_TIMEOUT,
    7801             :                 "HRES_FWP_E_TIMEOUT",
    7802             :                 "The call timed out while waiting to acquire the transaction lock."
    7803             :         },
    7804             :         {
    7805             :                 HRES_FWP_E_NET_EVENTS_DISABLED,
    7806             :                 "HRES_FWP_E_NET_EVENTS_DISABLED",
    7807             :                 "Collection of network diagnostic events is disabled."
    7808             :         },
    7809             :         {
    7810             :                 HRES_FWP_E_INCOMPATIBLE_LAYER,
    7811             :                 "HRES_FWP_E_INCOMPATIBLE_LAYER",
    7812             :                 "The operation is not supported by the specified layer."
    7813             :         },
    7814             :         {
    7815             :                 HRES_FWP_E_KM_CLIENTS_ONLY,
    7816             :                 "HRES_FWP_E_KM_CLIENTS_ONLY",
    7817             :                 "The call is allowed for kernel-mode callers only."
    7818             :         },
    7819             :         {
    7820             :                 HRES_FWP_E_LIFETIME_MISMATCH,
    7821             :                 "HRES_FWP_E_LIFETIME_MISMATCH",
    7822             :                 "The call tried to associate two objects with incompatible lifetimes."
    7823             :         },
    7824             :         {
    7825             :                 HRES_FWP_E_BUILTIN_OBJECT,
    7826             :                 "HRES_FWP_E_BUILTIN_OBJECT",
    7827             :                 "The object is built in and, therefore, cannot be deleted."
    7828             :         },
    7829             :         {
    7830             :                 HRES_FWP_E_TOO_MANY_BOOTTIME_FILTERS,
    7831             :                 "HRES_FWP_E_TOO_MANY_BOOTTIME_FILTERS",
    7832             :                 "The maximum number of boot-time filters has been reached."
    7833             :         },
    7834             :         {
    7835             :                 HRES_FWP_E_NOTIFICATION_DROPPED,
    7836             :                 "HRES_FWP_E_NOTIFICATION_DROPPED",
    7837             :                 "A notification could not be delivered because a message queue is at its maximum capacity."
    7838             :         },
    7839             :         {
    7840             :                 HRES_FWP_E_TRAFFIC_MISMATCH,
    7841             :                 "HRES_FWP_E_TRAFFIC_MISMATCH",
    7842             :                 "The traffic parameters do not match those for the security association context."
    7843             :         },
    7844             :         {
    7845             :                 HRES_FWP_E_INCOMPATIBLE_SA_STATE,
    7846             :                 "HRES_FWP_E_INCOMPATIBLE_SA_STATE",
    7847             :                 "The call is not allowed for the current security association state."
    7848             :         },
    7849             :         {
    7850             :                 HRES_FWP_E_NULL_POINTER,
    7851             :                 "HRES_FWP_E_NULL_POINTER",
    7852             :                 "A required pointer is null."
    7853             :         },
    7854             :         {
    7855             :                 HRES_FWP_E_INVALID_ENUMERATOR,
    7856             :                 "HRES_FWP_E_INVALID_ENUMERATOR",
    7857             :                 "An enumerator is not valid."
    7858             :         },
    7859             :         {
    7860             :                 HRES_FWP_E_INVALID_FLAGS,
    7861             :                 "HRES_FWP_E_INVALID_FLAGS",
    7862             :                 "The flags field contains an invalid value."
    7863             :         },
    7864             :         {
    7865             :                 HRES_FWP_E_INVALID_NET_MASK,
    7866             :                 "HRES_FWP_E_INVALID_NET_MASK",
    7867             :                 "A network mask is not valid."
    7868             :         },
    7869             :         {
    7870             :                 HRES_FWP_E_INVALID_RANGE,
    7871             :                 "HRES_FWP_E_INVALID_RANGE",
    7872             :                 "An FWP_RANGE is not valid."
    7873             :         },
    7874             :         {
    7875             :                 HRES_FWP_E_INVALID_INTERVAL,
    7876             :                 "HRES_FWP_E_INVALID_INTERVAL",
    7877             :                 "The time interval is not valid."
    7878             :         },
    7879             :         {
    7880             :                 HRES_FWP_E_ZERO_LENGTH_ARRAY,
    7881             :                 "HRES_FWP_E_ZERO_LENGTH_ARRAY",
    7882             :                 "An array that must contain at least one element that is zero-length."
    7883             :         },
    7884             :         {
    7885             :                 HRES_FWP_E_NULL_DISPLAY_NAME,
    7886             :                 "HRES_FWP_E_NULL_DISPLAY_NAME",
    7887             :                 "The displayData.name field cannot be null."
    7888             :         },
    7889             :         {
    7890             :                 HRES_FWP_E_INVALID_ACTION_TYPE,
    7891             :                 "HRES_FWP_E_INVALID_ACTION_TYPE",
    7892             :                 "The action type is not one of the allowed action types for a filter."
    7893             :         },
    7894             :         {
    7895             :                 HRES_FWP_E_INVALID_WEIGHT,
    7896             :                 "HRES_FWP_E_INVALID_WEIGHT",
    7897             :                 "The filter weight is not valid."
    7898             :         },
    7899             :         {
    7900             :                 HRES_FWP_E_MATCH_TYPE_MISMATCH,
    7901             :                 "HRES_FWP_E_MATCH_TYPE_MISMATCH",
    7902             :                 "A filter condition contains a match type that is not compatible with the operands."
    7903             :         },
    7904             :         {
    7905             :                 HRES_FWP_E_TYPE_MISMATCH,
    7906             :                 "HRES_FWP_E_TYPE_MISMATCH",
    7907             :                 "An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type."
    7908             :         },
    7909             :         {
    7910             :                 HRES_FWP_E_OUT_OF_BOUNDS,
    7911             :                 "HRES_FWP_E_OUT_OF_BOUNDS",
    7912             :                 "An integer value is outside the allowed range."
    7913             :         },
    7914             :         {
    7915             :                 HRES_FWP_E_RESERVED,
    7916             :                 "HRES_FWP_E_RESERVED",
    7917             :                 "A reserved field is nonzero."
    7918             :         },
    7919             :         {
    7920             :                 HRES_FWP_E_DUPLICATE_CONDITION,
    7921             :                 "HRES_FWP_E_DUPLICATE_CONDITION",
    7922             :                 "A filter cannot contain multiple conditions operating on a single field."
    7923             :         },
    7924             :         {
    7925             :                 HRES_FWP_E_DUPLICATE_KEYMOD,
    7926             :                 "HRES_FWP_E_DUPLICATE_KEYMOD",
    7927             :                 "A policy cannot contain the same keying module more than once."
    7928             :         },
    7929             :         {
    7930             :                 HRES_FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER,
    7931             :                 "HRES_FWP_E_ACTION_INCOMPATIBLE_WITH_LAYER",
    7932             :                 "The action type is not compatible with the layer."
    7933             :         },
    7934             :         {
    7935             :                 HRES_FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER,
    7936             :                 "HRES_FWP_E_ACTION_INCOMPATIBLE_WITH_SUBLAYER",
    7937             :                 "The action type is not compatible with the sublayer."
    7938             :         },
    7939             :         {
    7940             :                 HRES_FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER,
    7941             :                 "HRES_FWP_E_CONTEXT_INCOMPATIBLE_WITH_LAYER",
    7942             :                 "The raw context or the provider context is not compatible with the layer."
    7943             :         },
    7944             :         {
    7945             :                 HRES_FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT,
    7946             :                 "HRES_FWP_E_CONTEXT_INCOMPATIBLE_WITH_CALLOUT",
    7947             :                 "The raw context or the provider context is not compatible with the callout."
    7948             :         },
    7949             :         {
    7950             :                 HRES_FWP_E_INCOMPATIBLE_AUTH_METHOD,
    7951             :                 "HRES_FWP_E_INCOMPATIBLE_AUTH_METHOD",
    7952             :                 "The authentication method is not compatible with the policy type."
    7953             :         },
    7954             :         {
    7955             :                 HRES_FWP_E_INCOMPATIBLE_DH_GROUP,
    7956             :                 "HRES_FWP_E_INCOMPATIBLE_DH_GROUP",
    7957             :                 "The Diffie-Hellman group is not compatible with the policy type."
    7958             :         },
    7959             :         {
    7960             :                 HRES_FWP_E_EM_NOT_SUPPORTED,
    7961             :                 "HRES_FWP_E_EM_NOT_SUPPORTED",
    7962             :                 "An Internet Key Exchange (IKE) policy cannot contain an Extended Mode policy."
    7963             :         },
    7964             :         {
    7965             :                 HRES_FWP_E_NEVER_MATCH,
    7966             :                 "HRES_FWP_E_NEVER_MATCH",
    7967             :                 "The enumeration template or subscription will never match any objects."
    7968             :         },
    7969             :         {
    7970             :                 HRES_FWP_E_PROVIDER_CONTEXT_MISMATCH,
    7971             :                 "HRES_FWP_E_PROVIDER_CONTEXT_MISMATCH",
    7972             :                 "The provider context is of the wrong type."
    7973             :         },
    7974             :         {
    7975             :                 HRES_FWP_E_INVALID_PARAMETER,
    7976             :                 "HRES_FWP_E_INVALID_PARAMETER",
    7977             :                 "The parameter is incorrect."
    7978             :         },
    7979             :         {
    7980             :                 HRES_FWP_E_TOO_MANY_SUBLAYERS,
    7981             :                 "HRES_FWP_E_TOO_MANY_SUBLAYERS",
    7982             :                 "The maximum number of sublayers has been reached."
    7983             :         },
    7984             :         {
    7985             :                 HRES_FWP_E_CALLOUT_NOTIFICATION_FAILED,
    7986             :                 "HRES_FWP_E_CALLOUT_NOTIFICATION_FAILED",
    7987             :                 "The notification function for a callout returned an error."
    7988             :         },
    7989             :         {
    7990             :                 HRES_FWP_E_INCOMPATIBLE_AUTH_CONFIG,
    7991             :                 "HRES_FWP_E_INCOMPATIBLE_AUTH_CONFIG",
    7992             :                 "The IPsec authentication configuration is not compatible with the authentication type."
    7993             :         },
    7994             :         {
    7995             :                 HRES_FWP_E_INCOMPATIBLE_CIPHER_CONFIG,
    7996             :                 "HRES_FWP_E_INCOMPATIBLE_CIPHER_CONFIG",
    7997             :                 "The IPsec cipher configuration is not compatible with the cipher type."
    7998             :         },
    7999             :         {
    8000             :                 HRES_ERROR_NDIS_INTERFACE_CLOSING,
    8001             :                 "HRES_ERROR_NDIS_INTERFACE_CLOSING",
    8002             :                 "The binding to the network interface is being closed."
    8003             :         },
    8004             :         {
    8005             :                 HRES_ERROR_NDIS_BAD_VERSION,
    8006             :                 "HRES_ERROR_NDIS_BAD_VERSION",
    8007             :                 "An invalid version was specified."
    8008             :         },
    8009             :         {
    8010             :                 HRES_ERROR_NDIS_BAD_CHARACTERISTICS,
    8011             :                 "HRES_ERROR_NDIS_BAD_CHARACTERISTICS",
    8012             :                 "An invalid characteristics table was used."
    8013             :         },
    8014             :         {
    8015             :                 HRES_ERROR_NDIS_ADAPTER_NOT_FOUND,
    8016             :                 "HRES_ERROR_NDIS_ADAPTER_NOT_FOUND",
    8017             :                 "Failed to find the network interface, or the network interface is not ready."
    8018             :         },
    8019             :         {
    8020             :                 HRES_ERROR_NDIS_OPEN_FAILED,
    8021             :                 "HRES_ERROR_NDIS_OPEN_FAILED",
    8022             :                 "Failed to open the network interface."
    8023             :         },
    8024             :         {
    8025             :                 HRES_ERROR_NDIS_DEVICE_FAILED,
    8026             :                 "HRES_ERROR_NDIS_DEVICE_FAILED",
    8027             :                 "The network interface has encountered an internal unrecoverable failure."
    8028             :         },
    8029             :         {
    8030             :                 HRES_ERROR_NDIS_MULTICAST_FULL,
    8031             :                 "HRES_ERROR_NDIS_MULTICAST_FULL",
    8032             :                 "The multicast list on the network interface is full."
    8033             :         },
    8034             :         {
    8035             :                 HRES_ERROR_NDIS_MULTICAST_EXISTS,
    8036             :                 "HRES_ERROR_NDIS_MULTICAST_EXISTS",
    8037             :                 "An attempt was made to add a duplicate multicast address to the list."
    8038             :         },
    8039             :         {
    8040             :                 HRES_ERROR_NDIS_MULTICAST_NOT_FOUND,
    8041             :                 "HRES_ERROR_NDIS_MULTICAST_NOT_FOUND",
    8042             :                 "At attempt was made to remove a multicast address that was never added."
    8043             :         },
    8044             :         {
    8045             :                 HRES_ERROR_NDIS_REQUEST_ABORTED,
    8046             :                 "HRES_ERROR_NDIS_REQUEST_ABORTED",
    8047             :                 "The network interface aborted the request."
    8048             :         },
    8049             :         {
    8050             :                 HRES_ERROR_NDIS_RESET_IN_PROGRESS,
    8051             :                 "HRES_ERROR_NDIS_RESET_IN_PROGRESS",
    8052             :                 "The network interface cannot process the request because it is being reset."
    8053             :         },
    8054             :         {
    8055             :                 HRES_ERROR_NDIS_INVALID_PACKET,
    8056             :                 "HRES_ERROR_NDIS_INVALID_PACKET",
    8057             :                 "An attempt was made to send an invalid packet on a network interface."
    8058             :         },
    8059             :         {
    8060             :                 HRES_ERROR_NDIS_INVALID_DEVICE_REQUEST,
    8061             :                 "HRES_ERROR_NDIS_INVALID_DEVICE_REQUEST",
    8062             :                 "The specified request is not a valid operation for the target device."
    8063             :         },
    8064             :         {
    8065             :                 HRES_ERROR_NDIS_ADAPTER_NOT_READY,
    8066             :                 "HRES_ERROR_NDIS_ADAPTER_NOT_READY",
    8067             :                 "The network interface is not ready to complete this operation."
    8068             :         },
    8069             :         {
    8070             :                 HRES_ERROR_NDIS_INVALID_LENGTH,
    8071             :                 "HRES_ERROR_NDIS_INVALID_LENGTH",
    8072             :                 "The length of the buffer submitted for this operation is not valid."
    8073             :         },
    8074             :         {
    8075             :                 HRES_ERROR_NDIS_INVALID_DATA,
    8076             :                 "HRES_ERROR_NDIS_INVALID_DATA",
    8077             :                 "The data used for this operation is not valid."
    8078             :         },
    8079             :         {
    8080             :                 HRES_ERROR_NDIS_BUFFER_TOO_SHORT,
    8081             :                 "HRES_ERROR_NDIS_BUFFER_TOO_SHORT",
    8082             :                 "The length of the buffer submitted for this operation is too small."
    8083             :         },
    8084             :         {
    8085             :                 HRES_ERROR_NDIS_INVALID_OID,
    8086             :                 "HRES_ERROR_NDIS_INVALID_OID",
    8087             :                 "The network interface does not support this OID."
    8088             :         },
    8089             :         {
    8090             :                 HRES_ERROR_NDIS_ADAPTER_REMOVED,
    8091             :                 "HRES_ERROR_NDIS_ADAPTER_REMOVED",
    8092             :                 "The network interface has been removed."
    8093             :         },
    8094             :         {
    8095             :                 HRES_ERROR_NDIS_UNSUPPORTED_MEDIA,
    8096             :                 "HRES_ERROR_NDIS_UNSUPPORTED_MEDIA",
    8097             :                 "The network interface does not support this media type."
    8098             :         },
    8099             :         {
    8100             :                 HRES_ERROR_NDIS_GROUP_ADDRESS_IN_USE,
    8101             :                 "HRES_ERROR_NDIS_GROUP_ADDRESS_IN_USE",
    8102             :                 "An attempt was made to remove a token ring group address that is in use by other components."
    8103             :         },
    8104             :         {
    8105             :                 HRES_ERROR_NDIS_FILE_NOT_FOUND,
    8106             :                 "HRES_ERROR_NDIS_FILE_NOT_FOUND",
    8107             :                 "An attempt was made to map a file that cannot be found."
    8108             :         },
    8109             :         {
    8110             :                 HRES_ERROR_NDIS_ERROR_READING_FILE,
    8111             :                 "HRES_ERROR_NDIS_ERROR_READING_FILE",
    8112             :                 "An error occurred while the NDIS tried to map the file."
    8113             :         },
    8114             :         {
    8115             :                 HRES_ERROR_NDIS_ALREADY_MAPPED,
    8116             :                 "HRES_ERROR_NDIS_ALREADY_MAPPED",
    8117             :                 "An attempt was made to map a file that is already mapped."
    8118             :         },
    8119             :         {
    8120             :                 HRES_ERROR_NDIS_RESOURCE_CONFLICT,
    8121             :                 "HRES_ERROR_NDIS_RESOURCE_CONFLICT",
    8122             :                 "An attempt to allocate a hardware resource failed because the resource is used by another component."
    8123             :         },
    8124             :         {
    8125             :                 HRES_ERROR_NDIS_MEDIA_DISCONNECTED,
    8126             :                 "HRES_ERROR_NDIS_MEDIA_DISCONNECTED",
    8127             :                 "The I/O operation failed because network media is disconnected or the wireless access point is out of range."
    8128             :         },
    8129             :         {
    8130             :                 HRES_ERROR_NDIS_INVALID_ADDRESS,
    8131             :                 "HRES_ERROR_NDIS_INVALID_ADDRESS",
    8132             :                 "The network address used in the request is invalid."
    8133             :         },
    8134             :         {
    8135             :                 HRES_ERROR_NDIS_PAUSED,
    8136             :                 "HRES_ERROR_NDIS_PAUSED",
    8137             :                 "The offload operation on the network interface has been paused."
    8138             :         },
    8139             :         {
    8140             :                 HRES_ERROR_NDIS_INTERFACE_NOT_FOUND,
    8141             :                 "HRES_ERROR_NDIS_INTERFACE_NOT_FOUND",
    8142             :                 "The network interface was not found."
    8143             :         },
    8144             :         {
    8145             :                 HRES_ERROR_NDIS_UNSUPPORTED_REVISION,
    8146             :                 "HRES_ERROR_NDIS_UNSUPPORTED_REVISION",
    8147             :                 "The revision number specified in the structure is not supported."
    8148             :         },
    8149             :         {
    8150             :                 HRES_ERROR_NDIS_INVALID_PORT,
    8151             :                 "HRES_ERROR_NDIS_INVALID_PORT",
    8152             :                 "The specified port does not exist on this network interface."
    8153             :         },
    8154             :         {
    8155             :                 HRES_ERROR_NDIS_INVALID_PORT_STATE,
    8156             :                 "HRES_ERROR_NDIS_INVALID_PORT_STATE",
    8157             :                 "The current state of the specified port on this network interface does not support the requested operation."
    8158             :         },
    8159             :         {
    8160             :                 HRES_ERROR_NDIS_NOT_SUPPORTED,
    8161             :                 "HRES_ERROR_NDIS_NOT_SUPPORTED",
    8162             :                 "The network interface does not support this request."
    8163             :         },
    8164             :         {
    8165             :                 HRES_ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED,
    8166             :                 "HRES_ERROR_NDIS_DOT11_AUTO_CONFIG_ENABLED",
    8167             :                 "The wireless local area network (LAN) interface is in auto-configuration mode and does not support the requested parameter change operation."
    8168             :         },
    8169             :         {
    8170             :                 HRES_ERROR_NDIS_DOT11_MEDIA_IN_USE,
    8171             :                 "HRES_ERROR_NDIS_DOT11_MEDIA_IN_USE",
    8172             :                 "The wireless LAN interface is busy and cannot perform the requested operation."
    8173             :         },
    8174             :         {
    8175             :                 HRES_ERROR_NDIS_DOT11_POWER_STATE_INVALID,
    8176             :                 "HRES_ERROR_NDIS_DOT11_POWER_STATE_INVALID",
    8177             :                 "The wireless LAN interface is shutting down and does not support the requested operation."
    8178             :         },
    8179             :         {
    8180             :                 HRES_TRK_E_NOT_FOUND,
    8181             :                 "HRES_TRK_E_NOT_FOUND",
    8182             :                 "A requested object was not found."
    8183             :         },
    8184             :         {
    8185             :                 HRES_TRK_E_VOLUME_QUOTA_EXCEEDED,
    8186             :                 "HRES_TRK_E_VOLUME_QUOTA_EXCEEDED",
    8187             :                 "The server received a CREATE_VOLUME subrequest of a SYNC_VOLUMES request, but the ServerVolumeTable size limit for the RequestMachine has already been reached."
    8188             :         },
    8189             :         {
    8190             :                 HRES_TRK_SERVER_TOO_BUSY,
    8191             :                 "HRES_TRK_SERVER_TOO_BUSY",
    8192             :                 "The server is busy, and the client should retry the request at a later time."
    8193             :         },
    8194             :         {
    8195             :                 HRES_ERROR_AUDITING_DISABLED,
    8196             :                 "HRES_ERROR_AUDITING_DISABLED",
    8197             :                 "The specified event is currently not being audited."
    8198             :         },
    8199             :         {
    8200             :                 HRES_ERROR_ALL_SIDS_FILTERED,
    8201             :                 "HRES_ERROR_ALL_SIDS_FILTERED",
    8202             :                 "The SID filtering operation removed all SIDs."
    8203             :         },
    8204             :         {
    8205             :                 HRES_ERROR_BIZRULES_NOT_ENABLED,
    8206             :                 "HRES_ERROR_BIZRULES_NOT_ENABLED",
    8207             :                 "Business rule scripts are disabled for the calling application."
    8208             :         },
    8209             :         {
    8210             :                 HRES_NS_E_NOCONNECTION,
    8211             :                 "HRES_NS_E_NOCONNECTION",
    8212             :                 "There is no connection established with the Windows Media server. The operation failed."
    8213             :         },
    8214             :         {
    8215             :                 HRES_NS_E_CANNOTCONNECT,
    8216             :                 "HRES_NS_E_CANNOTCONNECT",
    8217             :                 "Unable to establish a connection to the server."
    8218             :         },
    8219             :         {
    8220             :                 HRES_NS_E_CANNOTDESTROYTITLE,
    8221             :                 "HRES_NS_E_CANNOTDESTROYTITLE",
    8222             :                 "Unable to destroy the title."
    8223             :         },
    8224             :         {
    8225             :                 HRES_NS_E_CANNOTRENAMETITLE,
    8226             :                 "HRES_NS_E_CANNOTRENAMETITLE",
    8227             :                 "Unable to rename the title."
    8228             :         },
    8229             :         {
    8230             :                 HRES_NS_E_CANNOTOFFLINEDISK,
    8231             :                 "HRES_NS_E_CANNOTOFFLINEDISK",
    8232             :                 "Unable to offline disk."
    8233             :         },
    8234             :         {
    8235             :                 HRES_NS_E_CANNOTONLINEDISK,
    8236             :                 "HRES_NS_E_CANNOTONLINEDISK",
    8237             :                 "Unable to online disk."
    8238             :         },
    8239             :         {
    8240             :                 HRES_NS_E_NOREGISTEREDWALKER,
    8241             :                 "HRES_NS_E_NOREGISTEREDWALKER",
    8242             :                 "There is no file parser registered for this type of file."
    8243             :         },
    8244             :         {
    8245             :                 HRES_NS_E_NOFUNNEL,
    8246             :                 "HRES_NS_E_NOFUNNEL",
    8247             :                 "There is no data connection established."
    8248             :         },
    8249             :         {
    8250             :                 HRES_NS_E_NO_LOCALPLAY,
    8251             :                 "HRES_NS_E_NO_LOCALPLAY",
    8252             :                 "Failed to load the local play DLL."
    8253             :         },
    8254             :         {
    8255             :                 HRES_NS_E_NETWORK_BUSY,
    8256             :                 "HRES_NS_E_NETWORK_BUSY",
    8257             :                 "The network is busy."
    8258             :         },
    8259             :         {
    8260             :                 HRES_NS_E_TOO_MANY_SESS,
    8261             :                 "HRES_NS_E_TOO_MANY_SESS",
    8262             :                 "The server session limit was exceeded."
    8263             :         },
    8264             :         {
    8265             :                 HRES_NS_E_ALREADY_CONNECTED,
    8266             :                 "HRES_NS_E_ALREADY_CONNECTED",
    8267             :                 "The network connection already exists."
    8268             :         },
    8269             :         {
    8270             :                 HRES_NS_E_INVALID_INDEX,
    8271             :                 "HRES_NS_E_INVALID_INDEX",
    8272             :                 "Index %1 is invalid."
    8273             :         },
    8274             :         {
    8275             :                 HRES_NS_E_PROTOCOL_MISMATCH,
    8276             :                 "HRES_NS_E_PROTOCOL_MISMATCH",
    8277             :                 "There is no protocol or protocol version supported by both the client and the server."
    8278             :         },
    8279             :         {
    8280             :                 HRES_NS_E_TIMEOUT,
    8281             :                 "HRES_NS_E_TIMEOUT",
    8282             :                 "The server, a computer set up to offer multimedia content to other computers, could not handle your request for multimedia content in a timely manner. Please try again later."
    8283             :         },
    8284             :         {
    8285             :                 HRES_NS_E_NET_WRITE,
    8286             :                 "HRES_NS_E_NET_WRITE",
    8287             :                 "Error writing to the network."
    8288             :         },
    8289             :         {
    8290             :                 HRES_NS_E_NET_READ,
    8291             :                 "HRES_NS_E_NET_READ",
    8292             :                 "Error reading from the network."
    8293             :         },
    8294             :         {
    8295             :                 HRES_NS_E_DISK_WRITE,
    8296             :                 "HRES_NS_E_DISK_WRITE",
    8297             :                 "Error writing to a disk."
    8298             :         },
    8299             :         {
    8300             :                 HRES_NS_E_DISK_READ,
    8301             :                 "HRES_NS_E_DISK_READ",
    8302             :                 "Error reading from a disk."
    8303             :         },
    8304             :         {
    8305             :                 HRES_NS_E_FILE_WRITE,
    8306             :                 "HRES_NS_E_FILE_WRITE",
    8307             :                 "Error writing to a file."
    8308             :         },
    8309             :         {
    8310             :                 HRES_NS_E_FILE_READ,
    8311             :                 "HRES_NS_E_FILE_READ",
    8312             :                 "Error reading from a file."
    8313             :         },
    8314             :         {
    8315             :                 HRES_NS_E_FILE_NOT_FOUND,
    8316             :                 "HRES_NS_E_FILE_NOT_FOUND",
    8317             :                 "The system cannot find the file specified."
    8318             :         },
    8319             :         {
    8320             :                 HRES_NS_E_FILE_EXISTS,
    8321             :                 "HRES_NS_E_FILE_EXISTS",
    8322             :                 "The file already exists."
    8323             :         },
    8324             :         {
    8325             :                 HRES_NS_E_INVALID_NAME,
    8326             :                 "HRES_NS_E_INVALID_NAME",
    8327             :                 "The file name, directory name, or volume label syntax is incorrect."
    8328             :         },
    8329             :         {
    8330             :                 HRES_NS_E_FILE_OPEN_FAILED,
    8331             :                 "HRES_NS_E_FILE_OPEN_FAILED",
    8332             :                 "Failed to open a file."
    8333             :         },
    8334             :         {
    8335             :                 HRES_NS_E_FILE_ALLOCATION_FAILED,
    8336             :                 "HRES_NS_E_FILE_ALLOCATION_FAILED",
    8337             :                 "Unable to allocate a file."
    8338             :         },
    8339             :         {
    8340             :                 HRES_NS_E_FILE_INIT_FAILED,
    8341             :                 "HRES_NS_E_FILE_INIT_FAILED",
    8342             :                 "Unable to initialize a file."
    8343             :         },
    8344             :         {
    8345             :                 HRES_NS_E_FILE_PLAY_FAILED,
    8346             :                 "HRES_NS_E_FILE_PLAY_FAILED",
    8347             :                 "Unable to play a file."
    8348             :         },
    8349             :         {
    8350             :                 HRES_NS_E_SET_DISK_UID_FAILED,
    8351             :                 "HRES_NS_E_SET_DISK_UID_FAILED",
    8352             :                 "Could not set the disk UID."
    8353             :         },
    8354             :         {
    8355             :                 HRES_NS_E_INDUCED,
    8356             :                 "HRES_NS_E_INDUCED",
    8357             :                 "An error was induced for testing purposes."
    8358             :         },
    8359             :         {
    8360             :                 HRES_NS_E_CCLINK_DOWN,
    8361             :                 "HRES_NS_E_CCLINK_DOWN",
    8362             :                 "Two Content Servers failed to communicate."
    8363             :         },
    8364             :         {
    8365             :                 HRES_NS_E_INTERNAL,
    8366             :                 "HRES_NS_E_INTERNAL",
    8367             :                 "An unknown error occurred."
    8368             :         },
    8369             :         {
    8370             :                 HRES_NS_E_BUSY,
    8371             :                 "HRES_NS_E_BUSY",
    8372             :                 "The requested resource is in use."
    8373             :         },
    8374             :         {
    8375             :                 HRES_NS_E_UNRECOGNIZED_STREAM_TYPE,
    8376             :                 "HRES_NS_E_UNRECOGNIZED_STREAM_TYPE",
    8377             :                 "The specified protocol is not recognized. Be sure that the file name and syntax, such as slashes, are correct for the protocol."
    8378             :         },
    8379             :         {
    8380             :                 HRES_NS_E_NETWORK_SERVICE_FAILURE,
    8381             :                 "HRES_NS_E_NETWORK_SERVICE_FAILURE",
    8382             :                 "The network service provider failed."
    8383             :         },
    8384             :         {
    8385             :                 HRES_NS_E_NETWORK_RESOURCE_FAILURE,
    8386             :                 "HRES_NS_E_NETWORK_RESOURCE_FAILURE",
    8387             :                 "An attempt to acquire a network resource failed."
    8388             :         },
    8389             :         {
    8390             :                 HRES_NS_E_CONNECTION_FAILURE,
    8391             :                 "HRES_NS_E_CONNECTION_FAILURE",
    8392             :                 "The network connection has failed."
    8393             :         },
    8394             :         {
    8395             :                 HRES_NS_E_SHUTDOWN,
    8396             :                 "HRES_NS_E_SHUTDOWN",
    8397             :                 "The session is being terminated locally."
    8398             :         },
    8399             :         {
    8400             :                 HRES_NS_E_INVALID_REQUEST,
    8401             :                 "HRES_NS_E_INVALID_REQUEST",
    8402             :                 "The request is invalid in the current state."
    8403             :         },
    8404             :         {
    8405             :                 HRES_NS_E_INSUFFICIENT_BANDWIDTH,
    8406             :                 "HRES_NS_E_INSUFFICIENT_BANDWIDTH",
    8407             :                 "There is insufficient bandwidth available to fulfill the request."
    8408             :         },
    8409             :         {
    8410             :                 HRES_NS_E_NOT_REBUILDING,
    8411             :                 "HRES_NS_E_NOT_REBUILDING",
    8412             :                 "The disk is not rebuilding."
    8413             :         },
    8414             :         {
    8415             :                 HRES_NS_E_LATE_OPERATION,
    8416             :                 "HRES_NS_E_LATE_OPERATION",
    8417             :                 "An operation requested for a particular time could not be carried out on schedule."
    8418             :         },
    8419             :         {
    8420             :                 HRES_NS_E_INVALID_DATA,
    8421             :                 "HRES_NS_E_INVALID_DATA",
    8422             :                 "Invalid or corrupt data was encountered."
    8423             :         },
    8424             :         {
    8425             :                 HRES_NS_E_FILE_BANDWIDTH_LIMIT,
    8426             :                 "HRES_NS_E_FILE_BANDWIDTH_LIMIT",
    8427             :                 "The bandwidth required to stream a file is higher than the maximum file bandwidth allowed on the server."
    8428             :         },
    8429             :         {
    8430             :                 HRES_NS_E_OPEN_FILE_LIMIT,
    8431             :                 "HRES_NS_E_OPEN_FILE_LIMIT",
    8432             :                 "The client cannot have any more files open simultaneously."
    8433             :         },
    8434             :         {
    8435             :                 HRES_NS_E_BAD_CONTROL_DATA,
    8436             :                 "HRES_NS_E_BAD_CONTROL_DATA",
    8437             :                 "The server received invalid data from the client on the control connection."
    8438             :         },
    8439             :         {
    8440             :                 HRES_NS_E_NO_STREAM,
    8441             :                 "HRES_NS_E_NO_STREAM",
    8442             :                 "There is no stream available."
    8443             :         },
    8444             :         {
    8445             :                 HRES_NS_E_STREAM_END,
    8446             :                 "HRES_NS_E_STREAM_END",
    8447             :                 "There is no more data in the stream."
    8448             :         },
    8449             :         {
    8450             :                 HRES_NS_E_SERVER_NOT_FOUND,
    8451             :                 "HRES_NS_E_SERVER_NOT_FOUND",
    8452             :                 "The specified server could not be found."
    8453             :         },
    8454             :         {
    8455             :                 HRES_NS_E_DUPLICATE_NAME,
    8456             :                 "HRES_NS_E_DUPLICATE_NAME",
    8457             :                 "The specified name is already in use."
    8458             :         },
    8459             :         {
    8460             :                 HRES_NS_E_DUPLICATE_ADDRESS,
    8461             :                 "HRES_NS_E_DUPLICATE_ADDRESS",
    8462             :                 "The specified address is already in use."
    8463             :         },
    8464             :         {
    8465             :                 HRES_NS_E_BAD_MULTICAST_ADDRESS,
    8466             :                 "HRES_NS_E_BAD_MULTICAST_ADDRESS",
    8467             :                 "The specified address is not a valid multicast address."
    8468             :         },
    8469             :         {
    8470             :                 HRES_NS_E_BAD_ADAPTER_ADDRESS,
    8471             :                 "HRES_NS_E_BAD_ADAPTER_ADDRESS",
    8472             :                 "The specified adapter address is invalid."
    8473             :         },
    8474             :         {
    8475             :                 HRES_NS_E_BAD_DELIVERY_MODE,
    8476             :                 "HRES_NS_E_BAD_DELIVERY_MODE",
    8477             :                 "The specified delivery mode is invalid."
    8478             :         },
    8479             :         {
    8480             :                 HRES_NS_E_INVALID_CHANNEL,
    8481             :                 "HRES_NS_E_INVALID_CHANNEL",
    8482             :                 "The specified station does not exist."
    8483             :         },
    8484             :         {
    8485             :                 HRES_NS_E_INVALID_STREAM,
    8486             :                 "HRES_NS_E_INVALID_STREAM",
    8487             :                 "The specified stream does not exist."
    8488             :         },
    8489             :         {
    8490             :                 HRES_NS_E_INVALID_ARCHIVE,
    8491             :                 "HRES_NS_E_INVALID_ARCHIVE",
    8492             :                 "The specified archive could not be opened."
    8493             :         },
    8494             :         {
    8495             :                 HRES_NS_E_NOTITLES,
    8496             :                 "HRES_NS_E_NOTITLES",
    8497             :                 "The system cannot find any titles on the server."
    8498             :         },
    8499             :         {
    8500             :                 HRES_NS_E_INVALID_CLIENT,
    8501             :                 "HRES_NS_E_INVALID_CLIENT",
    8502             :                 "The system cannot find the client specified."
    8503             :         },
    8504             :         {
    8505             :                 HRES_NS_E_INVALID_BLACKHOLE_ADDRESS,
    8506             :                 "HRES_NS_E_INVALID_BLACKHOLE_ADDRESS",
    8507             :                 "The Blackhole Address is not initialized."
    8508             :         },
    8509             :         {
    8510             :                 HRES_NS_E_INCOMPATIBLE_FORMAT,
    8511             :                 "HRES_NS_E_INCOMPATIBLE_FORMAT",
    8512             :                 "The station does not support the stream format."
    8513             :         },
    8514             :         {
    8515             :                 HRES_NS_E_INVALID_KEY,
    8516             :                 "HRES_NS_E_INVALID_KEY",
    8517             :                 "The specified key is not valid."
    8518             :         },
    8519             :         {
    8520             :                 HRES_NS_E_INVALID_PORT,
    8521             :                 "HRES_NS_E_INVALID_PORT",
    8522             :                 "The specified port is not valid."
    8523             :         },
    8524             :         {
    8525             :                 HRES_NS_E_INVALID_TTL,
    8526             :                 "HRES_NS_E_INVALID_TTL",
    8527             :                 "The specified TTL is not valid."
    8528             :         },
    8529             :         {
    8530             :                 HRES_NS_E_STRIDE_REFUSED,
    8531             :                 "HRES_NS_E_STRIDE_REFUSED",
    8532             :                 "The request to fast forward or rewind could not be fulfilled."
    8533             :         },
    8534             :         {
    8535             :                 HRES_NS_E_MMSAUTOSERVER_CANTFINDWALKER,
    8536             :                 "HRES_NS_E_MMSAUTOSERVER_CANTFINDWALKER",
    8537             :                 "Unable to load the appropriate file parser."
    8538             :         },
    8539             :         {
    8540             :                 HRES_NS_E_MAX_BITRATE,
    8541             :                 "HRES_NS_E_MAX_BITRATE",
    8542             :                 "Cannot exceed the maximum bandwidth limit."
    8543             :         },
    8544             :         {
    8545             :                 HRES_NS_E_LOGFILEPERIOD,
    8546             :                 "HRES_NS_E_LOGFILEPERIOD",
    8547             :                 "Invalid value for LogFilePeriod."
    8548             :         },
    8549             :         {
    8550             :                 HRES_NS_E_MAX_CLIENTS,
    8551             :                 "HRES_NS_E_MAX_CLIENTS",
    8552             :                 "Cannot exceed the maximum client limit."
    8553             :         },
    8554             :         {
    8555             :                 HRES_NS_E_LOG_FILE_SIZE,
    8556             :                 "HRES_NS_E_LOG_FILE_SIZE",
    8557             :                 "The maximum log file size has been reached."
    8558             :         },
    8559             :         {
    8560             :                 HRES_NS_E_MAX_FILERATE,
    8561             :                 "HRES_NS_E_MAX_FILERATE",
    8562             :                 "Cannot exceed the maximum file rate."
    8563             :         },
    8564             :         {
    8565             :                 HRES_NS_E_WALKER_UNKNOWN,
    8566             :                 "HRES_NS_E_WALKER_UNKNOWN",
    8567             :                 "Unknown file type."
    8568             :         },
    8569             :         {
    8570             :                 HRES_NS_E_WALKER_SERVER,
    8571             :                 "HRES_NS_E_WALKER_SERVER",
    8572             :                 "The specified file, %1, cannot be loaded onto the specified server, %2."
    8573             :         },
    8574             :         {
    8575             :                 HRES_NS_E_WALKER_USAGE,
    8576             :                 "HRES_NS_E_WALKER_USAGE",
    8577             :                 "There was a usage error with file parser."
    8578             :         },
    8579             :         {
    8580             :                 HRES_NS_E_TIGER_FAIL,
    8581             :                 "HRES_NS_E_TIGER_FAIL",
    8582             :                 "The Title Server %1 has failed."
    8583             :         },
    8584             :         {
    8585             :                 HRES_NS_E_CUB_FAIL,
    8586             :                 "HRES_NS_E_CUB_FAIL",
    8587             :                 "Content Server %1 (%2) has failed."
    8588             :         },
    8589             :         {
    8590             :                 HRES_NS_E_DISK_FAIL,
    8591             :                 "HRES_NS_E_DISK_FAIL",
    8592             :                 "Disk %1 ( %2 ) on Content Server %3, has failed."
    8593             :         },
    8594             :         {
    8595             :                 HRES_NS_E_MAX_FUNNELS_ALERT,
    8596             :                 "HRES_NS_E_MAX_FUNNELS_ALERT",
    8597             :                 "The NetShow data stream limit of %1 streams was reached."
    8598             :         },
    8599             :         {
    8600             :                 HRES_NS_E_ALLOCATE_FILE_FAIL,
    8601             :                 "HRES_NS_E_ALLOCATE_FILE_FAIL",
    8602             :                 "The NetShow Video Server was unable to allocate a %1 block file named %2."
    8603             :         },
    8604             :         {
    8605             :                 HRES_NS_E_PAGING_ERROR,
    8606             :                 "HRES_NS_E_PAGING_ERROR",
    8607             :                 "A Content Server was unable to page a block."
    8608             :         },
    8609             :         {
    8610             :                 HRES_NS_E_BAD_BLOCK0_VERSION,
    8611             :                 "HRES_NS_E_BAD_BLOCK0_VERSION",
    8612             :                 "Disk %1 has unrecognized control block version %2."
    8613             :         },
    8614             :         {
    8615             :                 HRES_NS_E_BAD_DISK_UID,
    8616             :                 "HRES_NS_E_BAD_DISK_UID",
    8617             :                 "Disk %1 has incorrect uid %2."
    8618             :         },
    8619             :         {
    8620             :                 HRES_NS_E_BAD_FSMAJOR_VERSION,
    8621             :                 "HRES_NS_E_BAD_FSMAJOR_VERSION",
    8622             :                 "Disk %1 has unsupported file system major version %2."
    8623             :         },
    8624             :         {
    8625             :                 HRES_NS_E_BAD_STAMPNUMBER,
    8626             :                 "HRES_NS_E_BAD_STAMPNUMBER",
    8627             :                 "Disk %1 has bad stamp number in control block."
    8628             :         },
    8629             :         {
    8630             :                 HRES_NS_E_PARTIALLY_REBUILT_DISK,
    8631             :                 "HRES_NS_E_PARTIALLY_REBUILT_DISK",
    8632             :                 "Disk %1 is partially reconstructed."
    8633             :         },
    8634             :         {
    8635             :                 HRES_NS_E_ENACTPLAN_GIVEUP,
    8636             :                 "HRES_NS_E_ENACTPLAN_GIVEUP",
    8637             :                 "EnactPlan gives up."
    8638             :         },
    8639             :         {
    8640             :                 HRES_MCMADM_E_REGKEY_NOT_FOUND,
    8641             :                 "HRES_MCMADM_E_REGKEY_NOT_FOUND",
    8642             :                 "The key was not found in the registry."
    8643             :         },
    8644             :         {
    8645             :                 HRES_NS_E_NO_FORMATS,
    8646             :                 "HRES_NS_E_NO_FORMATS",
    8647             :                 "The publishing point cannot be started because the server does not have the appropriate stream formats. Use the Multicast Announcement Wizard to create a new announcement for this publishing point."
    8648             :         },
    8649             :         {
    8650             :                 HRES_NS_E_NO_REFERENCES,
    8651             :                 "HRES_NS_E_NO_REFERENCES",
    8652             :                 "No reference URLs were found in an ASX file."
    8653             :         },
    8654             :         {
    8655             :                 HRES_NS_E_WAVE_OPEN,
    8656             :                 "HRES_NS_E_WAVE_OPEN",
    8657             :                 "Error opening wave device, the device might be in use."
    8658             :         },
    8659             :         {
    8660             :                 HRES_NS_E_CANNOTCONNECTEVENTS,
    8661             :                 "HRES_NS_E_CANNOTCONNECTEVENTS",
    8662             :                 "Unable to establish a connection to the NetShow event monitor service."
    8663             :         },
    8664             :         {
    8665             :                 HRES_NS_E_NO_DEVICE,
    8666             :                 "HRES_NS_E_NO_DEVICE",
    8667             :                 "No device driver is present on the system."
    8668             :         },
    8669             :         {
    8670             :                 HRES_NS_E_NO_SPECIFIED_DEVICE,
    8671             :                 "HRES_NS_E_NO_SPECIFIED_DEVICE",
    8672             :                 "No specified device driver is present."
    8673             :         },
    8674             :         {
    8675             :                 HRES_NS_E_MONITOR_GIVEUP,
    8676             :                 "HRES_NS_E_MONITOR_GIVEUP",
    8677             :                 "Netshow Events Monitor is not operational and has been disconnected."
    8678             :         },
    8679             :         {
    8680             :                 HRES_NS_E_REMIRRORED_DISK,
    8681             :                 "HRES_NS_E_REMIRRORED_DISK",
    8682             :                 "Disk %1 is remirrored."
    8683             :         },
    8684             :         {
    8685             :                 HRES_NS_E_INSUFFICIENT_DATA,
    8686             :                 "HRES_NS_E_INSUFFICIENT_DATA",
    8687             :                 "Insufficient data found."
    8688             :         },
    8689             :         {
    8690             :                 HRES_NS_E_ASSERT,
    8691             :                 "HRES_NS_E_ASSERT",
    8692             :                 "1 failed in file %2 line %3."
    8693             :         },
    8694             :         {
    8695             :                 HRES_NS_E_BAD_ADAPTER_NAME,
    8696             :                 "HRES_NS_E_BAD_ADAPTER_NAME",
    8697             :                 "The specified adapter name is invalid."
    8698             :         },
    8699             :         {
    8700             :                 HRES_NS_E_NOT_LICENSED,
    8701             :                 "HRES_NS_E_NOT_LICENSED",
    8702             :                 "The application is not licensed for this feature."
    8703             :         },
    8704             :         {
    8705             :                 HRES_NS_E_NO_SERVER_CONTACT,
    8706             :                 "HRES_NS_E_NO_SERVER_CONTACT",
    8707             :                 "Unable to contact the server."
    8708             :         },
    8709             :         {
    8710             :                 HRES_NS_E_TOO_MANY_TITLES,
    8711             :                 "HRES_NS_E_TOO_MANY_TITLES",
    8712             :                 "Maximum number of titles exceeded."
    8713             :         },
    8714             :         {
    8715             :                 HRES_NS_E_TITLE_SIZE_EXCEEDED,
    8716             :                 "HRES_NS_E_TITLE_SIZE_EXCEEDED",
    8717             :                 "Maximum size of a title exceeded."
    8718             :         },
    8719             :         {
    8720             :                 HRES_NS_E_UDP_DISABLED,
    8721             :                 "HRES_NS_E_UDP_DISABLED",
    8722             :                 "UDP protocol not enabled. Not trying %1!ls!."
    8723             :         },
    8724             :         {
    8725             :                 HRES_NS_E_TCP_DISABLED,
    8726             :                 "HRES_NS_E_TCP_DISABLED",
    8727             :                 "TCP protocol not enabled. Not trying %1!ls!."
    8728             :         },
    8729             :         {
    8730             :                 HRES_NS_E_HTTP_DISABLED,
    8731             :                 "HRES_NS_E_HTTP_DISABLED",
    8732             :                 "HTTP protocol not enabled. Not trying %1!ls!."
    8733             :         },
    8734             :         {
    8735             :                 HRES_NS_E_LICENSE_EXPIRED,
    8736             :                 "HRES_NS_E_LICENSE_EXPIRED",
    8737             :                 "The product license has expired."
    8738             :         },
    8739             :         {
    8740             :                 HRES_NS_E_TITLE_BITRATE,
    8741             :                 "HRES_NS_E_TITLE_BITRATE",
    8742             :                 "Source file exceeds the per title maximum bitrate. See NetShow Theater documentation for more information."
    8743             :         },
    8744             :         {
    8745             :                 HRES_NS_E_EMPTY_PROGRAM_NAME,
    8746             :                 "HRES_NS_E_EMPTY_PROGRAM_NAME",
    8747             :                 "The program name cannot be empty."
    8748             :         },
    8749             :         {
    8750             :                 HRES_NS_E_MISSING_CHANNEL,
    8751             :                 "HRES_NS_E_MISSING_CHANNEL",
    8752             :                 "Station %1 does not exist."
    8753             :         },
    8754             :         {
    8755             :                 HRES_NS_E_NO_CHANNELS,
    8756             :                 "HRES_NS_E_NO_CHANNELS",
    8757             :                 "You need to define at least one station before this operation can complete."
    8758             :         },
    8759             :         {
    8760             :                 HRES_NS_E_INVALID_INDEX2,
    8761             :                 "HRES_NS_E_INVALID_INDEX2",
    8762             :                 "The index specified is invalid."
    8763             :         },
    8764             :         {
    8765             :                 HRES_NS_E_CUB_FAIL_LINK,
    8766             :                 "HRES_NS_E_CUB_FAIL_LINK",
    8767             :                 "Content Server %1 (%2) has failed its link to Content Server %3."
    8768             :         },
    8769             :         {
    8770             :                 HRES_NS_E_BAD_CUB_UID,
    8771             :                 "HRES_NS_E_BAD_CUB_UID",
    8772             :                 "Content Server %1 (%2) has incorrect uid %3."
    8773             :         },
    8774             :         {
    8775             :                 HRES_NS_E_GLITCH_MODE,
    8776             :                 "HRES_NS_E_GLITCH_MODE",
    8777             :                 "Server unreliable because multiple components failed."
    8778             :         },
    8779             :         {
    8780             :                 HRES_NS_E_NO_MEDIA_PROTOCOL,
    8781             :                 "HRES_NS_E_NO_MEDIA_PROTOCOL",
    8782             :                 "Content Server %1 (%2) is unable to communicate with the Media System Network Protocol."
    8783             :         },
    8784             :         {
    8785             :                 HRES_NS_E_NOTHING_TO_DO,
    8786             :                 "HRES_NS_E_NOTHING_TO_DO",
    8787             :                 "Nothing to do."
    8788             :         },
    8789             :         {
    8790             :                 HRES_NS_E_NO_MULTICAST,
    8791             :                 "HRES_NS_E_NO_MULTICAST",
    8792             :                 "Not receiving data from the server."
    8793             :         },
    8794             :         {
    8795             :                 HRES_NS_E_INVALID_INPUT_FORMAT,
    8796             :                 "HRES_NS_E_INVALID_INPUT_FORMAT",
    8797             :                 "The input media format is invalid."
    8798             :         },
    8799             :         {
    8800             :                 HRES_NS_E_MSAUDIO_NOT_INSTALLED,
    8801             :                 "HRES_NS_E_MSAUDIO_NOT_INSTALLED",
    8802             :                 "The MSAudio codec is not installed on this system."
    8803             :         },
    8804             :         {
    8805             :                 HRES_NS_E_UNEXPECTED_MSAUDIO_ERROR,
    8806             :                 "HRES_NS_E_UNEXPECTED_MSAUDIO_ERROR",
    8807             :                 "An unexpected error occurred with the MSAudio codec."
    8808             :         },
    8809             :         {
    8810             :                 HRES_NS_E_INVALID_OUTPUT_FORMAT,
    8811             :                 "HRES_NS_E_INVALID_OUTPUT_FORMAT",
    8812             :                 "The output media format is invalid."
    8813             :         },
    8814             :         {
    8815             :                 HRES_NS_E_NOT_CONFIGURED,
    8816             :                 "HRES_NS_E_NOT_CONFIGURED",
    8817             :                 "The object must be fully configured before audio samples can be processed."
    8818             :         },
    8819             :         {
    8820             :                 HRES_NS_E_PROTECTED_CONTENT,
    8821             :                 "HRES_NS_E_PROTECTED_CONTENT",
    8822             :                 "You need a license to perform the requested operation on this media file."
    8823             :         },
    8824             :         {
    8825             :                 HRES_NS_E_LICENSE_REQUIRED,
    8826             :                 "HRES_NS_E_LICENSE_REQUIRED",
    8827             :                 "You need a license to perform the requested operation on this media file."
    8828             :         },
    8829             :         {
    8830             :                 HRES_NS_E_TAMPERED_CONTENT,
    8831             :                 "HRES_NS_E_TAMPERED_CONTENT",
    8832             :                 "This media file is corrupted or invalid. Contact the content provider for a new file."
    8833             :         },
    8834             :         {
    8835             :                 HRES_NS_E_LICENSE_OUTOFDATE,
    8836             :                 "HRES_NS_E_LICENSE_OUTOFDATE",
    8837             :                 "The license for this media file has expired. Get a new license or contact the content provider for further assistance."
    8838             :         },
    8839             :         {
    8840             :                 HRES_NS_E_LICENSE_INCORRECT_RIGHTS,
    8841             :                 "HRES_NS_E_LICENSE_INCORRECT_RIGHTS",
    8842             :                 "You are not allowed to open this file. Contact the content provider for further assistance."
    8843             :         },
    8844             :         {
    8845             :                 HRES_NS_E_AUDIO_CODEC_NOT_INSTALLED,
    8846             :                 "HRES_NS_E_AUDIO_CODEC_NOT_INSTALLED",
    8847             :                 "The requested audio codec is not installed on this system."
    8848             :         },
    8849             :         {
    8850             :                 HRES_NS_E_AUDIO_CODEC_ERROR,
    8851             :                 "HRES_NS_E_AUDIO_CODEC_ERROR",
    8852             :                 "An unexpected error occurred with the audio codec."
    8853             :         },
    8854             :         {
    8855             :                 HRES_NS_E_VIDEO_CODEC_NOT_INSTALLED,
    8856             :                 "HRES_NS_E_VIDEO_CODEC_NOT_INSTALLED",
    8857             :                 "The requested video codec is not installed on this system."
    8858             :         },
    8859             :         {
    8860             :                 HRES_NS_E_VIDEO_CODEC_ERROR,
    8861             :                 "HRES_NS_E_VIDEO_CODEC_ERROR",
    8862             :                 "An unexpected error occurred with the video codec."
    8863             :         },
    8864             :         {
    8865             :                 HRES_NS_E_INVALIDPROFILE,
    8866             :                 "HRES_NS_E_INVALIDPROFILE",
    8867             :                 "The Profile is invalid."
    8868             :         },
    8869             :         {
    8870             :                 HRES_NS_E_INCOMPATIBLE_VERSION,
    8871             :                 "HRES_NS_E_INCOMPATIBLE_VERSION",
    8872             :                 "A new version of the SDK is needed to play the requested content."
    8873             :         },
    8874             :         {
    8875             :                 HRES_NS_E_OFFLINE_MODE,
    8876             :                 "HRES_NS_E_OFFLINE_MODE",
    8877             :                 "The requested URL is not available in offline mode."
    8878             :         },
    8879             :         {
    8880             :                 HRES_NS_E_NOT_CONNECTED,
    8881             :                 "HRES_NS_E_NOT_CONNECTED",
    8882             :                 "The requested URL cannot be accessed because there is no network connection."
    8883             :         },
    8884             :         {
    8885             :                 HRES_NS_E_TOO_MUCH_DATA,
    8886             :                 "HRES_NS_E_TOO_MUCH_DATA",
    8887             :                 "The encoding process was unable to keep up with the amount of supplied data."
    8888             :         },
    8889             :         {
    8890             :                 HRES_NS_E_UNSUPPORTED_PROPERTY,
    8891             :                 "HRES_NS_E_UNSUPPORTED_PROPERTY",
    8892             :                 "The given property is not supported."
    8893             :         },
    8894             :         {
    8895             :                 HRES_NS_E_8BIT_WAVE_UNSUPPORTED,
    8896             :                 "HRES_NS_E_8BIT_WAVE_UNSUPPORTED",
    8897             :                 "Windows Media Player cannot copy the files to the CD because they are 8-bit. Convert the files to 16-bit, 44-kHz stereo files by using Sound Recorder or another audio-processing program, and then try again."
    8898             :         },
    8899             :         {
    8900             :                 HRES_NS_E_NO_MORE_SAMPLES,
    8901             :                 "HRES_NS_E_NO_MORE_SAMPLES",
    8902             :                 "There are no more samples in the current range."
    8903             :         },
    8904             :         {
    8905             :                 HRES_NS_E_INVALID_SAMPLING_RATE,
    8906             :                 "HRES_NS_E_INVALID_SAMPLING_RATE",
    8907             :                 "The given sampling rate is invalid."
    8908             :         },
    8909             :         {
    8910             :                 HRES_NS_E_MAX_PACKET_SIZE_TOO_SMALL,
    8911             :                 "HRES_NS_E_MAX_PACKET_SIZE_TOO_SMALL",
    8912             :                 "The given maximum packet size is too small to accommodate this profile.)"
    8913             :         },
    8914             :         {
    8915             :                 HRES_NS_E_LATE_PACKET,
    8916             :                 "HRES_NS_E_LATE_PACKET",
    8917             :                 "The packet arrived too late to be of use."
    8918             :         },
    8919             :         {
    8920             :                 HRES_NS_E_DUPLICATE_PACKET,
    8921             :                 "HRES_NS_E_DUPLICATE_PACKET",
    8922             :                 "The packet is a duplicate of one received before."
    8923             :         },
    8924             :         {
    8925             :                 HRES_NS_E_SDK_BUFFERTOOSMALL,
    8926             :                 "HRES_NS_E_SDK_BUFFERTOOSMALL",
    8927             :                 "Supplied buffer is too small."
    8928             :         },
    8929             :         {
    8930             :                 HRES_NS_E_INVALID_NUM_PASSES,
    8931             :                 "HRES_NS_E_INVALID_NUM_PASSES",
    8932             :                 "The wrong number of preprocessing passes was used for the stream's output type."
    8933             :         },
    8934             :         {
    8935             :                 HRES_NS_E_ATTRIBUTE_READ_ONLY,
    8936             :                 "HRES_NS_E_ATTRIBUTE_READ_ONLY",
    8937             :                 "An attempt was made to add, modify, or delete a read only attribute."
    8938             :         },
    8939             :         {
    8940             :                 HRES_NS_E_ATTRIBUTE_NOT_ALLOWED,
    8941             :                 "HRES_NS_E_ATTRIBUTE_NOT_ALLOWED",
    8942             :                 "An attempt was made to add attribute that is not allowed for the given media type."
    8943             :         },
    8944             :         {
    8945             :                 HRES_NS_E_INVALID_EDL,
    8946             :                 "HRES_NS_E_INVALID_EDL",
    8947             :                 "The EDL provided is invalid."
    8948             :         },
    8949             :         {
    8950             :                 HRES_NS_E_DATA_UNIT_EXTENSION_TOO_LARGE,
    8951             :                 "HRES_NS_E_DATA_UNIT_EXTENSION_TOO_LARGE",
    8952             :                 "The Data Unit Extension data was too large to be used."
    8953             :         },
    8954             :         {
    8955             :                 HRES_NS_E_CODEC_DMO_ERROR,
    8956             :                 "HRES_NS_E_CODEC_DMO_ERROR",
    8957             :                 "An unexpected error occurred with a DMO codec."
    8958             :         },
    8959             :         {
    8960             :                 HRES_NS_E_FEATURE_DISABLED_BY_GROUP_POLICY,
    8961             :                 "HRES_NS_E_FEATURE_DISABLED_BY_GROUP_POLICY",
    8962             :                 "This feature has been disabled by group policy."
    8963             :         },
    8964             :         {
    8965             :                 HRES_NS_E_FEATURE_DISABLED_IN_SKU,
    8966             :                 "HRES_NS_E_FEATURE_DISABLED_IN_SKU",
    8967             :                 "This feature is disabled in this SKU."
    8968             :         },
    8969             :         {
    8970             :                 HRES_NS_E_NO_CD,
    8971             :                 "HRES_NS_E_NO_CD",
    8972             :                 "There is no CD in the CD drive. Insert a CD, and then try again."
    8973             :         },
    8974             :         {
    8975             :                 HRES_NS_E_CANT_READ_DIGITAL,
    8976             :                 "HRES_NS_E_CANT_READ_DIGITAL",
    8977             :                 "Windows Media Player could not use digital playback to play the CD. To switch to analog playback, on the Tools menu, click Options, and then click the Devices tab. Double-click the CD drive, and then in the Playback area, click Analog. For additional assistance, click Web Help."
    8978             :         },
    8979             :         {
    8980             :                 HRES_NS_E_DEVICE_DISCONNECTED,
    8981             :                 "HRES_NS_E_DEVICE_DISCONNECTED",
    8982             :                 "Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try synchronizing the file again."
    8983             :         },
    8984             :         {
    8985             :                 HRES_NS_E_DEVICE_NOT_SUPPORT_FORMAT,
    8986             :                 "HRES_NS_E_DEVICE_NOT_SUPPORT_FORMAT",
    8987             :                 "Windows Media Player cannot play the file. The portable device does not support the specified file type."
    8988             :         },
    8989             :         {
    8990             :                 HRES_NS_E_SLOW_READ_DIGITAL,
    8991             :                 "HRES_NS_E_SLOW_READ_DIGITAL",
    8992             :                 "Windows Media Player could not use digital playback to play the CD. The Player has automatically switched the CD drive to analog playback. To switch back to digital CD playback, use the Devices tab. For additional assistance, click Web Help."
    8993             :         },
    8994             :         {
    8995             :                 HRES_NS_E_MIXER_INVALID_LINE,
    8996             :                 "HRES_NS_E_MIXER_INVALID_LINE",
    8997             :                 "An invalid line error occurred in the mixer."
    8998             :         },
    8999             :         {
    9000             :                 HRES_NS_E_MIXER_INVALID_CONTROL,
    9001             :                 "HRES_NS_E_MIXER_INVALID_CONTROL",
    9002             :                 "An invalid control error occurred in the mixer."
    9003             :         },
    9004             :         {
    9005             :                 HRES_NS_E_MIXER_INVALID_VALUE,
    9006             :                 "HRES_NS_E_MIXER_INVALID_VALUE",
    9007             :                 "An invalid value error occurred in the mixer."
    9008             :         },
    9009             :         {
    9010             :                 HRES_NS_E_MIXER_UNKNOWN_MMRESULT,
    9011             :                 "HRES_NS_E_MIXER_UNKNOWN_MMRESULT",
    9012             :                 "An unrecognized MMRESULT occurred in the mixer."
    9013             :         },
    9014             :         {
    9015             :                 HRES_NS_E_USER_STOP,
    9016             :                 "HRES_NS_E_USER_STOP",
    9017             :                 "User has stopped the operation."
    9018             :         },
    9019             :         {
    9020             :                 HRES_NS_E_MP3_FORMAT_NOT_FOUND,
    9021             :                 "HRES_NS_E_MP3_FORMAT_NOT_FOUND",
    9022             :                 "Windows Media Player cannot rip the track because a compatible MP3 encoder is not installed on your computer. Install a compatible MP3 encoder or choose a different format to rip to (such as Windows Media Audio)."
    9023             :         },
    9024             :         {
    9025             :                 HRES_NS_E_CD_READ_ERROR_NO_CORRECTION,
    9026             :                 "HRES_NS_E_CD_READ_ERROR_NO_CORRECTION",
    9027             :                 "Windows Media Player cannot read the CD. The disc might be dirty or damaged. Turn on error correction, and then try again."
    9028             :         },
    9029             :         {
    9030             :                 HRES_NS_E_CD_READ_ERROR,
    9031             :                 "HRES_NS_E_CD_READ_ERROR",
    9032             :                 "Windows Media Player cannot read the CD. The disc might be dirty or damaged or the CD drive might be malfunctioning."
    9033             :         },
    9034             :         {
    9035             :                 HRES_NS_E_CD_SLOW_COPY,
    9036             :                 "HRES_NS_E_CD_SLOW_COPY",
    9037             :                 "For best performance, do not play CD tracks while ripping them."
    9038             :         },
    9039             :         {
    9040             :                 HRES_NS_E_CD_COPYTO_CD,
    9041             :                 "HRES_NS_E_CD_COPYTO_CD",
    9042             :                 "It is not possible to directly burn tracks from one CD to another CD. You must first rip the tracks from the CD to your computer, and then burn the files to a blank CD."
    9043             :         },
    9044             :         {
    9045             :                 HRES_NS_E_MIXER_NODRIVER,
    9046             :                 "HRES_NS_E_MIXER_NODRIVER",
    9047             :                 "Could not open a sound mixer driver."
    9048             :         },
    9049             :         {
    9050             :                 HRES_NS_E_REDBOOK_ENABLED_WHILE_COPYING,
    9051             :                 "HRES_NS_E_REDBOOK_ENABLED_WHILE_COPYING",
    9052             :                 "Windows Media Player cannot rip tracks from the CD correctly because the CD drive settings in Device Manager do not match the CD drive settings in the Player."
    9053             :         },
    9054             :         {
    9055             :                 HRES_NS_E_CD_REFRESH,
    9056             :                 "HRES_NS_E_CD_REFRESH",
    9057             :                 "Windows Media Player is busy reading the CD."
    9058             :         },
    9059             :         {
    9060             :                 HRES_NS_E_CD_DRIVER_PROBLEM,
    9061             :                 "HRES_NS_E_CD_DRIVER_PROBLEM",
    9062             :                 "Windows Media Player could not use digital playback to play the CD. The Player has automatically switched the CD drive to analog playback. To switch back to digital CD playback, use the Devices tab. For additional assistance, click Web Help."
    9063             :         },
    9064             :         {
    9065             :                 HRES_NS_E_WONT_DO_DIGITAL,
    9066             :                 "HRES_NS_E_WONT_DO_DIGITAL",
    9067             :                 "Windows Media Player could not use digital playback to play the CD. The Player has automatically switched the CD drive to analog playback. To switch back to digital CD playback, use the Devices tab. For additional assistance, click Web Help."
    9068             :         },
    9069             :         {
    9070             :                 HRES_NS_E_WMPXML_NOERROR,
    9071             :                 "HRES_NS_E_WMPXML_NOERROR",
    9072             :                 "A call was made to GetParseError on the XML parser but there was no error to retrieve."
    9073             :         },
    9074             :         {
    9075             :                 HRES_NS_E_WMPXML_ENDOFDATA,
    9076             :                 "HRES_NS_E_WMPXML_ENDOFDATA",
    9077             :                 "The XML Parser ran out of data while parsing."
    9078             :         },
    9079             :         {
    9080             :                 HRES_NS_E_WMPXML_PARSEERROR,
    9081             :                 "HRES_NS_E_WMPXML_PARSEERROR",
    9082             :                 "A generic parse error occurred in the XML parser but no information is available."
    9083             :         },
    9084             :         {
    9085             :                 HRES_NS_E_WMPXML_ATTRIBUTENOTFOUND,
    9086             :                 "HRES_NS_E_WMPXML_ATTRIBUTENOTFOUND",
    9087             :                 "A call get GetNamedAttribute or GetNamedAttributeIndex on the XML parser resulted in the index not being found."
    9088             :         },
    9089             :         {
    9090             :                 HRES_NS_E_WMPXML_PINOTFOUND,
    9091             :                 "HRES_NS_E_WMPXML_PINOTFOUND",
    9092             :                 "A call was made go GetNamedPI on the XML parser, but the requested Processing Instruction was not found."
    9093             :         },
    9094             :         {
    9095             :                 HRES_NS_E_WMPXML_EMPTYDOC,
    9096             :                 "HRES_NS_E_WMPXML_EMPTYDOC",
    9097             :                 "Persist was called on the XML parser, but the parser has no data to persist."
    9098             :         },
    9099             :         {
    9100             :                 HRES_NS_E_WMP_PATH_ALREADY_IN_LIBRARY,
    9101             :                 "HRES_NS_E_WMP_PATH_ALREADY_IN_LIBRARY",
    9102             :                 "This file path is already in the library."
    9103             :         },
    9104             :         {
    9105             :                 HRES_NS_E_WMP_FILESCANALREADYSTARTED,
    9106             :                 "HRES_NS_E_WMP_FILESCANALREADYSTARTED",
    9107             :                 "Windows Media Player is already searching for files to add to your library. Wait for the current process to finish before attempting to search again."
    9108             :         },
    9109             :         {
    9110             :                 HRES_NS_E_WMP_HME_INVALIDOBJECTID,
    9111             :                 "HRES_NS_E_WMP_HME_INVALIDOBJECTID",
    9112             :                 "Windows Media Player is unable to find the media you are looking for."
    9113             :         },
    9114             :         {
    9115             :                 HRES_NS_E_WMP_MF_CODE_EXPIRED,
    9116             :                 "HRES_NS_E_WMP_MF_CODE_EXPIRED",
    9117             :                 "A component of Windows Media Player is out-of-date. If you are running a pre-release version of Windows, try upgrading to a more recent version."
    9118             :         },
    9119             :         {
    9120             :                 HRES_NS_E_WMP_HME_NOTSEARCHABLEFORITEMS,
    9121             :                 "HRES_NS_E_WMP_HME_NOTSEARCHABLEFORITEMS",
    9122             :                 "This container does not support search on items."
    9123             :         },
    9124             :         {
    9125             :                 HRES_NS_E_WMP_ADDTOLIBRARY_FAILED,
    9126             :                 "HRES_NS_E_WMP_ADDTOLIBRARY_FAILED",
    9127             :                 "Windows Media Player encountered a problem while adding one or more files to the library. For additional assistance, click Web Help."
    9128             :         },
    9129             :         {
    9130             :                 HRES_NS_E_WMP_WINDOWSAPIFAILURE,
    9131             :                 "HRES_NS_E_WMP_WINDOWSAPIFAILURE",
    9132             :                 "A Windows API call failed but no error information was available."
    9133             :         },
    9134             :         {
    9135             :                 HRES_NS_E_WMP_RECORDING_NOT_ALLOWED,
    9136             :                 "HRES_NS_E_WMP_RECORDING_NOT_ALLOWED",
    9137             :                 "This file does not have burn rights. If you obtained this file from an online store, go to the online store to get burn rights."
    9138             :         },
    9139             :         {
    9140             :                 HRES_NS_E_DEVICE_NOT_READY,
    9141             :                 "HRES_NS_E_DEVICE_NOT_READY",
    9142             :                 "Windows Media Player no longer detects a connected portable device. Reconnect your portable device, and then try to sync the file again."
    9143             :         },
    9144             :         {
    9145             :                 HRES_NS_E_DAMAGED_FILE,
    9146             :                 "HRES_NS_E_DAMAGED_FILE",
    9147             :                 "Windows Media Player cannot play the file because it is corrupted."
    9148             :         },
    9149             :         {
    9150             :                 HRES_NS_E_MPDB_GENERIC,
    9151             :                 "HRES_NS_E_MPDB_GENERIC",
    9152             :                 "Windows Media Player encountered an error while attempting to access information in the library. Try restarting the Player."
    9153             :         },
    9154             :         {
    9155             :                 HRES_NS_E_FILE_FAILED_CHECKS,
    9156             :                 "HRES_NS_E_FILE_FAILED_CHECKS",
    9157             :                 "The file cannot be added to the library because it is smaller than the \"Skip files smaller than\" setting. To add the file, change the setting on the Library tab. For additional assistance, click Web Help."
    9158             :         },
    9159             :         {
    9160             :                 HRES_NS_E_MEDIA_LIBRARY_FAILED,
    9161             :                 "HRES_NS_E_MEDIA_LIBRARY_FAILED",
    9162             :                 "Windows Media Player cannot create the library. You must be logged on as an administrator or a member of the Administrators group to install the Player. For more information, contact your system administrator."
    9163             :         },
    9164             :         {
    9165             :                 HRES_NS_E_SHARING_VIOLATION,
    9166             :                 "HRES_NS_E_SHARING_VIOLATION",
    9167             :                 "The file is already in use. Close other programs that might be using the file, or stop playing the file, and then try again."
    9168             :         },
    9169             :         {
    9170             :                 HRES_NS_E_NO_ERROR_STRING_FOUND,
    9171             :                 "HRES_NS_E_NO_ERROR_STRING_FOUND",
    9172             :                 "Windows Media Player has encountered an unknown error."
    9173             :         },
    9174             :         {
    9175             :                 HRES_NS_E_WMPOCX_NO_REMOTE_CORE,
    9176             :                 "HRES_NS_E_WMPOCX_NO_REMOTE_CORE",
    9177             :                 "The Windows Media Player ActiveX control cannot connect to remote media services, but will continue with local media services."
    9178             :         },
    9179             :         {
    9180             :                 HRES_NS_E_WMPOCX_NO_ACTIVE_CORE,
    9181             :                 "HRES_NS_E_WMPOCX_NO_ACTIVE_CORE",
    9182             :                 "The requested method or property is not available because the Windows Media Player ActiveX control has not been properly activated."
    9183             :         },
    9184             :         {
    9185             :                 HRES_NS_E_WMPOCX_NOT_RUNNING_REMOTELY,
    9186             :                 "HRES_NS_E_WMPOCX_NOT_RUNNING_REMOTELY",
    9187             :                 "The Windows Media Player ActiveX control is not running in remote mode."
    9188             :         },
    9189             :         {
    9190             :                 HRES_NS_E_WMPOCX_NO_REMOTE_WINDOW,
    9191             :                 "HRES_NS_E_WMPOCX_NO_REMOTE_WINDOW",
    9192             :                 "An error occurred while trying to get the remote Windows Media Player window."
    9193             :         },
    9194             :         {
    9195             :                 HRES_NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE,
    9196             :                 "HRES_NS_E_WMPOCX_ERRORMANAGERNOTAVAILABLE",
    9197             :                 "Windows Media Player has encountered an unknown error."
    9198             :         },
    9199             :         {
    9200             :                 HRES_NS_E_PLUGIN_NOTSHUTDOWN,
    9201             :                 "HRES_NS_E_PLUGIN_NOTSHUTDOWN",
    9202             :                 "Windows Media Player was not closed properly. A damaged or incompatible plug-in might have caused the problem to occur. As a precaution, all optional plug-ins have been disabled."
    9203             :         },
    9204             :         {
    9205             :                 HRES_NS_E_WMP_CANNOT_FIND_FOLDER,
    9206             :                 "HRES_NS_E_WMP_CANNOT_FIND_FOLDER",
    9207             :                 "Windows Media Player cannot find the specified path. Verify that the path is typed correctly. If it is, the path does not exist in the specified location, or the computer where the path is located is not available."
    9208             :         },
    9209             :         {
    9210             :                 HRES_NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED,
    9211             :                 "HRES_NS_E_WMP_STREAMING_RECORDING_NOT_ALLOWED",
    9212             :                 "Windows Media Player cannot save a file that is being streamed."
    9213             :         },
    9214             :         {
    9215             :                 HRES_NS_E_WMP_PLUGINDLL_NOTFOUND,
    9216             :                 "HRES_NS_E_WMP_PLUGINDLL_NOTFOUND",
    9217             :                 "Windows Media Player cannot find the selected plug-in. The Player will try to remove it from the menu. To use this plug-in, install it again."
    9218             :         },
    9219             :         {
    9220             :                 HRES_NS_E_NEED_TO_ASK_USER,
    9221             :                 "HRES_NS_E_NEED_TO_ASK_USER",
    9222             :                 "Action requires input from the user."
    9223             :         },
    9224             :         {
    9225             :                 HRES_NS_E_WMPOCX_PLAYER_NOT_DOCKED,
    9226             :                 "HRES_NS_E_WMPOCX_PLAYER_NOT_DOCKED",
    9227             :                 "The Windows Media Player ActiveX control must be in a docked state for this action to be performed."
    9228             :         },
    9229             :         {
    9230             :                 HRES_NS_E_WMP_EXTERNAL_NOTREADY,
    9231             :                 "HRES_NS_E_WMP_EXTERNAL_NOTREADY",
    9232             :                 "The Windows Media Player external object is not ready."
    9233             :         },
    9234             :         {
    9235             :                 HRES_NS_E_WMP_MLS_STALE_DATA,
    9236             :                 "HRES_NS_E_WMP_MLS_STALE_DATA",
    9237             :                 "Windows Media Player cannot perform the requested action. Your computer's time and date might not be set correctly."
    9238             :         },
    9239             :         {
    9240             :                 HRES_NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED,
    9241             :                 "HRES_NS_E_WMP_UI_SUBCONTROLSNOTSUPPORTED",
    9242             :                 "The control (%s) does not support creation of sub-controls, yet (%d) sub-controls have been specified."
    9243             :         },
    9244             :         {
    9245             :                 HRES_NS_E_WMP_UI_VERSIONMISMATCH,
    9246             :                 "HRES_NS_E_WMP_UI_VERSIONMISMATCH",
    9247             :                 "Version mismatch: (%.1f required, %.1f found)."
    9248             :         },
    9249             :         {
    9250             :                 HRES_NS_E_WMP_UI_NOTATHEMEFILE,
    9251             :                 "HRES_NS_E_WMP_UI_NOTATHEMEFILE",
    9252             :                 "The layout manager was given valid XML that wasn't a theme file."
    9253             :         },
    9254             :         {
    9255             :                 HRES_NS_E_WMP_UI_SUBELEMENTNOTFOUND,
    9256             :                 "HRES_NS_E_WMP_UI_SUBELEMENTNOTFOUND",
    9257             :                 "The %s subelement could not be found on the %s object."
    9258             :         },
    9259             :         {
    9260             :                 HRES_NS_E_WMP_UI_VERSIONPARSE,
    9261             :                 "HRES_NS_E_WMP_UI_VERSIONPARSE",
    9262             :                 "An error occurred parsing the version tag. Valid version tags are of the form: <?wmp version='1.0'?>."
    9263             :         },
    9264             :         {
    9265             :                 HRES_NS_E_WMP_UI_VIEWIDNOTFOUND,
    9266             :                 "HRES_NS_E_WMP_UI_VIEWIDNOTFOUND",
    9267             :                 "The view specified in for the 'currentViewID' property (%s) was not found in this theme file."
    9268             :         },
    9269             :         {
    9270             :                 HRES_NS_E_WMP_UI_PASSTHROUGH,
    9271             :                 "HRES_NS_E_WMP_UI_PASSTHROUGH",
    9272             :                 "This error used internally for hit testing."
    9273             :         },
    9274             :         {
    9275             :                 HRES_NS_E_WMP_UI_OBJECTNOTFOUND,
    9276             :                 "HRES_NS_E_WMP_UI_OBJECTNOTFOUND",
    9277             :                 "Attributes were specified for the %s object, but the object was not available to send them to."
    9278             :         },
    9279             :         {
    9280             :                 HRES_NS_E_WMP_UI_SECONDHANDLER,
    9281             :                 "HRES_NS_E_WMP_UI_SECONDHANDLER",
    9282             :                 "The %s event already has a handler, the second handler was ignored."
    9283             :         },
    9284             :         {
    9285             :                 HRES_NS_E_WMP_UI_NOSKININZIP,
    9286             :                 "HRES_NS_E_WMP_UI_NOSKININZIP",
    9287             :                 "No .wms file found in skin archive."
    9288             :         },
    9289             :         {
    9290             :                 HRES_NS_E_WMP_URLDOWNLOADFAILED,
    9291             :                 "HRES_NS_E_WMP_URLDOWNLOADFAILED",
    9292             :                 "Windows Media Player encountered a problem while downloading the file. For additional assistance, click Web Help."
    9293             :         },
    9294             :         {
    9295             :                 HRES_NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN,
    9296             :                 "HRES_NS_E_WMPOCX_UNABLE_TO_LOAD_SKIN",
    9297             :                 "The Windows Media Player ActiveX control cannot load the requested uiMode and cannot roll back to the existing uiMode."
    9298             :         },
    9299             :         {
    9300             :                 HRES_NS_E_WMP_INVALID_SKIN,
    9301             :                 "HRES_NS_E_WMP_INVALID_SKIN",
    9302             :                 "Windows Media Player encountered a problem with the skin file. The skin file might not be valid."
    9303             :         },
    9304             :         {
    9305             :                 HRES_NS_E_WMP_SENDMAILFAILED,
    9306             :                 "HRES_NS_E_WMP_SENDMAILFAILED",
    9307             :                 "Windows Media Player cannot send the link because your email program is not responding. Verify that your email program is configured properly, and then try again. For more information about email, see Windows Help."
    9308             :         },
    9309             :         {
    9310             :                 HRES_NS_E_WMP_LOCKEDINSKINMODE,
    9311             :                 "HRES_NS_E_WMP_LOCKEDINSKINMODE",
    9312             :                 "Windows Media Player cannot switch to full mode because your computer administrator has locked this skin."
    9313             :         },
    9314             :         {
    9315             :                 HRES_NS_E_WMP_FAILED_TO_SAVE_FILE,
    9316             :                 "HRES_NS_E_WMP_FAILED_TO_SAVE_FILE",
    9317             :                 "Windows Media Player encountered a problem while saving the file. For additional assistance, click Web Help."
    9318             :         },
    9319             :         {
    9320             :                 HRES_NS_E_WMP_SAVEAS_READONLY,
    9321             :                 "HRES_NS_E_WMP_SAVEAS_READONLY",
    9322             :                 "Windows Media Player cannot overwrite a read-only file. Try using a different file name."
    9323             :         },
    9324             :         {
    9325             :                 HRES_NS_E_WMP_FAILED_TO_SAVE_PLAYLIST,
    9326             :                 "HRES_NS_E_WMP_FAILED_TO_SAVE_PLAYLIST",
    9327             :                 "Windows Media Player encountered a problem while creating or saving the playlist. For additional assistance, click Web Help."
    9328             :         },
    9329             :         {
    9330             :                 HRES_NS_E_WMP_FAILED_TO_OPEN_WMD,
    9331             :                 "HRES_NS_E_WMP_FAILED_TO_OPEN_WMD",
    9332             :                 "Windows Media Player cannot open the Windows Media Download file. The file might be damaged."
    9333             :         },
    9334             :         {
    9335             :                 HRES_NS_E_WMP_CANT_PLAY_PROTECTED,
    9336             :                 "HRES_NS_E_WMP_CANT_PLAY_PROTECTED",
    9337             :                 "The file cannot be added to the library because it is a protected DVR-MS file. This content cannot be played back by Windows Media Player."
    9338             :         },
    9339             :         {
    9340             :                 HRES_NS_E_SHARING_STATE_OUT_OF_SYNC,
    9341             :                 "HRES_NS_E_SHARING_STATE_OUT_OF_SYNC",
    9342             :                 "Media sharing has been turned off because a required Windows setting or component has changed. For additional assistance, click Web Help."
    9343             :         },
    9344             :         {
    9345             :                 HRES_NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING,
    9346             :                 "HRES_NS_E_WMPOCX_REMOTE_PLAYER_ALREADY_RUNNING",
    9347             :                 "Exclusive Services launch failed because the Windows Media Player is already running."
    9348             :         },
    9349             :         {
    9350             :                 HRES_NS_E_WMP_RBC_JPGMAPPINGIMAGE,
    9351             :                 "HRES_NS_E_WMP_RBC_JPGMAPPINGIMAGE",
    9352             :                 "JPG Images are not recommended for use as a mappingImage."
    9353             :         },
    9354             :         {
    9355             :                 HRES_NS_E_WMP_JPGTRANSPARENCY,
    9356             :                 "HRES_NS_E_WMP_JPGTRANSPARENCY",
    9357             :                 "JPG Images are not recommended when using a transparencyColor."
    9358             :         },
    9359             :         {
    9360             :                 HRES_NS_E_WMP_INVALID_MAX_VAL,
    9361             :                 "HRES_NS_E_WMP_INVALID_MAX_VAL",
    9362             :                 "The Max property cannot be less than Min property."
    9363             :         },
    9364             :         {
    9365             :                 HRES_NS_E_WMP_INVALID_MIN_VAL,
    9366             :                 "HRES_NS_E_WMP_INVALID_MIN_VAL",
    9367             :                 "The Min property cannot be greater than Max property."
    9368             :         },
    9369             :         {
    9370             :                 HRES_NS_E_WMP_CS_JPGPOSITIONIMAGE,
    9371             :                 "HRES_NS_E_WMP_CS_JPGPOSITIONIMAGE",
    9372             :                 "JPG Images are not recommended for use as a positionImage."
    9373             :         },
    9374             :         {
    9375             :                 HRES_NS_E_WMP_CS_NOTEVENLYDIVISIBLE,
    9376             :                 "HRES_NS_E_WMP_CS_NOTEVENLYDIVISIBLE",
    9377             :                 "The (%s) image's size is not evenly divisible by the positionImage's size."
    9378             :         },
    9379             :         {
    9380             :                 HRES_NS_E_WMPZIP_NOTAZIPFILE,
    9381             :                 "HRES_NS_E_WMPZIP_NOTAZIPFILE",
    9382             :                 "The ZIP reader opened a file and its signature did not match that of the ZIP files."
    9383             :         },
    9384             :         {
    9385             :                 HRES_NS_E_WMPZIP_CORRUPT,
    9386             :                 "HRES_NS_E_WMPZIP_CORRUPT",
    9387             :                 "The ZIP reader has detected that the file is corrupted."
    9388             :         },
    9389             :         {
    9390             :                 HRES_NS_E_WMPZIP_FILENOTFOUND,
    9391             :                 "HRES_NS_E_WMPZIP_FILENOTFOUND",
    9392             :                 "GetFileStream, SaveToFile, or SaveTemp file was called on the ZIP reader with a file name that was not found in the ZIP file."
    9393             :         },
    9394             :         {
    9395             :                 HRES_NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED,
    9396             :                 "HRES_NS_E_WMP_IMAGE_FILETYPE_UNSUPPORTED",
    9397             :                 "Image type not supported."
    9398             :         },
    9399             :         {
    9400             :                 HRES_NS_E_WMP_IMAGE_INVALID_FORMAT,
    9401             :                 "HRES_NS_E_WMP_IMAGE_INVALID_FORMAT",
    9402             :                 "Image file might be corrupt."
    9403             :         },
    9404             :         {
    9405             :                 HRES_NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE,
    9406             :                 "HRES_NS_E_WMP_GIF_UNEXPECTED_ENDOFFILE",
    9407             :                 "Unexpected end of file. GIF file might be corrupt."
    9408             :         },
    9409             :         {
    9410             :                 HRES_NS_E_WMP_GIF_INVALID_FORMAT,
    9411             :                 "HRES_NS_E_WMP_GIF_INVALID_FORMAT",
    9412             :                 "Invalid GIF file."
    9413             :         },
    9414             :         {
    9415             :                 HRES_NS_E_WMP_GIF_BAD_VERSION_NUMBER,
    9416             :                 "HRES_NS_E_WMP_GIF_BAD_VERSION_NUMBER",
    9417             :                 "Invalid GIF version. Only 87a or 89a supported."
    9418             :         },
    9419             :         {
    9420             :                 HRES_NS_E_WMP_GIF_NO_IMAGE_IN_FILE,
    9421             :                 "HRES_NS_E_WMP_GIF_NO_IMAGE_IN_FILE",
    9422             :                 "No images found in GIF file."
    9423             :         },
    9424             :         {
    9425             :                 HRES_NS_E_WMP_PNG_INVALIDFORMAT,
    9426             :                 "HRES_NS_E_WMP_PNG_INVALIDFORMAT",
    9427             :                 "Invalid PNG image file format."
    9428             :         },
    9429             :         {
    9430             :                 HRES_NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH,
    9431             :                 "HRES_NS_E_WMP_PNG_UNSUPPORTED_BITDEPTH",
    9432             :                 "PNG bitdepth not supported."
    9433             :         },
    9434             :         {
    9435             :                 HRES_NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION,
    9436             :                 "HRES_NS_E_WMP_PNG_UNSUPPORTED_COMPRESSION",
    9437             :                 "Compression format defined in PNG file not supported,"
    9438             :         },
    9439             :         {
    9440             :                 HRES_NS_E_WMP_PNG_UNSUPPORTED_FILTER,
    9441             :                 "HRES_NS_E_WMP_PNG_UNSUPPORTED_FILTER",
    9442             :                 "Filter method defined in PNG file not supported."
    9443             :         },
    9444             :         {
    9445             :                 HRES_NS_E_WMP_PNG_UNSUPPORTED_INTERLACE,
    9446             :                 "HRES_NS_E_WMP_PNG_UNSUPPORTED_INTERLACE",
    9447             :                 "Interlace method defined in PNG file not supported."
    9448             :         },
    9449             :         {
    9450             :                 HRES_NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC,
    9451             :                 "HRES_NS_E_WMP_PNG_UNSUPPORTED_BAD_CRC",
    9452             :                 "Bad CRC in PNG file."
    9453             :         },
    9454             :         {
    9455             :                 HRES_NS_E_WMP_BMP_INVALID_BITMASK,
    9456             :                 "HRES_NS_E_WMP_BMP_INVALID_BITMASK",
    9457             :                 "Invalid bitmask in BMP file."
    9458             :         },
    9459             :         {
    9460             :                 HRES_NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED,
    9461             :                 "HRES_NS_E_WMP_BMP_TOPDOWN_DIB_UNSUPPORTED",
    9462             :                 "Topdown DIB not supported."
    9463             :         },
    9464             :         {
    9465             :                 HRES_NS_E_WMP_BMP_BITMAP_NOT_CREATED,
    9466             :                 "HRES_NS_E_WMP_BMP_BITMAP_NOT_CREATED",
    9467             :                 "Bitmap could not be created."
    9468             :         },
    9469             :         {
    9470             :                 HRES_NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED,
    9471             :                 "HRES_NS_E_WMP_BMP_COMPRESSION_UNSUPPORTED",
    9472             :                 "Compression format defined in BMP not supported."
    9473             :         },
    9474             :         {
    9475             :                 HRES_NS_E_WMP_BMP_INVALID_FORMAT,
    9476             :                 "HRES_NS_E_WMP_BMP_INVALID_FORMAT",
    9477             :                 "Invalid Bitmap format."
    9478             :         },
    9479             :         {
    9480             :                 HRES_NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL,
    9481             :                 "HRES_NS_E_WMP_JPG_JERR_ARITHCODING_NOTIMPL",
    9482             :                 "JPEG Arithmetic coding not supported."
    9483             :         },
    9484             :         {
    9485             :                 HRES_NS_E_WMP_JPG_INVALID_FORMAT,
    9486             :                 "HRES_NS_E_WMP_JPG_INVALID_FORMAT",
    9487             :                 "Invalid JPEG format."
    9488             :         },
    9489             :         {
    9490             :                 HRES_NS_E_WMP_JPG_BAD_DCTSIZE,
    9491             :                 "HRES_NS_E_WMP_JPG_BAD_DCTSIZE",
    9492             :                 "Invalid JPEG format."
    9493             :         },
    9494             :         {
    9495             :                 HRES_NS_E_WMP_JPG_BAD_VERSION_NUMBER,
    9496             :                 "HRES_NS_E_WMP_JPG_BAD_VERSION_NUMBER",
    9497             :                 "Internal version error. Unexpected JPEG library version."
    9498             :         },
    9499             :         {
    9500             :                 HRES_NS_E_WMP_JPG_BAD_PRECISION,
    9501             :                 "HRES_NS_E_WMP_JPG_BAD_PRECISION",
    9502             :                 "Internal JPEG Library error. Unsupported JPEG data precision."
    9503             :         },
    9504             :         {
    9505             :                 HRES_NS_E_WMP_JPG_CCIR601_NOTIMPL,
    9506             :                 "HRES_NS_E_WMP_JPG_CCIR601_NOTIMPL",
    9507             :                 "JPEG CCIR601 not supported."
    9508             :         },
    9509             :         {
    9510             :                 HRES_NS_E_WMP_JPG_NO_IMAGE_IN_FILE,
    9511             :                 "HRES_NS_E_WMP_JPG_NO_IMAGE_IN_FILE",
    9512             :                 "No image found in JPEG file."
    9513             :         },
    9514             :         {
    9515             :                 HRES_NS_E_WMP_JPG_READ_ERROR,
    9516             :                 "HRES_NS_E_WMP_JPG_READ_ERROR",
    9517             :                 "Could not read JPEG file."
    9518             :         },
    9519             :         {
    9520             :                 HRES_NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL,
    9521             :                 "HRES_NS_E_WMP_JPG_FRACT_SAMPLE_NOTIMPL",
    9522             :                 "JPEG Fractional sampling not supported."
    9523             :         },
    9524             :         {
    9525             :                 HRES_NS_E_WMP_JPG_IMAGE_TOO_BIG,
    9526             :                 "HRES_NS_E_WMP_JPG_IMAGE_TOO_BIG",
    9527             :                 "JPEG image too large. Maximum image size supported is 65500 X 65500."
    9528             :         },
    9529             :         {
    9530             :                 HRES_NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE,
    9531             :                 "HRES_NS_E_WMP_JPG_UNEXPECTED_ENDOFFILE",
    9532             :                 "Unexpected end of file reached in JPEG file."
    9533             :         },
    9534             :         {
    9535             :                 HRES_NS_E_WMP_JPG_SOF_UNSUPPORTED,
    9536             :                 "HRES_NS_E_WMP_JPG_SOF_UNSUPPORTED",
    9537             :                 "Unsupported JPEG SOF marker found."
    9538             :         },
    9539             :         {
    9540             :                 HRES_NS_E_WMP_JPG_UNKNOWN_MARKER,
    9541             :                 "HRES_NS_E_WMP_JPG_UNKNOWN_MARKER",
    9542             :                 "Unknown JPEG marker found."
    9543             :         },
    9544             :         {
    9545             :                 HRES_NS_E_WMP_FAILED_TO_OPEN_IMAGE,
    9546             :                 "HRES_NS_E_WMP_FAILED_TO_OPEN_IMAGE",
    9547             :                 "Windows Media Player cannot display the picture file. The player either does not support the picture type or the picture is corrupted."
    9548             :         },
    9549             :         {
    9550             :                 HRES_NS_E_WMP_DAI_SONGTOOSHORT,
    9551             :                 "HRES_NS_E_WMP_DAI_SONGTOOSHORT",
    9552             :                 "Windows Media Player cannot compute a Digital Audio Id for the song. It is too short."
    9553             :         },
    9554             :         {
    9555             :                 HRES_NS_E_WMG_RATEUNAVAILABLE,
    9556             :                 "HRES_NS_E_WMG_RATEUNAVAILABLE",
    9557             :                 "Windows Media Player cannot play the file at the requested speed."
    9558             :         },
    9559             :         {
    9560             :                 HRES_NS_E_WMG_PLUGINUNAVAILABLE,
    9561             :                 "HRES_NS_E_WMG_PLUGINUNAVAILABLE",
    9562             :                 "The rendering or digital signal processing plug-in cannot be instantiated."
    9563             :         },
    9564             :         {
    9565             :                 HRES_NS_E_WMG_CANNOTQUEUE,
    9566             :                 "HRES_NS_E_WMG_CANNOTQUEUE",
    9567             :                 "The file cannot be queued for seamless playback."
    9568             :         },
    9569             :         {
    9570             :                 HRES_NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED,
    9571             :                 "HRES_NS_E_WMG_PREROLLLICENSEACQUISITIONNOTALLOWED",
    9572             :                 "Windows Media Player cannot download media usage rights for a file in the playlist."
    9573             :         },
    9574             :         {
    9575             :                 HRES_NS_E_WMG_UNEXPECTEDPREROLLSTATUS,
    9576             :                 "HRES_NS_E_WMG_UNEXPECTEDPREROLLSTATUS",
    9577             :                 "Windows Media Player encountered an error while trying to queue a file."
    9578             :         },
    9579             :         {
    9580             :                 HRES_NS_E_WMG_INVALID_COPP_CERTIFICATE,
    9581             :                 "HRES_NS_E_WMG_INVALID_COPP_CERTIFICATE",
    9582             :                 "Windows Media Player cannot play the protected file. The Player cannot verify that the connection to your video card is secure. Try installing an updated device driver for your video card."
    9583             :         },
    9584             :         {
    9585             :                 HRES_NS_E_WMG_COPP_SECURITY_INVALID,
    9586             :                 "HRES_NS_E_WMG_COPP_SECURITY_INVALID",
    9587             :                 "Windows Media Player cannot play the protected file. The Player detected that the connection to your hardware might not be secure."
    9588             :         },
    9589             :         {
    9590             :                 HRES_NS_E_WMG_COPP_UNSUPPORTED,
    9591             :                 "HRES_NS_E_WMG_COPP_UNSUPPORTED",
    9592             :                 "Windows Media Player output link protection is unsupported on this system."
    9593             :         },
    9594             :         {
    9595             :                 HRES_NS_E_WMG_INVALIDSTATE,
    9596             :                 "HRES_NS_E_WMG_INVALIDSTATE",
    9597             :                 "Operation attempted in an invalid graph state."
    9598             :         },
    9599             :         {
    9600             :                 HRES_NS_E_WMG_SINKALREADYEXISTS,
    9601             :                 "HRES_NS_E_WMG_SINKALREADYEXISTS",
    9602             :                 "A renderer cannot be inserted in a stream while one already exists."
    9603             :         },
    9604             :         {
    9605             :                 HRES_NS_E_WMG_NOSDKINTERFACE,
    9606             :                 "HRES_NS_E_WMG_NOSDKINTERFACE",
    9607             :                 "The Windows Media SDK interface needed to complete the operation does not exist at this time."
    9608             :         },
    9609             :         {
    9610             :                 HRES_NS_E_WMG_NOTALLOUTPUTSRENDERED,
    9611             :                 "HRES_NS_E_WMG_NOTALLOUTPUTSRENDERED",
    9612             :                 "Windows Media Player cannot play a portion of the file because it requires a codec that either could not be downloaded or that is not supported by the Player."
    9613             :         },
    9614             :         {
    9615             :                 HRES_NS_E_WMG_FILETRANSFERNOTALLOWED,
    9616             :                 "HRES_NS_E_WMG_FILETRANSFERNOTALLOWED",
    9617             :                 "File transfer streams are not allowed in the standalone Player."
    9618             :         },
    9619             :         {
    9620             :                 HRES_NS_E_WMR_UNSUPPORTEDSTREAM,
    9621             :                 "HRES_NS_E_WMR_UNSUPPORTEDSTREAM",
    9622             :                 "Windows Media Player cannot play the file. The Player does not support the format you are trying to play."
    9623             :         },
    9624             :         {
    9625             :                 HRES_NS_E_WMR_PINNOTFOUND,
    9626             :                 "HRES_NS_E_WMR_PINNOTFOUND",
    9627             :                 "An operation was attempted on a pin that does not exist in the DirectShow filter graph."
    9628             :         },
    9629             :         {
    9630             :                 HRES_NS_E_WMR_WAITINGONFORMATSWITCH,
    9631             :                 "HRES_NS_E_WMR_WAITINGONFORMATSWITCH",
    9632             :                 "Specified operation cannot be completed while waiting for a media format change from the SDK."
    9633             :         },
    9634             :         {
    9635             :                 HRES_NS_E_WMR_NOSOURCEFILTER,
    9636             :                 "HRES_NS_E_WMR_NOSOURCEFILTER",
    9637             :                 "Specified operation cannot be completed because the source filter does not exist."
    9638             :         },
    9639             :         {
    9640             :                 HRES_NS_E_WMR_PINTYPENOMATCH,
    9641             :                 "HRES_NS_E_WMR_PINTYPENOMATCH",
    9642             :                 "The specified type does not match this pin."
    9643             :         },
    9644             :         {
    9645             :                 HRES_NS_E_WMR_NOCALLBACKAVAILABLE,
    9646             :                 "HRES_NS_E_WMR_NOCALLBACKAVAILABLE",
    9647             :                 "The WMR Source Filter does not have a callback available."
    9648             :         },
    9649             :         {
    9650             :                 HRES_NS_E_WMR_SAMPLEPROPERTYNOTSET,
    9651             :                 "HRES_NS_E_WMR_SAMPLEPROPERTYNOTSET",
    9652             :                 "The specified property has not been set on this sample."
    9653             :         },
    9654             :         {
    9655             :                 HRES_NS_E_WMR_CANNOT_RENDER_BINARY_STREAM,
    9656             :                 "HRES_NS_E_WMR_CANNOT_RENDER_BINARY_STREAM",
    9657             :                 "A plug-in is required to correctly play the file. To determine if the plug-in is available to download, click Web Help."
    9658             :         },
    9659             :         {
    9660             :                 HRES_NS_E_WMG_LICENSE_TAMPERED,
    9661             :                 "HRES_NS_E_WMG_LICENSE_TAMPERED",
    9662             :                 "Windows Media Player cannot play the file because your media usage rights are corrupted. If you previously backed up your media usage rights, try restoring them."
    9663             :         },
    9664             :         {
    9665             :                 HRES_NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM,
    9666             :                 "HRES_NS_E_WMR_WILLNOT_RENDER_BINARY_STREAM",
    9667             :                 "Windows Media Player cannot play protected files that contain binary streams."
    9668             :         },
    9669             :         {
    9670             :                 HRES_NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT,
    9671             :                 "HRES_NS_E_WMX_UNRECOGNIZED_PLAYLIST_FORMAT",
    9672             :                 "Windows Media Player cannot play the playlist because it is not valid."
    9673             :         },
    9674             :         {
    9675             :                 HRES_NS_E_ASX_INVALIDFORMAT,
    9676             :                 "HRES_NS_E_ASX_INVALIDFORMAT",
    9677             :                 "Windows Media Player cannot play the playlist because it is not valid."
    9678             :         },
    9679             :         {
    9680             :                 HRES_NS_E_ASX_INVALIDVERSION,
    9681             :                 "HRES_NS_E_ASX_INVALIDVERSION",
    9682             :                 "A later version of Windows Media Player might be required to play this playlist."
    9683             :         },
    9684             :         {
    9685             :                 HRES_NS_E_ASX_INVALID_REPEAT_BLOCK,
    9686             :                 "HRES_NS_E_ASX_INVALID_REPEAT_BLOCK",
    9687             :                 "The format of a REPEAT loop within the current playlist file is not valid."
    9688             :         },
    9689             :         {
    9690             :                 HRES_NS_E_ASX_NOTHING_TO_WRITE,
    9691             :                 "HRES_NS_E_ASX_NOTHING_TO_WRITE",
    9692             :                 "Windows Media Player cannot save the playlist because it does not contain any items."
    9693             :         },
    9694             :         {
    9695             :                 HRES_NS_E_URLLIST_INVALIDFORMAT,
    9696             :                 "HRES_NS_E_URLLIST_INVALIDFORMAT",
    9697             :                 "Windows Media Player cannot play the playlist because it is not valid."
    9698             :         },
    9699             :         {
    9700             :                 HRES_NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST,
    9701             :                 "HRES_NS_E_WMX_ATTRIBUTE_DOES_NOT_EXIST",
    9702             :                 "The specified attribute does not exist."
    9703             :         },
    9704             :         {
    9705             :                 HRES_NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS,
    9706             :                 "HRES_NS_E_WMX_ATTRIBUTE_ALREADY_EXISTS",
    9707             :                 "The specified attribute already exists."
    9708             :         },
    9709             :         {
    9710             :                 HRES_NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE,
    9711             :                 "HRES_NS_E_WMX_ATTRIBUTE_UNRETRIEVABLE",
    9712             :                 "Cannot retrieve the specified attribute."
    9713             :         },
    9714             :         {
    9715             :                 HRES_NS_E_WMX_ITEM_DOES_NOT_EXIST,
    9716             :                 "HRES_NS_E_WMX_ITEM_DOES_NOT_EXIST",
    9717             :                 "The specified item does not exist in the current playlist."
    9718             :         },
    9719             :         {
    9720             :                 HRES_NS_E_WMX_ITEM_TYPE_ILLEGAL,
    9721             :                 "HRES_NS_E_WMX_ITEM_TYPE_ILLEGAL",
    9722             :                 "Items of the specified type cannot be created within the current playlist."
    9723             :         },
    9724             :         {
    9725             :                 HRES_NS_E_WMX_ITEM_UNSETTABLE,
    9726             :                 "HRES_NS_E_WMX_ITEM_UNSETTABLE",
    9727             :                 "The specified item cannot be set in the current playlist."
    9728             :         },
    9729             :         {
    9730             :                 HRES_NS_E_WMX_PLAYLIST_EMPTY,
    9731             :                 "HRES_NS_E_WMX_PLAYLIST_EMPTY",
    9732             :                 "Windows Media Player cannot perform the requested action because the playlist does not contain any items."
    9733             :         },
    9734             :         {
    9735             :                 HRES_NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED,
    9736             :                 "HRES_NS_E_MLS_SMARTPLAYLIST_FILTER_NOT_REGISTERED",
    9737             :                 "The specified auto playlist contains a filter type that is either not valid or is not installed on this computer."
    9738             :         },
    9739             :         {
    9740             :                 HRES_NS_E_WMX_INVALID_FORMAT_OVER_NESTING,
    9741             :                 "HRES_NS_E_WMX_INVALID_FORMAT_OVER_NESTING",
    9742             :                 "Windows Media Player cannot play the file because the associated playlist contains too many nested playlists."
    9743             :         },
    9744             :         {
    9745             :                 HRES_NS_E_WMPCORE_NOSOURCEURLSTRING,
    9746             :                 "HRES_NS_E_WMPCORE_NOSOURCEURLSTRING",
    9747             :                 "Windows Media Player cannot find the file. Verify that the path is typed correctly. If it is, the file might not exist in the specified location, or the computer where the file is stored might not be available."
    9748             :         },
    9749             :         {
    9750             :                 HRES_NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT,
    9751             :                 "HRES_NS_E_WMPCORE_COCREATEFAILEDFORGITOBJECT",
    9752             :                 "Failed to create the Global Interface Table."
    9753             :         },
    9754             :         {
    9755             :                 HRES_NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE,
    9756             :                 "HRES_NS_E_WMPCORE_FAILEDTOGETMARSHALLEDEVENTHANDLERINTERFACE",
    9757             :                 "Failed to get the marshaled graph event handler interface."
    9758             :         },
    9759             :         {
    9760             :                 HRES_NS_E_WMPCORE_BUFFERTOOSMALL,
    9761             :                 "HRES_NS_E_WMPCORE_BUFFERTOOSMALL",
    9762             :                 "Buffer is too small for copying media type."
    9763             :         },
    9764             :         {
    9765             :                 HRES_NS_E_WMPCORE_UNAVAILABLE,
    9766             :                 "HRES_NS_E_WMPCORE_UNAVAILABLE",
    9767             :                 "The current state of the Player does not allow this operation."
    9768             :         },
    9769             :         {
    9770             :                 HRES_NS_E_WMPCORE_INVALIDPLAYLISTMODE,
    9771             :                 "HRES_NS_E_WMPCORE_INVALIDPLAYLISTMODE",
    9772             :                 "The playlist manager does not understand the current play mode (for example, shuffle or normal)."
    9773             :         },
    9774             :         {
    9775             :                 HRES_NS_E_WMPCORE_ITEMNOTINPLAYLIST,
    9776             :                 "HRES_NS_E_WMPCORE_ITEMNOTINPLAYLIST",
    9777             :                 "Windows Media Player cannot play the file because it is not in the current playlist."
    9778             :         },
    9779             :         {
    9780             :                 HRES_NS_E_WMPCORE_PLAYLISTEMPTY,
    9781             :                 "HRES_NS_E_WMPCORE_PLAYLISTEMPTY",
    9782             :                 "There are no items in the playlist. Add items to the playlist, and then try again."
    9783             :         },
    9784             :         {
    9785             :                 HRES_NS_E_WMPCORE_NOBROWSER,
    9786             :                 "HRES_NS_E_WMPCORE_NOBROWSER",
    9787             :                 "The web page cannot be displayed because no web browser is installed on your computer."
    9788             :         },
    9789             :         {
    9790             :                 HRES_NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL,
    9791             :                 "HRES_NS_E_WMPCORE_UNRECOGNIZED_MEDIA_URL",
    9792             :                 "Windows Media Player cannot find the specified file. Verify the path is typed correctly. If it is, the file does not exist in the specified location, or the computer where the file is stored is not available."
    9793             :         },
    9794             :         {
    9795             :                 HRES_NS_E_WMPCORE_GRAPH_NOT_IN_LIST,
    9796             :                 "HRES_NS_E_WMPCORE_GRAPH_NOT_IN_LIST",
    9797             :                 "Graph with the specified URL was not found in the prerolled graph list."
    9798             :         },
    9799             :         {
    9800             :                 HRES_NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA,
    9801             :                 "HRES_NS_E_WMPCORE_PLAYLIST_EMPTY_OR_SINGLE_MEDIA",
    9802             :                 "Windows Media Player cannot perform the requested operation because there is only one item in the playlist."
    9803             :         },
    9804             :         {
    9805             :                 HRES_NS_E_WMPCORE_ERRORSINKNOTREGISTERED,
    9806             :                 "HRES_NS_E_WMPCORE_ERRORSINKNOTREGISTERED",
    9807             :                 "An error sink was never registered for the calling object."
    9808             :         },
    9809             :         {
    9810             :                 HRES_NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE,
    9811             :                 "HRES_NS_E_WMPCORE_ERRORMANAGERNOTAVAILABLE",
    9812             :                 "The error manager is not available to respond to errors."
    9813             :         },
    9814             :         {
    9815             :                 HRES_NS_E_WMPCORE_WEBHELPFAILED,
    9816             :                 "HRES_NS_E_WMPCORE_WEBHELPFAILED",
    9817             :                 "The Web Help URL cannot be opened."
    9818             :         },
    9819             :         {
    9820             :                 HRES_NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED,
    9821             :                 "HRES_NS_E_WMPCORE_MEDIA_ERROR_RESUME_FAILED",
    9822             :                 "Could not resume playing next item in playlist."
    9823             :         },
    9824             :         {
    9825             :                 HRES_NS_E_WMPCORE_NO_REF_IN_ENTRY,
    9826             :                 "HRES_NS_E_WMPCORE_NO_REF_IN_ENTRY",
    9827             :                 "Windows Media Player cannot play the file because the associated playlist does not contain any items or the playlist is not valid."
    9828             :         },
    9829             :         {
    9830             :                 HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY,
    9831             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_EMPTY",
    9832             :                 "An empty string for playlist attribute name was found."
    9833             :         },
    9834             :         {
    9835             :                 HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL,
    9836             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_NAME_ILLEGAL",
    9837             :                 "A playlist attribute name that is not valid was found."
    9838             :         },
    9839             :         {
    9840             :                 HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY,
    9841             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_EMPTY",
    9842             :                 "An empty string for a playlist attribute value was found."
    9843             :         },
    9844             :         {
    9845             :                 HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL,
    9846             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ATTRIBUTE_VALUE_ILLEGAL",
    9847             :                 "An illegal value for a playlist attribute was found."
    9848             :         },
    9849             :         {
    9850             :                 HRES_NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY,
    9851             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_EMPTY",
    9852             :                 "An empty string for a playlist item attribute name was found."
    9853             :         },
    9854             :         {
    9855             :                 HRES_NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL,
    9856             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_NAME_ILLEGAL",
    9857             :                 "An illegal value for a playlist item attribute name was found."
    9858             :         },
    9859             :         {
    9860             :                 HRES_NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY,
    9861             :                 "HRES_NS_E_WMPCORE_WMX_LIST_ITEM_ATTRIBUTE_VALUE_EMPTY",
    9862             :                 "An illegal value for a playlist item attribute was found."
    9863             :         },
    9864             :         {
    9865             :                 HRES_NS_E_WMPCORE_LIST_ENTRY_NO_REF,
    9866             :                 "HRES_NS_E_WMPCORE_LIST_ENTRY_NO_REF",
    9867             :                 "The playlist does not contain any items."
    9868             :         },
    9869             :         {
    9870             :                 HRES_NS_E_WMPCORE_MISNAMED_FILE,
    9871             :                 "HRES_NS_E_WMPCORE_MISNAMED_FILE",
    9872             :                 "Windows Media Player cannot play the file. The file is either corrupted or the Player does not support the format you are trying to play."
    9873             :         },
    9874             :         {
    9875             :                 HRES_NS_E_WMPCORE_CODEC_NOT_TRUSTED,
    9876             :                 "HRES_NS_E_WMPCORE_CODEC_NOT_TRUSTED",
    9877             :                 "The codec downloaded for this file does not appear to be properly signed, so it cannot be installed."
    9878             :         },
    9879             :         {
    9880             :                 HRES_NS_E_WMPCORE_CODEC_NOT_FOUND,
    9881             :                 "HRES_NS_E_WMPCORE_CODEC_NOT_FOUND",
    9882             :                 "Windows Media Player cannot play the file. One or more codecs required to play the file could not be found."
    9883             :         },
    9884             :         {
    9885             :                 HRES_NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED,
    9886             :                 "HRES_NS_E_WMPCORE_CODEC_DOWNLOAD_NOT_ALLOWED",
    9887             :                 "Windows Media Player cannot play the file because a required codec is not installed on your computer. To try downloading the codec, turn on the \"Download codecs automatically\" option."
    9888             :         },
    9889             :         {
    9890             :                 HRES_NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST,
    9891             :                 "HRES_NS_E_WMPCORE_ERROR_DOWNLOADING_PLAYLIST",
    9892             :                 "Windows Media Player encountered a problem while downloading the playlist. For additional assistance, click Web Help."
    9893             :         },
    9894             :         {
    9895             :                 HRES_NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST,
    9896             :                 "HRES_NS_E_WMPCORE_FAILED_TO_BUILD_PLAYLIST",
    9897             :                 "Failed to build the playlist."
    9898             :         },
    9899             :         {
    9900             :                 HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE,
    9901             :                 "HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NONE",
    9902             :                 "Playlist has no alternates to switch into."
    9903             :         },
    9904             :         {
    9905             :                 HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED,
    9906             :                 "HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_EXHAUSTED",
    9907             :                 "No more playlist alternates available to switch to."
    9908             :         },
    9909             :         {
    9910             :                 HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND,
    9911             :                 "HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_NAME_NOT_FOUND",
    9912             :                 "Could not find the name of the alternate playlist to switch into."
    9913             :         },
    9914             :         {
    9915             :                 HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED,
    9916             :                 "HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_MORPH_FAILED",
    9917             :                 "Failed to switch to an alternate for this media."
    9918             :         },
    9919             :         {
    9920             :                 HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED,
    9921             :                 "HRES_NS_E_WMPCORE_PLAYLIST_ITEM_ALTERNATE_INIT_FAILED",
    9922             :                 "Failed to initialize an alternate for the media."
    9923             :         },
    9924             :         {
    9925             :                 HRES_NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY,
    9926             :                 "HRES_NS_E_WMPCORE_MEDIA_ALTERNATE_REF_EMPTY",
    9927             :                 "No URL specified for the roll over Refs in the playlist file."
    9928             :         },
    9929             :         {
    9930             :                 HRES_NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME,
    9931             :                 "HRES_NS_E_WMPCORE_PLAYLIST_NO_EVENT_NAME",
    9932             :                 "Encountered a playlist with no name."
    9933             :         },
    9934             :         {
    9935             :                 HRES_NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT,
    9936             :                 "HRES_NS_E_WMPCORE_PLAYLIST_EVENT_ATTRIBUTE_ABSENT",
    9937             :                 "A required attribute in the event block of the playlist was not found."
    9938             :         },
    9939             :         {
    9940             :                 HRES_NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY,
    9941             :                 "HRES_NS_E_WMPCORE_PLAYLIST_EVENT_EMPTY",
    9942             :                 "No items were found in the event block of the playlist."
    9943             :         },
    9944             :         {
    9945             :                 HRES_NS_E_WMPCORE_PLAYLIST_STACK_EMPTY,
    9946             :                 "HRES_NS_E_WMPCORE_PLAYLIST_STACK_EMPTY",
    9947             :                 "No playlist was found while returning from a nested playlist."
    9948             :         },
    9949             :         {
    9950             :                 HRES_NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE,
    9951             :                 "HRES_NS_E_WMPCORE_CURRENT_MEDIA_NOT_ACTIVE",
    9952             :                 "The media item is not active currently."
    9953             :         },
    9954             :         {
    9955             :                 HRES_NS_E_WMPCORE_USER_CANCEL,
    9956             :                 "HRES_NS_E_WMPCORE_USER_CANCEL",
    9957             :                 "Windows Media Player cannot perform the requested action because you chose to cancel it."
    9958             :         },
    9959             :         {
    9960             :                 HRES_NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY,
    9961             :                 "HRES_NS_E_WMPCORE_PLAYLIST_REPEAT_EMPTY",
    9962             :                 "Windows Media Player encountered a problem with the playlist. The format of the playlist is not valid."
    9963             :         },
    9964             :         {
    9965             :                 HRES_NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE,
    9966             :                 "HRES_NS_E_WMPCORE_PLAYLIST_REPEAT_START_MEDIA_NONE",
    9967             :                 "Media object corresponding to start of a playlist repeat block was not found."
    9968             :         },
    9969             :         {
    9970             :                 HRES_NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE,
    9971             :                 "HRES_NS_E_WMPCORE_PLAYLIST_REPEAT_END_MEDIA_NONE",
    9972             :                 "Media object corresponding to the end of a playlist repeat block was not found."
    9973             :         },
    9974             :         {
    9975             :                 HRES_NS_E_WMPCORE_INVALID_PLAYLIST_URL,
    9976             :                 "HRES_NS_E_WMPCORE_INVALID_PLAYLIST_URL",
    9977             :                 "The playlist URL supplied to the playlist manager is not valid."
    9978             :         },
    9979             :         {
    9980             :                 HRES_NS_E_WMPCORE_MISMATCHED_RUNTIME,
    9981             :                 "HRES_NS_E_WMPCORE_MISMATCHED_RUNTIME",
    9982             :                 "Windows Media Player cannot play the file because it is corrupted."
    9983             :         },
    9984             :         {
    9985             :                 HRES_NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS,
    9986             :                 "HRES_NS_E_WMPCORE_PLAYLIST_IMPORT_FAILED_NO_ITEMS",
    9987             :                 "Windows Media Player cannot add the playlist to the library because the playlist does not contain any items."
    9988             :         },
    9989             :         {
    9990             :                 HRES_NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION,
    9991             :                 "HRES_NS_E_WMPCORE_VIDEO_TRANSFORM_FILTER_INSERTION",
    9992             :                 "An error has occurred that could prevent the changing of the video contrast on this media."
    9993             :         },
    9994             :         {
    9995             :                 HRES_NS_E_WMPCORE_MEDIA_UNAVAILABLE,
    9996             :                 "HRES_NS_E_WMPCORE_MEDIA_UNAVAILABLE",
    9997             :                 "Windows Media Player cannot play the file. If the file is located on the Internet, connect to the Internet. If the file is located on a removable storage card, insert the storage card."
    9998             :         },
    9999             :         {
   10000             :                 HRES_NS_E_WMPCORE_WMX_ENTRYREF_NO_REF,
   10001             :                 "HRES_NS_E_WMPCORE_WMX_ENTRYREF_NO_REF",
   10002             :                 "The playlist contains an ENTRYREF for which no href was parsed. Check the syntax of playlist file."
   10003             :         },
   10004             :         {
   10005             :                 HRES_NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST,
   10006             :                 "HRES_NS_E_WMPCORE_NO_PLAYABLE_MEDIA_IN_PLAYLIST",
   10007             :                 "Windows Media Player cannot play any items in the playlist. To find information about the problem, click the Now Playing tab, and then click the icon next to each file in the List pane."
   10008             :         },
   10009             :         {
   10010             :                 HRES_NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS,
   10011             :                 "HRES_NS_E_WMPCORE_PLAYLIST_EMPTY_NESTED_PLAYLIST_SKIPPED_ITEMS",
   10012             :                 "Windows Media Player cannot play some or all of the items in the playlist because the playlist is nested."
   10013             :         },
   10014             :         {
   10015             :                 HRES_NS_E_WMPCORE_BUSY,
   10016             :                 "HRES_NS_E_WMPCORE_BUSY",
   10017             :                 "Windows Media Player cannot play the file at this time. Try again later."
   10018             :         },
   10019             :         {
   10020             :                 HRES_NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE,
   10021             :                 "HRES_NS_E_WMPCORE_MEDIA_CHILD_PLAYLIST_UNAVAILABLE",
   10022             :                 "There is no child playlist available for this media item at this time."
   10023             :         },
   10024             :         {
   10025             :                 HRES_NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST,
   10026             :                 "HRES_NS_E_WMPCORE_MEDIA_NO_CHILD_PLAYLIST",
   10027             :                 "There is no child playlist for this media item."
   10028             :         },
   10029             :         {
   10030             :                 HRES_NS_E_WMPCORE_FILE_NOT_FOUND,
   10031             :                 "HRES_NS_E_WMPCORE_FILE_NOT_FOUND",
   10032             :                 "Windows Media Player cannot find the file. The link from the item in the library to its associated digital media file might be broken. To fix the problem, try repairing the link or removing the item from the library."
   10033             :         },
   10034             :         {
   10035             :                 HRES_NS_E_WMPCORE_TEMP_FILE_NOT_FOUND,
   10036             :                 "HRES_NS_E_WMPCORE_TEMP_FILE_NOT_FOUND",
   10037             :                 "The temporary file was not found."
   10038             :         },
   10039             :         {
   10040             :                 HRES_NS_E_WMDM_REVOKED,
   10041             :                 "HRES_NS_E_WMDM_REVOKED",
   10042             :                 "Windows Media Player cannot sync the file because the device needs to be updated."
   10043             :         },
   10044             :         {
   10045             :                 HRES_NS_E_DDRAW_GENERIC,
   10046             :                 "HRES_NS_E_DDRAW_GENERIC",
   10047             :                 "Windows Media Player cannot play the video because there is a problem with your video card."
   10048             :         },
   10049             :         {
   10050             :                 HRES_NS_E_DISPLAY_MODE_CHANGE_FAILED,
   10051             :                 "HRES_NS_E_DISPLAY_MODE_CHANGE_FAILED",
   10052             :                 "Windows Media Player failed to change the screen mode for full-screen video playback."
   10053             :         },
   10054             :         {
   10055             :                 HRES_NS_E_PLAYLIST_CONTAINS_ERRORS,
   10056             :                 "HRES_NS_E_PLAYLIST_CONTAINS_ERRORS",
   10057             :                 "Windows Media Player cannot play one or more files. For additional information, right-click an item that cannot be played, and then click Error Details."
   10058             :         },
   10059             :         {
   10060             :                 HRES_NS_E_CHANGING_PROXY_NAME,
   10061             :                 "HRES_NS_E_CHANGING_PROXY_NAME",
   10062             :                 "Cannot change the proxy name if the proxy setting is not set to custom."
   10063             :         },
   10064             :         {
   10065             :                 HRES_NS_E_CHANGING_PROXY_PORT,
   10066             :                 "HRES_NS_E_CHANGING_PROXY_PORT",
   10067             :                 "Cannot change the proxy port if the proxy setting is not set to custom."
   10068             :         },
   10069             :         {
   10070             :                 HRES_NS_E_CHANGING_PROXY_EXCEPTIONLIST,
   10071             :                 "HRES_NS_E_CHANGING_PROXY_EXCEPTIONLIST",
   10072             :                 "Cannot change the proxy exception list if the proxy setting is not set to custom."
   10073             :         },
   10074             :         {
   10075             :                 HRES_NS_E_CHANGING_PROXYBYPASS,
   10076             :                 "HRES_NS_E_CHANGING_PROXYBYPASS",
   10077             :                 "Cannot change the proxy bypass flag if the proxy setting is not set to custom."
   10078             :         },
   10079             :         {
   10080             :                 HRES_NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND,
   10081             :                 "HRES_NS_E_CHANGING_PROXY_PROTOCOL_NOT_FOUND",
   10082             :                 "Cannot find the specified protocol."
   10083             :         },
   10084             :         {
   10085             :                 HRES_NS_E_GRAPH_NOAUDIOLANGUAGE,
   10086             :                 "HRES_NS_E_GRAPH_NOAUDIOLANGUAGE",
   10087             :                 "Cannot change the language settings. Either the graph has no audio or the audio only supports one language."
   10088             :         },
   10089             :         {
   10090             :                 HRES_NS_E_GRAPH_NOAUDIOLANGUAGESELECTED,
   10091             :                 "HRES_NS_E_GRAPH_NOAUDIOLANGUAGESELECTED",
   10092             :                 "The graph has no audio language selected."
   10093             :         },
   10094             :         {
   10095             :                 HRES_NS_E_CORECD_NOTAMEDIACD,
   10096             :                 "HRES_NS_E_CORECD_NOTAMEDIACD",
   10097             :                 "This is not a media CD."
   10098             :         },
   10099             :         {
   10100             :                 HRES_NS_E_WMPCORE_MEDIA_URL_TOO_LONG,
   10101             :                 "HRES_NS_E_WMPCORE_MEDIA_URL_TOO_LONG",
   10102             :                 "Windows Media Player cannot play the file because the URL is too long."
   10103             :         },
   10104             :         {
   10105             :                 HRES_NS_E_WMPFLASH_CANT_FIND_COM_SERVER,
   10106             :                 "HRES_NS_E_WMPFLASH_CANT_FIND_COM_SERVER",
   10107             :                 "To play the selected item, you must install the Macromedia Flash Player. To download the Macromedia Flash Player, go to the Adobe website."
   10108             :         },
   10109             :         {
   10110             :                 HRES_NS_E_WMPFLASH_INCOMPATIBLEVERSION,
   10111             :                 "HRES_NS_E_WMPFLASH_INCOMPATIBLEVERSION",
   10112             :                 "To play the selected item, you must install a later version of the Macromedia Flash Player. To download the Macromedia Flash Player, go to the Adobe website."
   10113             :         },
   10114             :         {
   10115             :                 HRES_NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS,
   10116             :                 "HRES_NS_E_WMPOCXGRAPH_IE_DISALLOWS_ACTIVEX_CONTROLS",
   10117             :                 "Windows Media Player cannot play the file because your Internet security settings prohibit the use of ActiveX controls."
   10118             :         },
   10119             :         {
   10120             :                 HRES_NS_E_NEED_CORE_REFERENCE,
   10121             :                 "HRES_NS_E_NEED_CORE_REFERENCE",
   10122             :                 "The use of this method requires an existing reference to the Player object."
   10123             :         },
   10124             :         {
   10125             :                 HRES_NS_E_MEDIACD_READ_ERROR,
   10126             :                 "HRES_NS_E_MEDIACD_READ_ERROR",
   10127             :                 "Windows Media Player cannot play the CD. The disc might be dirty or damaged."
   10128             :         },
   10129             :         {
   10130             :                 HRES_NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS,
   10131             :                 "HRES_NS_E_IE_DISALLOWS_ACTIVEX_CONTROLS",
   10132             :                 "Windows Media Player cannot play the file because your Internet security settings prohibit the use of ActiveX controls."
   10133             :         },
   10134             :         {
   10135             :                 HRES_NS_E_FLASH_PLAYBACK_NOT_ALLOWED,
   10136             :                 "HRES_NS_E_FLASH_PLAYBACK_NOT_ALLOWED",
   10137             :                 "Flash playback has been turned off in Windows Media Player."
   10138             :         },
   10139             :         {
   10140             :                 HRES_NS_E_UNABLE_TO_CREATE_RIP_LOCATION,
   10141             :                 "HRES_NS_E_UNABLE_TO_CREATE_RIP_LOCATION",
   10142             :                 "Windows Media Player cannot rip the CD because a valid rip location cannot be created."
   10143             :         },
   10144             :         {
   10145             :                 HRES_NS_E_WMPCORE_SOME_CODECS_MISSING,
   10146             :                 "HRES_NS_E_WMPCORE_SOME_CODECS_MISSING",
   10147             :                 "Windows Media Player cannot play the file because a required codec is not installed on your computer."
   10148             :         },
   10149             :         {
   10150             :                 HRES_NS_E_WMP_RIP_FAILED,
   10151             :                 "HRES_NS_E_WMP_RIP_FAILED",
   10152             :                 "Windows Media Player cannot rip one or more tracks from the CD."
   10153             :         },
   10154             :         {
   10155             :                 HRES_NS_E_WMP_FAILED_TO_RIP_TRACK,
   10156             :                 "HRES_NS_E_WMP_FAILED_TO_RIP_TRACK",
   10157             :                 "Windows Media Player encountered a problem while ripping the track from the CD. For additional assistance, click Web Help."
   10158             :         },
   10159             :         {
   10160             :                 HRES_NS_E_WMP_ERASE_FAILED,
   10161             :                 "HRES_NS_E_WMP_ERASE_FAILED",
   10162             :                 "Windows Media Player encountered a problem while erasing the disc. For additional assistance, click Web Help."
   10163             :         },
   10164             :         {
   10165             :                 HRES_NS_E_WMP_FORMAT_FAILED,
   10166             :                 "HRES_NS_E_WMP_FORMAT_FAILED",
   10167             :                 "Windows Media Player encountered a problem while formatting the device. For additional assistance, click Web Help."
   10168             :         },
   10169             :         {
   10170             :                 HRES_NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE,
   10171             :                 "HRES_NS_E_WMP_CANNOT_BURN_NON_LOCAL_FILE",
   10172             :                 "This file cannot be burned to a CD because it is not located on your computer."
   10173             :         },
   10174             :         {
   10175             :                 HRES_NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD,
   10176             :                 "HRES_NS_E_WMP_FILE_TYPE_CANNOT_BURN_TO_AUDIO_CD",
   10177             :                 "It is not possible to burn this file type to an audio CD. Windows Media Player can burn the following file types to an audio CD: WMA, MP3, or WAV."
   10178             :         },
   10179             :         {
   10180             :                 HRES_NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD,
   10181             :                 "HRES_NS_E_WMP_FILE_DOES_NOT_FIT_ON_CD",
   10182             :                 "This file is too large to fit on a disc."
   10183             :         },
   10184             :         {
   10185             :                 HRES_NS_E_WMP_FILE_NO_DURATION,
   10186             :                 "HRES_NS_E_WMP_FILE_NO_DURATION",
   10187             :                 "It is not possible to determine if this file can fit on a disc because Windows Media Player cannot detect the length of the file. Playing the file before burning might enable the Player to detect the file length."
   10188             :         },
   10189             :         {
   10190             :                 HRES_NS_E_PDA_FAILED_TO_BURN,
   10191             :                 "HRES_NS_E_PDA_FAILED_TO_BURN",
   10192             :                 "Windows Media Player encountered a problem while burning the file to the disc. For additional assistance, click Web Help."
   10193             :         },
   10194             :         {
   10195             :                 HRES_NS_E_FAILED_DOWNLOAD_ABORT_BURN,
   10196             :                 "HRES_NS_E_FAILED_DOWNLOAD_ABORT_BURN",
   10197             :                 "Windows Media Player cannot burn the audio CD because some items in the list that you chose to buy could not be downloaded from the online store."
   10198             :         },
   10199             :         {
   10200             :                 HRES_NS_E_WMPCORE_DEVICE_DRIVERS_MISSING,
   10201             :                 "HRES_NS_E_WMPCORE_DEVICE_DRIVERS_MISSING",
   10202             :                 "Windows Media Player cannot play the file. Try using Windows Update or Device Manager to update the device drivers for your audio and video cards. For information about using Windows Update or Device Manager, see Windows Help."
   10203             :         },
   10204             :         {
   10205             :                 HRES_NS_E_WMPIM_USEROFFLINE,
   10206             :                 "HRES_NS_E_WMPIM_USEROFFLINE",
   10207             :                 "Windows Media Player has detected that you are not connected to the Internet. Connect to the Internet, and then try again."
   10208             :         },
   10209             :         {
   10210             :                 HRES_NS_E_WMPIM_USERCANCELED,
   10211             :                 "HRES_NS_E_WMPIM_USERCANCELED",
   10212             :                 "The attempt to connect to the Internet was canceled."
   10213             :         },
   10214             :         {
   10215             :                 HRES_NS_E_WMPIM_DIALUPFAILED,
   10216             :                 "HRES_NS_E_WMPIM_DIALUPFAILED",
   10217             :                 "The attempt to connect to the Internet failed."
   10218             :         },
   10219             :         {
   10220             :                 HRES_NS_E_WINSOCK_ERROR_STRING,
   10221             :                 "HRES_NS_E_WINSOCK_ERROR_STRING",
   10222             :                 "Windows Media Player has encountered an unknown network error."
   10223             :         },
   10224             :         {
   10225             :                 HRES_NS_E_WMPBR_NOLISTENER,
   10226             :                 "HRES_NS_E_WMPBR_NOLISTENER",
   10227             :                 "No window is currently listening to Backup and Restore events."
   10228             :         },
   10229             :         {
   10230             :                 HRES_NS_E_WMPBR_BACKUPCANCEL,
   10231             :                 "HRES_NS_E_WMPBR_BACKUPCANCEL",
   10232             :                 "Your media usage rights were not backed up because the backup was canceled."
   10233             :         },
   10234             :         {
   10235             :                 HRES_NS_E_WMPBR_RESTORECANCEL,
   10236             :                 "HRES_NS_E_WMPBR_RESTORECANCEL",
   10237             :                 "Your media usage rights were not restored because the restoration was canceled."
   10238             :         },
   10239             :         {
   10240             :                 HRES_NS_E_WMPBR_ERRORWITHURL,
   10241             :                 "HRES_NS_E_WMPBR_ERRORWITHURL",
   10242             :                 "An error occurred while backing up or restoring your media usage rights. A required web page cannot be displayed."
   10243             :         },
   10244             :         {
   10245             :                 HRES_NS_E_WMPBR_NAMECOLLISION,
   10246             :                 "HRES_NS_E_WMPBR_NAMECOLLISION",
   10247             :                 "Your media usage rights were not backed up because the backup was canceled."
   10248             :         },
   10249             :         {
   10250             :                 HRES_NS_E_WMPBR_DRIVE_INVALID,
   10251             :                 "HRES_NS_E_WMPBR_DRIVE_INVALID",
   10252             :                 "Windows Media Player cannot restore your media usage rights from the specified location. Choose another location, and then try again."
   10253             :         },
   10254             :         {
   10255             :                 HRES_NS_E_WMPBR_BACKUPRESTOREFAILED,
   10256             :                 "HRES_NS_E_WMPBR_BACKUPRESTOREFAILED",
   10257             :                 "Windows Media Player cannot backup or restore your media usage rights."
   10258             :         },
   10259             :         {
   10260             :                 HRES_NS_E_WMP_CONVERT_FILE_FAILED,
   10261             :                 "HRES_NS_E_WMP_CONVERT_FILE_FAILED",
   10262             :                 "Windows Media Player cannot add the file to the library."
   10263             :         },
   10264             :         {
   10265             :                 HRES_NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL,
   10266             :                 "HRES_NS_E_WMP_CONVERT_NO_RIGHTS_ERRORURL",
   10267             :                 "Windows Media Player cannot add the file to the library because the content provider prohibits it. For assistance, contact the company that provided the file."
   10268             :         },
   10269             :         {
   10270             :                 HRES_NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL,
   10271             :                 "HRES_NS_E_WMP_CONVERT_NO_RIGHTS_NOERRORURL",
   10272             :                 "Windows Media Player cannot add the file to the library because the content provider prohibits it. For assistance, contact the company that provided the file."
   10273             :         },
   10274             :         {
   10275             :                 HRES_NS_E_WMP_CONVERT_FILE_CORRUPT,
   10276             :                 "HRES_NS_E_WMP_CONVERT_FILE_CORRUPT",
   10277             :                 "Windows Media Player cannot add the file to the library. The file might not be valid."
   10278             :         },
   10279             :         {
   10280             :                 HRES_NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL,
   10281             :                 "HRES_NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_ERRORURL",
   10282             :                 "Windows Media Player cannot add the file to the library. The plug-in required to add the file is not installed properly. For assistance, click Web Help to display the website of the company that provided the file."
   10283             :         },
   10284             :         {
   10285             :                 HRES_NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL,
   10286             :                 "HRES_NS_E_WMP_CONVERT_PLUGIN_UNAVAILABLE_NOERRORURL",
   10287             :                 "Windows Media Player cannot add the file to the library. The plug-in required to add the file is not installed properly. For assistance, contact the company that provided the file."
   10288             :         },
   10289             :         {
   10290             :                 HRES_NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER,
   10291             :                 "HRES_NS_E_WMP_CONVERT_PLUGIN_UNKNOWN_FILE_OWNER",
   10292             :                 "Windows Media Player cannot add the file to the library. The plug-in required to add the file is not installed properly. For assistance, contact the company that provided the file."
   10293             :         },
   10294             :         {
   10295             :                 HRES_NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS,
   10296             :                 "HRES_NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_NS",
   10297             :                 "Windows Media Player cannot play this DVD. Try installing an updated driver for your video card or obtaining a newer video card."
   10298             :         },
   10299             :         {
   10300             :                 HRES_NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED,
   10301             :                 "HRES_NS_E_DVD_DISC_COPY_PROTECT_OUTPUT_FAILED",
   10302             :                 "This DVD's resolution exceeds the maximum allowed by your component video outputs. Try reducing your screen resolution to 640 x 480, or turn off analog component outputs and use a VGA connection to your monitor."
   10303             :         },
   10304             :         {
   10305             :                 HRES_NS_E_DVD_NO_SUBPICTURE_STREAM,
   10306             :                 "HRES_NS_E_DVD_NO_SUBPICTURE_STREAM",
   10307             :                 "Windows Media Player cannot display subtitles or highlights in DVD menus. Reinstall the DVD decoder or contact the DVD drive manufacturer to obtain an updated decoder."
   10308             :         },
   10309             :         {
   10310             :                 HRES_NS_E_DVD_COPY_PROTECT,
   10311             :                 "HRES_NS_E_DVD_COPY_PROTECT",
   10312             :                 "Windows Media Player cannot play this DVD because there is a problem with digital copy protection between your DVD drive, decoder, and video card. Try installing an updated driver for your video card."
   10313             :         },
   10314             :         {
   10315             :                 HRES_NS_E_DVD_AUTHORING_PROBLEM,
   10316             :                 "HRES_NS_E_DVD_AUTHORING_PROBLEM",
   10317             :                 "Windows Media Player cannot play the DVD. The disc was created in a manner that the Player does not support."
   10318             :         },
   10319             :         {
   10320             :                 HRES_NS_E_DVD_INVALID_DISC_REGION,
   10321             :                 "HRES_NS_E_DVD_INVALID_DISC_REGION",
   10322             :                 "Windows Media Player cannot play the DVD because the disc prohibits playback in your region of the world. You must obtain a disc that is intended for your geographic region."
   10323             :         },
   10324             :         {
   10325             :                 HRES_NS_E_DVD_COMPATIBLE_VIDEO_CARD,
   10326             :                 "HRES_NS_E_DVD_COMPATIBLE_VIDEO_CARD",
   10327             :                 "Windows Media Player cannot play the DVD because your video card does not support DVD playback."
   10328             :         },
   10329             :         {
   10330             :                 HRES_NS_E_DVD_MACROVISION,
   10331             :                 "HRES_NS_E_DVD_MACROVISION",
   10332             :                 "Windows Media Player cannot play this DVD because it is not possible to turn on analog copy protection on the output display. Try installing an updated driver for your video card."
   10333             :         },
   10334             :         {
   10335             :                 HRES_NS_E_DVD_SYSTEM_DECODER_REGION,
   10336             :                 "HRES_NS_E_DVD_SYSTEM_DECODER_REGION",
   10337             :                 "Windows Media Player cannot play the DVD because the region assigned to your DVD drive does not match the region assigned to your DVD decoder."
   10338             :         },
   10339             :         {
   10340             :                 HRES_NS_E_DVD_DISC_DECODER_REGION,
   10341             :                 "HRES_NS_E_DVD_DISC_DECODER_REGION",
   10342             :                 "Windows Media Player cannot play the DVD because the disc prohibits playback in your region of the world. You must obtain a disc that is intended for your geographic region."
   10343             :         },
   10344             :         {
   10345             :                 HRES_NS_E_DVD_NO_VIDEO_STREAM,
   10346             :                 "HRES_NS_E_DVD_NO_VIDEO_STREAM",
   10347             :                 "Windows Media Player cannot play DVD video. You might need to adjust your Windows display settings. Open display settings in Control Panel, and then try lowering your screen resolution and color quality settings."
   10348             :         },
   10349             :         {
   10350             :                 HRES_NS_E_DVD_NO_AUDIO_STREAM,
   10351             :                 "HRES_NS_E_DVD_NO_AUDIO_STREAM",
   10352             :                 "Windows Media Player cannot play DVD audio. Verify that your sound card is set up correctly, and then try again."
   10353             :         },
   10354             :         {
   10355             :                 HRES_NS_E_DVD_GRAPH_BUILDING,
   10356             :                 "HRES_NS_E_DVD_GRAPH_BUILDING",
   10357             :                 "Windows Media Player cannot play DVD video. Close any open files and quit any other programs, and then try again. If the problem persists, restart your computer."
   10358             :         },
   10359             :         {
   10360             :                 HRES_NS_E_DVD_NO_DECODER,
   10361             :                 "HRES_NS_E_DVD_NO_DECODER",
   10362             :                 "Windows Media Player cannot play the DVD because a compatible DVD decoder is not installed on your computer."
   10363             :         },
   10364             :         {
   10365             :                 HRES_NS_E_DVD_PARENTAL,
   10366             :                 "HRES_NS_E_DVD_PARENTAL",
   10367             :                 "Windows Media Player cannot play the scene because it has a parental rating higher than the rating that you are authorized to view."
   10368             :         },
   10369             :         {
   10370             :                 HRES_NS_E_DVD_CANNOT_JUMP,
   10371             :                 "HRES_NS_E_DVD_CANNOT_JUMP",
   10372             :                 "Windows Media Player cannot skip to the requested location on the DVD."
   10373             :         },
   10374             :         {
   10375             :                 HRES_NS_E_DVD_DEVICE_CONTENTION,
   10376             :                 "HRES_NS_E_DVD_DEVICE_CONTENTION",
   10377             :                 "Windows Media Player cannot play the DVD because it is currently in use by another program. Quit the other program that is using the DVD, and then try again."
   10378             :         },
   10379             :         {
   10380             :                 HRES_NS_E_DVD_NO_VIDEO_MEMORY,
   10381             :                 "HRES_NS_E_DVD_NO_VIDEO_MEMORY",
   10382             :                 "Windows Media Player cannot play DVD video. You might need to adjust your Windows display settings. Open display settings in Control Panel, and then try lowering your screen resolution and color quality settings."
   10383             :         },
   10384             :         {
   10385             :                 HRES_NS_E_DVD_CANNOT_COPY_PROTECTED,
   10386             :                 "HRES_NS_E_DVD_CANNOT_COPY_PROTECTED",
   10387             :                 "Windows Media Player cannot rip the DVD because it is copy protected."
   10388             :         },
   10389             :         {
   10390             :                 HRES_NS_E_DVD_REQUIRED_PROPERTY_NOT_SET,
   10391             :                 "HRES_NS_E_DVD_REQUIRED_PROPERTY_NOT_SET",
   10392             :                 "One of more of the required properties has not been set."
   10393             :         },
   10394             :         {
   10395             :                 HRES_NS_E_DVD_INVALID_TITLE_CHAPTER,
   10396             :                 "HRES_NS_E_DVD_INVALID_TITLE_CHAPTER",
   10397             :                 "The specified title and/or chapter number does not exist on this DVD."
   10398             :         },
   10399             :         {
   10400             :                 HRES_NS_E_NO_CD_BURNER,
   10401             :                 "HRES_NS_E_NO_CD_BURNER",
   10402             :                 "Windows Media Player cannot burn the files because the Player cannot find a burner. If the burner is connected properly, try using Windows Update to install the latest device driver."
   10403             :         },
   10404             :         {
   10405             :                 HRES_NS_E_DEVICE_IS_NOT_READY,
   10406             :                 "HRES_NS_E_DEVICE_IS_NOT_READY",
   10407             :                 "Windows Media Player does not detect storage media in the selected device. Insert storage media into the device, and then try again."
   10408             :         },
   10409             :         {
   10410             :                 HRES_NS_E_PDA_UNSUPPORTED_FORMAT,
   10411             :                 "HRES_NS_E_PDA_UNSUPPORTED_FORMAT",
   10412             :                 "Windows Media Player cannot sync this file. The Player might not support the file type."
   10413             :         },
   10414             :         {
   10415             :                 HRES_NS_E_NO_PDA,
   10416             :                 "HRES_NS_E_NO_PDA",
   10417             :                 "Windows Media Player does not detect a portable device. Connect your portable device, and then try again."
   10418             :         },
   10419             :         {
   10420             :                 HRES_NS_E_PDA_UNSPECIFIED_ERROR,
   10421             :                 "HRES_NS_E_PDA_UNSPECIFIED_ERROR",
   10422             :                 "Windows Media Player encountered an error while communicating with the device. The storage card on the device might be full, the device might be turned off, or the device might not allow playlists or folders to be created on it."
   10423             :         },
   10424             :         {
   10425             :                 HRES_NS_E_MEMSTORAGE_BAD_DATA,
   10426             :                 "HRES_NS_E_MEMSTORAGE_BAD_DATA",
   10427             :                 "Windows Media Player encountered an error while burning a CD."
   10428             :         },
   10429             :         {
   10430             :                 HRES_NS_E_PDA_FAIL_SELECT_DEVICE,
   10431             :                 "HRES_NS_E_PDA_FAIL_SELECT_DEVICE",
   10432             :                 "Windows Media Player encountered an error while communicating with a portable device or CD drive."
   10433             :         },
   10434             :         {
   10435             :                 HRES_NS_E_PDA_FAIL_READ_WAVE_FILE,
   10436             :                 "HRES_NS_E_PDA_FAIL_READ_WAVE_FILE",
   10437             :                 "Windows Media Player cannot open the WAV file."
   10438             :         },
   10439             :         {
   10440             :                 HRES_NS_E_IMAPI_LOSSOFSTREAMING,
   10441             :                 "HRES_NS_E_IMAPI_LOSSOFSTREAMING",
   10442             :                 "Windows Media Player failed to burn all the files to the CD. Select a slower recording speed, and then try again."
   10443             :         },
   10444             :         {
   10445             :                 HRES_NS_E_PDA_DEVICE_FULL,
   10446             :                 "HRES_NS_E_PDA_DEVICE_FULL",
   10447             :                 "There is not enough storage space on the portable device to complete this operation. Delete some unneeded files on the portable device, and then try again."
   10448             :         },
   10449             :         {
   10450             :                 HRES_NS_E_FAIL_LAUNCH_ROXIO_PLUGIN,
   10451             :                 "HRES_NS_E_FAIL_LAUNCH_ROXIO_PLUGIN",
   10452             :                 "Windows Media Player cannot burn the files. Verify that your burner is connected properly, and then try again. If the problem persists, reinstall the Player."
   10453             :         },
   10454             :         {
   10455             :                 HRES_NS_E_PDA_DEVICE_FULL_IN_SESSION,
   10456             :                 "HRES_NS_E_PDA_DEVICE_FULL_IN_SESSION",
   10457             :                 "Windows Media Player did not sync some files to the device because there is not enough storage space on the device."
   10458             :         },
   10459             :         {
   10460             :                 HRES_NS_E_IMAPI_MEDIUM_INVALIDTYPE,
   10461             :                 "HRES_NS_E_IMAPI_MEDIUM_INVALIDTYPE",
   10462             :                 "The disc in the burner is not valid. Insert a blank disc into the burner, and then try again."
   10463             :         },
   10464             :         {
   10465             :                 HRES_NS_E_PDA_MANUALDEVICE,
   10466             :                 "HRES_NS_E_PDA_MANUALDEVICE",
   10467             :                 "Windows Media Player cannot perform the requested action because the device does not support sync."
   10468             :         },
   10469             :         {
   10470             :                 HRES_NS_E_PDA_PARTNERSHIPNOTEXIST,
   10471             :                 "HRES_NS_E_PDA_PARTNERSHIPNOTEXIST",
   10472             :                 "To perform the requested action, you must first set up sync with the device."
   10473             :         },
   10474             :         {
   10475             :                 HRES_NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP,
   10476             :                 "HRES_NS_E_PDA_CANNOT_CREATE_ADDITIONAL_SYNC_RELATIONSHIP",
   10477             :                 "You have already created sync partnerships with 16 devices. To create a new sync partnership, you must first end an existing partnership."
   10478             :         },
   10479             :         {
   10480             :                 HRES_NS_E_PDA_NO_TRANSCODE_OF_DRM,
   10481             :                 "HRES_NS_E_PDA_NO_TRANSCODE_OF_DRM",
   10482             :                 "Windows Media Player cannot sync the file because protected files cannot be converted to the required quality level or file format."
   10483             :         },
   10484             :         {
   10485             :                 HRES_NS_E_PDA_TRANSCODECACHEFULL,
   10486             :                 "HRES_NS_E_PDA_TRANSCODECACHEFULL",
   10487             :                 "The folder that stores converted files is full. Either empty the folder or increase its size, and then try again."
   10488             :         },
   10489             :         {
   10490             :                 HRES_NS_E_PDA_TOO_MANY_FILE_COLLISIONS,
   10491             :                 "HRES_NS_E_PDA_TOO_MANY_FILE_COLLISIONS",
   10492             :                 "There are too many files with the same name in the folder on the device. Change the file name or sync to a different folder."
   10493             :         },
   10494             :         {
   10495             :                 HRES_NS_E_PDA_CANNOT_TRANSCODE,
   10496             :                 "HRES_NS_E_PDA_CANNOT_TRANSCODE",
   10497             :                 "Windows Media Player cannot convert the file to the format required by the device."
   10498             :         },
   10499             :         {
   10500             :                 HRES_NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY,
   10501             :                 "HRES_NS_E_PDA_TOO_MANY_FILES_IN_DIRECTORY",
   10502             :                 "You have reached the maximum number of files your device allows in a folder. If your device supports playback from subfolders, try creating subfolders on the device and storing some files in them."
   10503             :         },
   10504             :         {
   10505             :                 HRES_NS_E_PROCESSINGSHOWSYNCWIZARD,
   10506             :                 "HRES_NS_E_PROCESSINGSHOWSYNCWIZARD",
   10507             :                 "Windows Media Player is already trying to start the Device Setup Wizard."
   10508             :         },
   10509             :         {
   10510             :                 HRES_NS_E_PDA_TRANSCODE_NOT_PERMITTED,
   10511             :                 "HRES_NS_E_PDA_TRANSCODE_NOT_PERMITTED",
   10512             :                 "Windows Media Player cannot convert this file format. If an updated version of the codec used to compress this file is available, install it and then try to sync the file again."
   10513             :         },
   10514             :         {
   10515             :                 HRES_NS_E_PDA_INITIALIZINGDEVICES,
   10516             :                 "HRES_NS_E_PDA_INITIALIZINGDEVICES",
   10517             :                 "Windows Media Player is busy setting up devices. Try again later."
   10518             :         },
   10519             :         {
   10520             :                 HRES_NS_E_PDA_OBSOLETE_SP,
   10521             :                 "HRES_NS_E_PDA_OBSOLETE_SP",
   10522             :                 "Your device is using an outdated driver that is no longer supported by Windows Media Player. For additional assistance, click Web Help."
   10523             :         },
   10524             :         {
   10525             :                 HRES_NS_E_PDA_TITLE_COLLISION,
   10526             :                 "HRES_NS_E_PDA_TITLE_COLLISION",
   10527             :                 "Windows Media Player cannot sync the file because a file with the same name already exists on the device. Change the file name or try to sync the file to a different folder."
   10528             :         },
   10529             :         {
   10530             :                 HRES_NS_E_PDA_DEVICESUPPORTDISABLED,
   10531             :                 "HRES_NS_E_PDA_DEVICESUPPORTDISABLED",
   10532             :                 "Automatic and manual sync have been turned off temporarily. To sync to a device, restart Windows Media Player."
   10533             :         },
   10534             :         {
   10535             :                 HRES_NS_E_PDA_NO_LONGER_AVAILABLE,
   10536             :                 "HRES_NS_E_PDA_NO_LONGER_AVAILABLE",
   10537             :                 "This device is not available. Connect the device to the computer, and then try again."
   10538             :         },
   10539             :         {
   10540             :                 HRES_NS_E_PDA_ENCODER_NOT_RESPONDING,
   10541             :                 "HRES_NS_E_PDA_ENCODER_NOT_RESPONDING",
   10542             :                 "Windows Media Player cannot sync the file because an error occurred while converting the file to another quality level or format. If the problem persists, remove the file from the list of files to sync."
   10543             :         },
   10544             :         {
   10545             :                 HRES_NS_E_PDA_CANNOT_SYNC_FROM_LOCATION,
   10546             :                 "HRES_NS_E_PDA_CANNOT_SYNC_FROM_LOCATION",
   10547             :                 "Windows Media Player cannot sync the file to your device. The file might be stored in a location that is not supported. Copy the file from its current location to your hard disk, add it to your library, and then try to sync the file again."
   10548             :         },
   10549             :         {
   10550             :                 HRES_NS_E_WMP_PROTOCOL_PROBLEM,
   10551             :                 "HRES_NS_E_WMP_PROTOCOL_PROBLEM",
   10552             :                 "Windows Media Player cannot open the specified URL. Verify that the Player is configured to use all available protocols, and then try again."
   10553             :         },
   10554             :         {
   10555             :                 HRES_NS_E_WMP_NO_DISK_SPACE,
   10556             :                 "HRES_NS_E_WMP_NO_DISK_SPACE",
   10557             :                 "Windows Media Player cannot perform the requested action because there is not enough storage space on your computer. Delete some unneeded files on your hard disk, and then try again."
   10558             :         },
   10559             :         {
   10560             :                 HRES_NS_E_WMP_LOGON_FAILURE,
   10561             :                 "HRES_NS_E_WMP_LOGON_FAILURE",
   10562             :                 "The server denied access to the file. Verify that you are using the correct user name and password."
   10563             :         },
   10564             :         {
   10565             :                 HRES_NS_E_WMP_CANNOT_FIND_FILE,
   10566             :                 "HRES_NS_E_WMP_CANNOT_FIND_FILE",
   10567             :                 "Windows Media Player cannot find the file. If you are trying to play, burn, or sync an item that is in your library, the item might point to a file that has been moved, renamed, or deleted."
   10568             :         },
   10569             :         {
   10570             :                 HRES_NS_E_WMP_SERVER_INACCESSIBLE,
   10571             :                 "HRES_NS_E_WMP_SERVER_INACCESSIBLE",
   10572             :                 "Windows Media Player cannot connect to the server. The server name might not be correct, the server might not be available, or your proxy settings might not be correct."
   10573             :         },
   10574             :         {
   10575             :                 HRES_NS_E_WMP_UNSUPPORTED_FORMAT,
   10576             :                 "HRES_NS_E_WMP_UNSUPPORTED_FORMAT",
   10577             :                 "Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file."
   10578             :         },
   10579             :         {
   10580             :                 HRES_NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT,
   10581             :                 "HRES_NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT",
   10582             :                 "Windows Media Player cannot play the file. The Player might not support the file type or a required codec might not be installed on your computer."
   10583             :         },
   10584             :         {
   10585             :                 HRES_NS_E_WMP_PLAYLIST_EXISTS,
   10586             :                 "HRES_NS_E_WMP_PLAYLIST_EXISTS",
   10587             :                 "Windows Media Player cannot create the playlist because the name already exists. Type a different playlist name."
   10588             :         },
   10589             :         {
   10590             :                 HRES_NS_E_WMP_NONMEDIA_FILES,
   10591             :                 "HRES_NS_E_WMP_NONMEDIA_FILES",
   10592             :                 "Windows Media Player cannot delete the playlist because it contains items that are not digital media files. Any digital media files in the playlist were deleted."
   10593             :         },
   10594             :         {
   10595             :                 HRES_NS_E_WMP_INVALID_ASX,
   10596             :                 "HRES_NS_E_WMP_INVALID_ASX",
   10597             :                 "The playlist cannot be opened because it is stored in a shared folder on another computer. If possible, move the playlist to the playlists folder on your computer."
   10598             :         },
   10599             :         {
   10600             :                 HRES_NS_E_WMP_ALREADY_IN_USE,
   10601             :                 "HRES_NS_E_WMP_ALREADY_IN_USE",
   10602             :                 "Windows Media Player is already in use. Stop playing any items, close all Player dialog boxes, and then try again."
   10603             :         },
   10604             :         {
   10605             :                 HRES_NS_E_WMP_IMAPI_FAILURE,
   10606             :                 "HRES_NS_E_WMP_IMAPI_FAILURE",
   10607             :                 "Windows Media Player encountered an error while burning. Verify that the burner is connected properly and that the disc is clean and not damaged."
   10608             :         },
   10609             :         {
   10610             :                 HRES_NS_E_WMP_WMDM_FAILURE,
   10611             :                 "HRES_NS_E_WMP_WMDM_FAILURE",
   10612             :                 "Windows Media Player has encountered an unknown error with your portable device. Reconnect your portable device, and then try again."
   10613             :         },
   10614             :         {
   10615             :                 HRES_NS_E_WMP_CODEC_NEEDED_WITH_4CC,
   10616             :                 "HRES_NS_E_WMP_CODEC_NEEDED_WITH_4CC",
   10617             :                 "A codec is required to play this file. To determine if this codec is available to download from the web, click Web Help."
   10618             :         },
   10619             :         {
   10620             :                 HRES_NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG,
   10621             :                 "HRES_NS_E_WMP_CODEC_NEEDED_WITH_FORMATTAG",
   10622             :                 "An audio codec is needed to play this file. To determine if this codec is available to download from the web, click Web Help."
   10623             :         },
   10624             :         {
   10625             :                 HRES_NS_E_WMP_MSSAP_NOT_AVAILABLE,
   10626             :                 "HRES_NS_E_WMP_MSSAP_NOT_AVAILABLE",
   10627             :                 "To play the file, you must install the latest Windows service pack. To install the service pack from the Windows Update website, click Web Help."
   10628             :         },
   10629             :         {
   10630             :                 HRES_NS_E_WMP_WMDM_INTERFACEDEAD,
   10631             :                 "HRES_NS_E_WMP_WMDM_INTERFACEDEAD",
   10632             :                 "Windows Media Player no longer detects a portable device. Reconnect your portable device, and then try again."
   10633             :         },
   10634             :         {
   10635             :                 HRES_NS_E_WMP_WMDM_NOTCERTIFIED,
   10636             :                 "HRES_NS_E_WMP_WMDM_NOTCERTIFIED",
   10637             :                 "Windows Media Player cannot sync the file because the portable device does not support protected files."
   10638             :         },
   10639             :         {
   10640             :                 HRES_NS_E_WMP_WMDM_LICENSE_NOTEXIST,
   10641             :                 "HRES_NS_E_WMP_WMDM_LICENSE_NOTEXIST",
   10642             :                 "This file does not have sync rights. If you obtained this file from an online store, go to the online store to get sync rights."
   10643             :         },
   10644             :         {
   10645             :                 HRES_NS_E_WMP_WMDM_LICENSE_EXPIRED,
   10646             :                 "HRES_NS_E_WMP_WMDM_LICENSE_EXPIRED",
   10647             :                 "Windows Media Player cannot sync the file because the sync rights have expired. Go to the content provider's online store to get new sync rights."
   10648             :         },
   10649             :         {
   10650             :                 HRES_NS_E_WMP_WMDM_BUSY,
   10651             :                 "HRES_NS_E_WMP_WMDM_BUSY",
   10652             :                 "The portable device is already in use. Wait until the current task finishes or quit other programs that might be using the portable device, and then try again."
   10653             :         },
   10654             :         {
   10655             :                 HRES_NS_E_WMP_WMDM_NORIGHTS,
   10656             :                 "HRES_NS_E_WMP_WMDM_NORIGHTS",
   10657             :                 "Windows Media Player cannot sync the file because the content provider or device prohibits it. You might be able to resolve this problem by going to the content provider's online store to get sync rights."
   10658             :         },
   10659             :         {
   10660             :                 HRES_NS_E_WMP_WMDM_INCORRECT_RIGHTS,
   10661             :                 "HRES_NS_E_WMP_WMDM_INCORRECT_RIGHTS",
   10662             :                 "The content provider has not granted you the right to sync this file. Go to the content provider's online store to get sync rights."
   10663             :         },
   10664             :         {
   10665             :                 HRES_NS_E_WMP_IMAPI_GENERIC,
   10666             :                 "HRES_NS_E_WMP_IMAPI_GENERIC",
   10667             :                 "Windows Media Player cannot burn the files to the CD. Verify that the disc is clean and not damaged. If necessary, select a slower recording speed or try a different brand of blank discs."
   10668             :         },
   10669             :         {
   10670             :                 HRES_NS_E_WMP_IMAPI_DEVICE_NOTPRESENT,
   10671             :                 "HRES_NS_E_WMP_IMAPI_DEVICE_NOTPRESENT",
   10672             :                 "Windows Media Player cannot burn the files. Verify that the burner is connected properly, and then try again."
   10673             :         },
   10674             :         {
   10675             :                 HRES_NS_E_WMP_IMAPI_DEVICE_BUSY,
   10676             :                 "HRES_NS_E_WMP_IMAPI_DEVICE_BUSY",
   10677             :                 "Windows Media Player cannot burn the files. Verify that the burner is connected properly and that the disc is clean and not damaged. If the burner is already in use, wait until the current task finishes or quit other programs that might be using the burner."
   10678             :         },
   10679             :         {
   10680             :                 HRES_NS_E_WMP_IMAPI_LOSS_OF_STREAMING,
   10681             :                 "HRES_NS_E_WMP_IMAPI_LOSS_OF_STREAMING",
   10682             :                 "Windows Media Player cannot burn the files to the CD."
   10683             :         },
   10684             :         {
   10685             :                 HRES_NS_E_WMP_SERVER_UNAVAILABLE,
   10686             :                 "HRES_NS_E_WMP_SERVER_UNAVAILABLE",
   10687             :                 "Windows Media Player cannot play the file. The server might not be available or there might be a problem with your network or firewall settings."
   10688             :         },
   10689             :         {
   10690             :                 HRES_NS_E_WMP_FILE_OPEN_FAILED,
   10691             :                 "HRES_NS_E_WMP_FILE_OPEN_FAILED",
   10692             :                 "Windows Media Player encountered a problem while playing the file. For additional assistance, click Web Help."
   10693             :         },
   10694             :         {
   10695             :                 HRES_NS_E_WMP_VERIFY_ONLINE,
   10696             :                 "HRES_NS_E_WMP_VERIFY_ONLINE",
   10697             :                 "Windows Media Player must connect to the Internet to verify the file's media usage rights. Connect to the Internet, and then try again."
   10698             :         },
   10699             :         {
   10700             :                 HRES_NS_E_WMP_SERVER_NOT_RESPONDING,
   10701             :                 "HRES_NS_E_WMP_SERVER_NOT_RESPONDING",
   10702             :                 "Windows Media Player cannot play the file because a network error occurred. The server might not be available. Verify that you are connected to the network and that your proxy settings are correct."
   10703             :         },
   10704             :         {
   10705             :                 HRES_NS_E_WMP_DRM_CORRUPT_BACKUP,
   10706             :                 "HRES_NS_E_WMP_DRM_CORRUPT_BACKUP",
   10707             :                 "Windows Media Player cannot restore your media usage rights because it could not find any backed up rights on your computer."
   10708             :         },
   10709             :         {
   10710             :                 HRES_NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE,
   10711             :                 "HRES_NS_E_WMP_DRM_LICENSE_SERVER_UNAVAILABLE",
   10712             :                 "Windows Media Player cannot download media usage rights because the server is not available (for example, the server might be busy or not online)."
   10713             :         },
   10714             :         {
   10715             :                 HRES_NS_E_WMP_NETWORK_FIREWALL,
   10716             :                 "HRES_NS_E_WMP_NETWORK_FIREWALL",
   10717             :                 "Windows Media Player cannot play the file. A network firewall might be preventing the Player from opening the file by using the UDP transport protocol. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, \"http:\")."
   10718             :         },
   10719             :         {
   10720             :                 HRES_NS_E_WMP_NO_REMOVABLE_MEDIA,
   10721             :                 "HRES_NS_E_WMP_NO_REMOVABLE_MEDIA",
   10722             :                 "Insert the removable media, and then try again."
   10723             :         },
   10724             :         {
   10725             :                 HRES_NS_E_WMP_PROXY_CONNECT_TIMEOUT,
   10726             :                 "HRES_NS_E_WMP_PROXY_CONNECT_TIMEOUT",
   10727             :                 "Windows Media Player cannot play the file because the proxy server is not responding. The proxy server might be temporarily unavailable or your Player proxy settings might not be valid."
   10728             :         },
   10729             :         {
   10730             :                 HRES_NS_E_WMP_NEED_UPGRADE,
   10731             :                 "HRES_NS_E_WMP_NEED_UPGRADE",
   10732             :                 "To play the file, you might need to install a later version of Windows Media Player. On the Help menu, click Check for Updates, and then follow the instructions. For additional assistance, click Web Help."
   10733             :         },
   10734             :         {
   10735             :                 HRES_NS_E_WMP_AUDIO_HW_PROBLEM,
   10736             :                 "HRES_NS_E_WMP_AUDIO_HW_PROBLEM",
   10737             :                 "Windows Media Player cannot play the file because there is a problem with your sound device. There might not be a sound device installed on your computer, it might be in use by another program, or it might not be functioning properly."
   10738             :         },
   10739             :         {
   10740             :                 HRES_NS_E_WMP_INVALID_PROTOCOL,
   10741             :                 "HRES_NS_E_WMP_INVALID_PROTOCOL",
   10742             :                 "Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, \"http:\" or \"rtsp:\")."
   10743             :         },
   10744             :         {
   10745             :                 HRES_NS_E_WMP_INVALID_LIBRARY_ADD,
   10746             :                 "HRES_NS_E_WMP_INVALID_LIBRARY_ADD",
   10747             :                 "Windows Media Player cannot add the file to the library because the file format is not supported."
   10748             :         },
   10749             :         {
   10750             :                 HRES_NS_E_WMP_MMS_NOT_SUPPORTED,
   10751             :                 "HRES_NS_E_WMP_MMS_NOT_SUPPORTED",
   10752             :                 "Windows Media Player cannot play the file because the specified protocol is not supported. If you typed a URL in the Open URL dialog box, try using a different transport protocol (for example, \"mms:\")."
   10753             :         },
   10754             :         {
   10755             :                 HRES_NS_E_WMP_NO_PROTOCOLS_SELECTED,
   10756             :                 "HRES_NS_E_WMP_NO_PROTOCOLS_SELECTED",
   10757             :                 "Windows Media Player cannot play the file because there are no streaming protocols selected. Select one or more protocols, and then try again."
   10758             :         },
   10759             :         {
   10760             :                 HRES_NS_E_WMP_GOFULLSCREEN_FAILED,
   10761             :                 "HRES_NS_E_WMP_GOFULLSCREEN_FAILED",
   10762             :                 "Windows Media Player cannot switch to Full Screen. You might need to adjust your Windows display settings. Open display settings in Control Panel, and then try setting Hardware acceleration to Full."
   10763             :         },
   10764             :         {
   10765             :                 HRES_NS_E_WMP_NETWORK_ERROR,
   10766             :                 "HRES_NS_E_WMP_NETWORK_ERROR",
   10767             :                 "Windows Media Player cannot play the file because a network error occurred. The server might not be available (for example, the server is busy or not online) or you might not be connected to the network."
   10768             :         },
   10769             :         {
   10770             :                 HRES_NS_E_WMP_CONNECT_TIMEOUT,
   10771             :                 "HRES_NS_E_WMP_CONNECT_TIMEOUT",
   10772             :                 "Windows Media Player cannot play the file because the server is not responding. Verify that you are connected to the network, and then try again later."
   10773             :         },
   10774             :         {
   10775             :                 HRES_NS_E_WMP_MULTICAST_DISABLED,
   10776             :                 "HRES_NS_E_WMP_MULTICAST_DISABLED",
   10777             :                 "Windows Media Player cannot play the file because the multicast protocol is not enabled. On the Tools menu, click Options, click the Network tab, and then select the Multicast check box. For additional assistance, click Web Help."
   10778             :         },
   10779             :         {
   10780             :                 HRES_NS_E_WMP_SERVER_DNS_TIMEOUT,
   10781             :                 "HRES_NS_E_WMP_SERVER_DNS_TIMEOUT",
   10782             :                 "Windows Media Player cannot play the file because a network problem occurred. Verify that you are connected to the network, and then try again later."
   10783             :         },
   10784             :         {
   10785             :                 HRES_NS_E_WMP_PROXY_NOT_FOUND,
   10786             :                 "HRES_NS_E_WMP_PROXY_NOT_FOUND",
   10787             :                 "Windows Media Player cannot play the file because the network proxy server cannot be found. Verify that your proxy settings are correct, and then try again."
   10788             :         },
   10789             :         {
   10790             :                 HRES_NS_E_WMP_TAMPERED_CONTENT,
   10791             :                 "HRES_NS_E_WMP_TAMPERED_CONTENT",
   10792             :                 "Windows Media Player cannot play the file because it is corrupted."
   10793             :         },
   10794             :         {
   10795             :                 HRES_NS_E_WMP_OUTOFMEMORY,
   10796             :                 "HRES_NS_E_WMP_OUTOFMEMORY",
   10797             :                 "Your computer is running low on memory. Quit other programs, and then try again."
   10798             :         },
   10799             :         {
   10800             :                 HRES_NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED,
   10801             :                 "HRES_NS_E_WMP_AUDIO_CODEC_NOT_INSTALLED",
   10802             :                 "Windows Media Player cannot play, burn, rip, or sync the file because a required audio codec is not installed on your computer."
   10803             :         },
   10804             :         {
   10805             :                 HRES_NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED,
   10806             :                 "HRES_NS_E_WMP_VIDEO_CODEC_NOT_INSTALLED",
   10807             :                 "Windows Media Player cannot play the file because the required video codec is not installed on your computer."
   10808             :         },
   10809             :         {
   10810             :                 HRES_NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE,
   10811             :                 "HRES_NS_E_WMP_IMAPI_DEVICE_INVALIDTYPE",
   10812             :                 "Windows Media Player cannot burn the files. If the burner is busy, wait for the current task to finish. If necessary, verify that the burner is connected properly and that you have installed the latest device driver."
   10813             :         },
   10814             :         {
   10815             :                 HRES_NS_E_WMP_DRM_DRIVER_AUTH_FAILURE,
   10816             :                 "HRES_NS_E_WMP_DRM_DRIVER_AUTH_FAILURE",
   10817             :                 "Windows Media Player cannot play the protected file because there is a problem with your sound device. Try installing a new device driver or use a different sound device."
   10818             :         },
   10819             :         {
   10820             :                 HRES_NS_E_WMP_NETWORK_RESOURCE_FAILURE,
   10821             :                 "HRES_NS_E_WMP_NETWORK_RESOURCE_FAILURE",
   10822             :                 "Windows Media Player encountered a network error. Restart the Player."
   10823             :         },
   10824             :         {
   10825             :                 HRES_NS_E_WMP_UPGRADE_APPLICATION,
   10826             :                 "HRES_NS_E_WMP_UPGRADE_APPLICATION",
   10827             :                 "Windows Media Player is not installed properly. Reinstall the Player."
   10828             :         },
   10829             :         {
   10830             :                 HRES_NS_E_WMP_UNKNOWN_ERROR,
   10831             :                 "HRES_NS_E_WMP_UNKNOWN_ERROR",
   10832             :                 "Windows Media Player encountered an unknown error. For additional assistance, click Web Help."
   10833             :         },
   10834             :         {
   10835             :                 HRES_NS_E_WMP_INVALID_KEY,
   10836             :                 "HRES_NS_E_WMP_INVALID_KEY",
   10837             :                 "Windows Media Player cannot play the file because the required codec is not valid."
   10838             :         },
   10839             :         {
   10840             :                 HRES_NS_E_WMP_CD_ANOTHER_USER,
   10841             :                 "HRES_NS_E_WMP_CD_ANOTHER_USER",
   10842             :                 "The CD drive is in use by another user. Wait for the task to complete, and then try again."
   10843             :         },
   10844             :         {
   10845             :                 HRES_NS_E_WMP_DRM_NEEDS_AUTHORIZATION,
   10846             :                 "HRES_NS_E_WMP_DRM_NEEDS_AUTHORIZATION",
   10847             :                 "Windows Media Player cannot play, sync, or burn the protected file because a problem occurred with the Windows Media Digital Rights Management (DRM) system. You might need to connect to the Internet to update your DRM components. For additional assistance, click Web Help."
   10848             :         },
   10849             :         {
   10850             :                 HRES_NS_E_WMP_BAD_DRIVER,
   10851             :                 "HRES_NS_E_WMP_BAD_DRIVER",
   10852             :                 "Windows Media Player cannot play the file because there might be a problem with your sound or video device. Try installing an updated device driver."
   10853             :         },
   10854             :         {
   10855             :                 HRES_NS_E_WMP_ACCESS_DENIED,
   10856             :                 "HRES_NS_E_WMP_ACCESS_DENIED",
   10857             :                 "Windows Media Player cannot access the file. The file might be in use, you might not have access to the computer where the file is stored, or your proxy settings might not be correct."
   10858             :         },
   10859             :         {
   10860             :                 HRES_NS_E_WMP_LICENSE_RESTRICTS,
   10861             :                 "HRES_NS_E_WMP_LICENSE_RESTRICTS",
   10862             :                 "The content provider prohibits this action. Go to the content provider's online store to get new media usage rights."
   10863             :         },
   10864             :         {
   10865             :                 HRES_NS_E_WMP_INVALID_REQUEST,
   10866             :                 "HRES_NS_E_WMP_INVALID_REQUEST",
   10867             :                 "Windows Media Player cannot perform the requested action at this time."
   10868             :         },
   10869             :         {
   10870             :                 HRES_NS_E_WMP_CD_STASH_NO_SPACE,
   10871             :                 "HRES_NS_E_WMP_CD_STASH_NO_SPACE",
   10872             :                 "Windows Media Player cannot burn the files because there is not enough free disk space to store the temporary files. Delete some unneeded files on your hard disk, and then try again."
   10873             :         },
   10874             :         {
   10875             :                 HRES_NS_E_WMP_DRM_NEW_HARDWARE,
   10876             :                 "HRES_NS_E_WMP_DRM_NEW_HARDWARE",
   10877             :                 "Your media usage rights have become corrupted or are no longer valid. This might happen if you have replaced hardware components in your computer."
   10878             :         },
   10879             :         {
   10880             :                 HRES_NS_E_WMP_DRM_INVALID_SIG,
   10881             :                 "HRES_NS_E_WMP_DRM_INVALID_SIG",
   10882             :                 "The required Windows Media Digital Rights Management (DRM) component cannot be validated. You might be able resolve the problem by reinstalling the Player."
   10883             :         },
   10884             :         {
   10885             :                 HRES_NS_E_WMP_DRM_CANNOT_RESTORE,
   10886             :                 "HRES_NS_E_WMP_DRM_CANNOT_RESTORE",
   10887             :                 "You have exceeded your restore limit for the day. Try restoring your media usage rights tomorrow."
   10888             :         },
   10889             :         {
   10890             :                 HRES_NS_E_WMP_BURN_DISC_OVERFLOW,
   10891             :                 "HRES_NS_E_WMP_BURN_DISC_OVERFLOW",
   10892             :                 "Some files might not fit on the CD. The required space cannot be calculated accurately because some files might be missing duration information. To ensure the calculation is accurate, play the files that are missing duration information."
   10893             :         },
   10894             :         {
   10895             :                 HRES_NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE,
   10896             :                 "HRES_NS_E_WMP_DRM_GENERIC_LICENSE_FAILURE",
   10897             :                 "Windows Media Player cannot verify the file's media usage rights. If you obtained this file from an online store, go to the online store to get the necessary rights."
   10898             :         },
   10899             :         {
   10900             :                 HRES_NS_E_WMP_DRM_NO_SECURE_CLOCK,
   10901             :                 "HRES_NS_E_WMP_DRM_NO_SECURE_CLOCK",
   10902             :                 "It is not possible to sync because this device's internal clock is not set correctly. To set the clock, select the option to set the device clock on the Privacy tab of the Options dialog box, connect to the Internet, and then sync the device again. For additional assistance, click Web Help."
   10903             :         },
   10904             :         {
   10905             :                 HRES_NS_E_WMP_DRM_NO_RIGHTS,
   10906             :                 "HRES_NS_E_WMP_DRM_NO_RIGHTS",
   10907             :                 "Windows Media Player cannot play, burn, rip, or sync the protected file because you do not have the appropriate rights."
   10908             :         },
   10909             :         {
   10910             :                 HRES_NS_E_WMP_DRM_INDIV_FAILED,
   10911             :                 "HRES_NS_E_WMP_DRM_INDIV_FAILED",
   10912             :                 "Windows Media Player encountered an error during upgrade."
   10913             :         },
   10914             :         {
   10915             :                 HRES_NS_E_WMP_SERVER_NONEWCONNECTIONS,
   10916             :                 "HRES_NS_E_WMP_SERVER_NONEWCONNECTIONS",
   10917             :                 "Windows Media Player cannot connect to the server because it is not accepting any new connections. This could be because it has reached its maximum connection limit. Please try again later."
   10918             :         },
   10919             :         {
   10920             :                 HRES_NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST,
   10921             :                 "HRES_NS_E_WMP_MULTIPLE_ERROR_IN_PLAYLIST",
   10922             :                 "A number of queued files cannot be played. To find information about the problem, click the Now Playing tab, and then click the icon next to each file in the List pane."
   10923             :         },
   10924             :         {
   10925             :                 HRES_NS_E_WMP_IMAPI2_ERASE_FAIL,
   10926             :                 "HRES_NS_E_WMP_IMAPI2_ERASE_FAIL",
   10927             :                 "Windows Media Player encountered an error while erasing the rewritable CD or DVD. Verify that the CD or DVD burner is connected properly and that the disc is clean and not damaged."
   10928             :         },
   10929             :         {
   10930             :                 HRES_NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY,
   10931             :                 "HRES_NS_E_WMP_IMAPI2_ERASE_DEVICE_BUSY",
   10932             :                 "Windows Media Player cannot erase the rewritable CD or DVD. Verify that the CD or DVD burner is connected properly and that the disc is clean and not damaged. If the burner is already in use, wait until the current task finishes or quit other programs that might be using the burner."
   10933             :         },
   10934             :         {
   10935             :                 HRES_NS_E_WMP_DRM_COMPONENT_FAILURE,
   10936             :                 "HRES_NS_E_WMP_DRM_COMPONENT_FAILURE",
   10937             :                 "A Windows Media Digital Rights Management (DRM) component encountered a problem. If you are trying to use a file that you obtained from an online store, try going to the online store and getting the appropriate usage rights."
   10938             :         },
   10939             :         {
   10940             :                 HRES_NS_E_WMP_DRM_NO_DEVICE_CERT,
   10941             :                 "HRES_NS_E_WMP_DRM_NO_DEVICE_CERT",
   10942             :                 "It is not possible to obtain device's certificate. Please contact the device manufacturer for a firmware update or for other steps to resolve this problem."
   10943             :         },
   10944             :         {
   10945             :                 HRES_NS_E_WMP_SERVER_SECURITY_ERROR,
   10946             :                 "HRES_NS_E_WMP_SERVER_SECURITY_ERROR",
   10947             :                 "Windows Media Player encountered an error when connecting to the server. The security information from the server could not be validated."
   10948             :         },
   10949             :         {
   10950             :                 HRES_NS_E_WMP_AUDIO_DEVICE_LOST,
   10951             :                 "HRES_NS_E_WMP_AUDIO_DEVICE_LOST",
   10952             :                 "An audio device was disconnected or reconfigured. Verify that the audio device is connected, and then try to play the item again."
   10953             :         },
   10954             :         {
   10955             :                 HRES_NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE,
   10956             :                 "HRES_NS_E_WMP_IMAPI_MEDIA_INCOMPATIBLE",
   10957             :                 "Windows Media Player could not complete burning because the disc is not compatible with your drive. Try inserting a different kind of recordable media or use a disc that supports a write speed that is compatible with your drive."
   10958             :         },
   10959             :         {
   10960             :                 HRES_NS_E_SYNCWIZ_DEVICE_FULL,
   10961             :                 "HRES_NS_E_SYNCWIZ_DEVICE_FULL",
   10962             :                 "Windows Media Player cannot save the sync settings because your device is full. Delete some unneeded files on your device and then try again."
   10963             :         },
   10964             :         {
   10965             :                 HRES_NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS,
   10966             :                 "HRES_NS_E_SYNCWIZ_CANNOT_CHANGE_SETTINGS",
   10967             :                 "It is not possible to change sync settings at this time. Try again later."
   10968             :         },
   10969             :         {
   10970             :                 HRES_NS_E_TRANSCODE_DELETECACHEERROR,
   10971             :                 "HRES_NS_E_TRANSCODE_DELETECACHEERROR",
   10972             :                 "Windows Media Player cannot delete these files currently. If the Player is synchronizing, wait until it is complete and then try again."
   10973             :         },
   10974             :         {
   10975             :                 HRES_NS_E_CD_NO_BUFFERS_READ,
   10976             :                 "HRES_NS_E_CD_NO_BUFFERS_READ",
   10977             :                 "Windows Media Player could not use digital mode to read the CD. The Player has automatically switched the CD drive to analog mode. To switch back to digital mode, use the Devices tab. For additional assistance, click Web Help."
   10978             :         },
   10979             :         {
   10980             :                 HRES_NS_E_CD_EMPTY_TRACK_QUEUE,
   10981             :                 "HRES_NS_E_CD_EMPTY_TRACK_QUEUE",
   10982             :                 "No CD track was specified for playback."
   10983             :         },
   10984             :         {
   10985             :                 HRES_NS_E_CD_NO_READER,
   10986             :                 "HRES_NS_E_CD_NO_READER",
   10987             :                 "The CD filter was not able to create the CD reader."
   10988             :         },
   10989             :         {
   10990             :                 HRES_NS_E_CD_ISRC_INVALID,
   10991             :                 "HRES_NS_E_CD_ISRC_INVALID",
   10992             :                 "Invalid ISRC code."
   10993             :         },
   10994             :         {
   10995             :                 HRES_NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID,
   10996             :                 "HRES_NS_E_CD_MEDIA_CATALOG_NUMBER_INVALID",
   10997             :                 "Invalid Media Catalog Number."
   10998             :         },
   10999             :         {
   11000             :                 HRES_NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION,
   11001             :                 "HRES_NS_E_SLOW_READ_DIGITAL_WITH_ERRORCORRECTION",
   11002             :                 "Windows Media Player cannot play audio CDs correctly because the CD drive is slow and error correction is turned on. To increase performance, turn off playback error correction for this drive."
   11003             :         },
   11004             :         {
   11005             :                 HRES_NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS,
   11006             :                 "HRES_NS_E_CD_SPEEDDETECT_NOT_ENOUGH_READS",
   11007             :                 "Windows Media Player cannot estimate the CD drive's playback speed because the CD track is too short."
   11008             :         },
   11009             :         {
   11010             :                 HRES_NS_E_CD_QUEUEING_DISABLED,
   11011             :                 "HRES_NS_E_CD_QUEUEING_DISABLED",
   11012             :                 "Cannot queue the CD track because queuing is not enabled."
   11013             :         },
   11014             :         {
   11015             :                 HRES_NS_E_WMP_DRM_ACQUIRING_LICENSE,
   11016             :                 "HRES_NS_E_WMP_DRM_ACQUIRING_LICENSE",
   11017             :                 "Windows Media Player cannot download additional media usage rights until the current download is complete."
   11018             :         },
   11019             :         {
   11020             :                 HRES_NS_E_WMP_DRM_LICENSE_EXPIRED,
   11021             :                 "HRES_NS_E_WMP_DRM_LICENSE_EXPIRED",
   11022             :                 "The media usage rights for this file have expired or are no longer valid. If you obtained the file from an online store, sign in to the store, and then try again."
   11023             :         },
   11024             :         {
   11025             :                 HRES_NS_E_WMP_DRM_LICENSE_NOTACQUIRED,
   11026             :                 "HRES_NS_E_WMP_DRM_LICENSE_NOTACQUIRED",
   11027             :                 "Windows Media Player cannot download the media usage rights for the file. If you obtained the file from an online store, sign in to the store, and then try again."
   11028             :         },
   11029             :         {
   11030             :                 HRES_NS_E_WMP_DRM_LICENSE_NOTENABLED,
   11031             :                 "HRES_NS_E_WMP_DRM_LICENSE_NOTENABLED",
   11032             :                 "The media usage rights for this file are not yet valid. To see when they will become valid, right-click the file in the library, click Properties, and then click the Media Usage Rights tab."
   11033             :         },
   11034             :         {
   11035             :                 HRES_NS_E_WMP_DRM_LICENSE_UNUSABLE,
   11036             :                 "HRES_NS_E_WMP_DRM_LICENSE_UNUSABLE",
   11037             :                 "The media usage rights for this file are not valid. If you obtained this file from an online store, contact the store for assistance."
   11038             :         },
   11039             :         {
   11040             :                 HRES_NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED,
   11041             :                 "HRES_NS_E_WMP_DRM_LICENSE_CONTENT_REVOKED",
   11042             :                 "The content provider has revoked the media usage rights for this file. If you obtained this file from an online store, ask the store if a new version of the file is available."
   11043             :         },
   11044             :         {
   11045             :                 HRES_NS_E_WMP_DRM_LICENSE_NOSAP,
   11046             :                 "HRES_NS_E_WMP_DRM_LICENSE_NOSAP",
   11047             :                 "The media usage rights for this file require a feature that is not supported in your current version of Windows Media Player or your current version of Windows. Try installing the latest version of the Player. If you obtained this file from an online store, contact the store for further assistance."
   11048             :         },
   11049             :         {
   11050             :                 HRES_NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE,
   11051             :                 "HRES_NS_E_WMP_DRM_UNABLE_TO_ACQUIRE_LICENSE",
   11052             :                 "Windows Media Player cannot download media usage rights at this time. Try again later."
   11053             :         },
   11054             :         {
   11055             :                 HRES_NS_E_WMP_LICENSE_REQUIRED,
   11056             :                 "HRES_NS_E_WMP_LICENSE_REQUIRED",
   11057             :                 "Windows Media Player cannot play, burn, or sync the file because the media usage rights are missing. If you obtained the file from an online store, sign in to the store, and then try again."
   11058             :         },
   11059             :         {
   11060             :                 HRES_NS_E_WMP_PROTECTED_CONTENT,
   11061             :                 "HRES_NS_E_WMP_PROTECTED_CONTENT",
   11062             :                 "Windows Media Player cannot play, burn, or sync the file because the media usage rights are missing. If you obtained the file from an online store, sign in to the store, and then try again."
   11063             :         },
   11064             :         {
   11065             :                 HRES_NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED,
   11066             :                 "HRES_NS_E_WMP_POLICY_VALUE_NOT_CONFIGURED",
   11067             :                 "Windows Media Player cannot read a policy. This can occur when the policy does not exist in the registry or when the registry cannot be read."
   11068             :         },
   11069             :         {
   11070             :                 HRES_NS_E_PDA_CANNOT_SYNC_FROM_INTERNET,
   11071             :                 "HRES_NS_E_PDA_CANNOT_SYNC_FROM_INTERNET",
   11072             :                 "Windows Media Player cannot sync content streamed directly from the Internet. If possible, download the file to your computer, and then try to sync the file."
   11073             :         },
   11074             :         {
   11075             :                 HRES_NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST,
   11076             :                 "HRES_NS_E_PDA_CANNOT_SYNC_INVALID_PLAYLIST",
   11077             :                 "This playlist is not valid or is corrupted. Create a new playlist using Windows Media Player, then sync the new playlist instead."
   11078             :         },
   11079             :         {
   11080             :                 HRES_NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE,
   11081             :                 "HRES_NS_E_PDA_FAILED_TO_SYNCHRONIZE_FILE",
   11082             :                 "Windows Media Player encountered a problem while synchronizing the file to the device. For additional assistance, click Web Help."
   11083             :         },
   11084             :         {
   11085             :                 HRES_NS_E_PDA_SYNC_FAILED,
   11086             :                 "HRES_NS_E_PDA_SYNC_FAILED",
   11087             :                 "Windows Media Player encountered an error while synchronizing to the device."
   11088             :         },
   11089             :         {
   11090             :                 HRES_NS_E_PDA_DELETE_FAILED,
   11091             :                 "HRES_NS_E_PDA_DELETE_FAILED",
   11092             :                 "Windows Media Player cannot delete a file from the device."
   11093             :         },
   11094             :         {
   11095             :                 HRES_NS_E_PDA_FAILED_TO_RETRIEVE_FILE,
   11096             :                 "HRES_NS_E_PDA_FAILED_TO_RETRIEVE_FILE",
   11097             :                 "Windows Media Player cannot copy a file from the device to your library."
   11098             :         },
   11099             :         {
   11100             :                 HRES_NS_E_PDA_DEVICE_NOT_RESPONDING,
   11101             :                 "HRES_NS_E_PDA_DEVICE_NOT_RESPONDING",
   11102             :                 "Windows Media Player cannot communicate with the device because the device is not responding. Try reconnecting the device, resetting the device, or contacting the device manufacturer for updated firmware."
   11103             :         },
   11104             :         {
   11105             :                 HRES_NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO,
   11106             :                 "HRES_NS_E_PDA_FAILED_TO_TRANSCODE_PHOTO",
   11107             :                 "Windows Media Player cannot sync the picture to the device because a problem occurred while converting the file to another quality level or format. The original file might be damaged or corrupted."
   11108             :         },
   11109             :         {
   11110             :                 HRES_NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE,
   11111             :                 "HRES_NS_E_PDA_FAILED_TO_ENCRYPT_TRANSCODED_FILE",
   11112             :                 "Windows Media Player cannot convert the file. The file might have been encrypted by the Encrypted File System (EFS). Try decrypting the file first and then synchronizing it. For information about how to decrypt a file, see Windows Help and Support."
   11113             :         },
   11114             :         {
   11115             :                 HRES_NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO,
   11116             :                 "HRES_NS_E_PDA_CANNOT_TRANSCODE_TO_AUDIO",
   11117             :                 "Your device requires that this file be converted in order to play on the device. However, the device either does not support playing audio, or Windows Media Player cannot convert the file to an audio format that is supported by the device."
   11118             :         },
   11119             :         {
   11120             :                 HRES_NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO,
   11121             :                 "HRES_NS_E_PDA_CANNOT_TRANSCODE_TO_VIDEO",
   11122             :                 "Your device requires that this file be converted in order to play on the device. However, the device either does not support playing video, or Windows Media Player cannot convert the file to a video format that is supported by the device."
   11123             :         },
   11124             :         {
   11125             :                 HRES_NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE,
   11126             :                 "HRES_NS_E_PDA_CANNOT_TRANSCODE_TO_IMAGE",
   11127             :                 "Your device requires that this file be converted in order to play on the device. However, the device either does not support displaying pictures, or Windows Media Player cannot convert the file to a picture format that is supported by the device."
   11128             :         },
   11129             :         {
   11130             :                 HRES_NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG,
   11131             :                 "HRES_NS_E_PDA_RETRIEVED_FILE_FILENAME_TOO_LONG",
   11132             :                 "Windows Media Player cannot sync the file to your computer because the file name is too long. Try renaming the file on the device."
   11133             :         },
   11134             :         {
   11135             :                 HRES_NS_E_PDA_CEWMDM_DRM_ERROR,
   11136             :                 "HRES_NS_E_PDA_CEWMDM_DRM_ERROR",
   11137             :                 "Windows Media Player cannot sync the file because the device is not responding. This typically occurs when there is a problem with the device firmware. For additional assistance, click Web Help."
   11138             :         },
   11139             :         {
   11140             :                 HRES_NS_E_INCOMPLETE_PLAYLIST,
   11141             :                 "HRES_NS_E_INCOMPLETE_PLAYLIST",
   11142             :                 "Incomplete playlist."
   11143             :         },
   11144             :         {
   11145             :                 HRES_NS_E_PDA_SYNC_RUNNING,
   11146             :                 "HRES_NS_E_PDA_SYNC_RUNNING",
   11147             :                 "It is not possible to perform the requested action because sync is in progress. You can either stop sync or wait for it to complete, and then try again."
   11148             :         },
   11149             :         {
   11150             :                 HRES_NS_E_PDA_SYNC_LOGIN_ERROR,
   11151             :                 "HRES_NS_E_PDA_SYNC_LOGIN_ERROR",
   11152             :                 "Windows Media Player cannot sync the subscription content because you are not signed in to the online store that provided it. Sign in to the online store, and then try again."
   11153             :         },
   11154             :         {
   11155             :                 HRES_NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND,
   11156             :                 "HRES_NS_E_PDA_TRANSCODE_CODEC_NOT_FOUND",
   11157             :                 "Windows Media Player cannot convert the file to the format required by the device. One or more codecs required to convert the file could not be found."
   11158             :         },
   11159             :         {
   11160             :                 HRES_NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE,
   11161             :                 "HRES_NS_E_CANNOT_SYNC_DRM_TO_NON_JANUS_DEVICE",
   11162             :                 "It is not possible to sync subscription files to this device."
   11163             :         },
   11164             :         {
   11165             :                 HRES_NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING,
   11166             :                 "HRES_NS_E_CANNOT_SYNC_PREVIOUS_SYNC_RUNNING",
   11167             :                 "Your device is operating slowly or is not responding. Until the device responds, it is not possible to sync again. To return the device to normal operation, try disconnecting it from the computer or resetting it."
   11168             :         },
   11169             :         {
   11170             :                 HRES_NS_E_WMP_HWND_NOTFOUND,
   11171             :                 "HRES_NS_E_WMP_HWND_NOTFOUND",
   11172             :                 "The Windows Media Player download manager cannot function properly because the Player main window cannot be found. Try restarting the Player."
   11173             :         },
   11174             :         {
   11175             :                 HRES_NS_E_BKGDOWNLOAD_WRONG_NO_FILES,
   11176             :                 "HRES_NS_E_BKGDOWNLOAD_WRONG_NO_FILES",
   11177             :                 "Windows Media Player encountered a download that has the wrong number of files. This might occur if another program is trying to create jobs with the same signature as the Player."
   11178             :         },
   11179             :         {
   11180             :                 HRES_NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB,
   11181             :                 "HRES_NS_E_BKGDOWNLOAD_COMPLETECANCELLEDJOB",
   11182             :                 "Windows Media Player tried to complete a download that was already canceled. The file will not be available."
   11183             :         },
   11184             :         {
   11185             :                 HRES_NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB,
   11186             :                 "HRES_NS_E_BKGDOWNLOAD_CANCELCOMPLETEDJOB",
   11187             :                 "Windows Media Player tried to cancel a download that was already completed. The file will not be removed."
   11188             :         },
   11189             :         {
   11190             :                 HRES_NS_E_BKGDOWNLOAD_NOJOBPOINTER,
   11191             :                 "HRES_NS_E_BKGDOWNLOAD_NOJOBPOINTER",
   11192             :                 "Windows Media Player is trying to access a download that is not valid."
   11193             :         },
   11194             :         {
   11195             :                 HRES_NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE,
   11196             :                 "HRES_NS_E_BKGDOWNLOAD_INVALIDJOBSIGNATURE",
   11197             :                 "This download was not created by Windows Media Player."
   11198             :         },
   11199             :         {
   11200             :                 HRES_NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE,
   11201             :                 "HRES_NS_E_BKGDOWNLOAD_FAILED_TO_CREATE_TEMPFILE",
   11202             :                 "The Windows Media Player download manager cannot create a temporary file name. This might occur if the path is not valid or if the disk is full."
   11203             :         },
   11204             :         {
   11205             :                 HRES_NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE,
   11206             :                 "HRES_NS_E_BKGDOWNLOAD_PLUGIN_FAILEDINITIALIZE",
   11207             :                 "The Windows Media Player download manager plug-in cannot start. This might occur if the system is out of resources."
   11208             :         },
   11209             :         {
   11210             :                 HRES_NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE,
   11211             :                 "HRES_NS_E_BKGDOWNLOAD_PLUGIN_FAILEDTOMOVEFILE",
   11212             :                 "The Windows Media Player download manager cannot move the file."
   11213             :         },
   11214             :         {
   11215             :                 HRES_NS_E_BKGDOWNLOAD_CALLFUNCFAILED,
   11216             :                 "HRES_NS_E_BKGDOWNLOAD_CALLFUNCFAILED",
   11217             :                 "The Windows Media Player download manager cannot perform a task because the system has no resources to allocate."
   11218             :         },
   11219             :         {
   11220             :                 HRES_NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT,
   11221             :                 "HRES_NS_E_BKGDOWNLOAD_CALLFUNCTIMEOUT",
   11222             :                 "The Windows Media Player download manager cannot perform a task because the task took too long to run."
   11223             :         },
   11224             :         {
   11225             :                 HRES_NS_E_BKGDOWNLOAD_CALLFUNCENDED,
   11226             :                 "HRES_NS_E_BKGDOWNLOAD_CALLFUNCENDED",
   11227             :                 "The Windows Media Player download manager cannot perform a task because the Player is terminating the service. The task will be recovered when the Player restarts."
   11228             :         },
   11229             :         {
   11230             :                 HRES_NS_E_BKGDOWNLOAD_WMDUNPACKFAILED,
   11231             :                 "HRES_NS_E_BKGDOWNLOAD_WMDUNPACKFAILED",
   11232             :                 "The Windows Media Player download manager cannot expand a WMD file. The file will be deleted and the operation will not be completed successfully."
   11233             :         },
   11234             :         {
   11235             :                 HRES_NS_E_BKGDOWNLOAD_FAILEDINITIALIZE,
   11236             :                 "HRES_NS_E_BKGDOWNLOAD_FAILEDINITIALIZE",
   11237             :                 "The Windows Media Player download manager cannot start. This might occur if the system is out of resources."
   11238             :         },
   11239             :         {
   11240             :                 HRES_NS_E_INTERFACE_NOT_REGISTERED_IN_GIT,
   11241             :                 "HRES_NS_E_INTERFACE_NOT_REGISTERED_IN_GIT",
   11242             :                 "Windows Media Player cannot access a required functionality. This might occur if the wrong system files or Player DLLs are loaded."
   11243             :         },
   11244             :         {
   11245             :                 HRES_NS_E_BKGDOWNLOAD_INVALID_FILE_NAME,
   11246             :                 "HRES_NS_E_BKGDOWNLOAD_INVALID_FILE_NAME",
   11247             :                 "Windows Media Player cannot get the file name of the requested download. The requested download will be canceled."
   11248             :         },
   11249             :         {
   11250             :                 HRES_NS_E_IMAGE_DOWNLOAD_FAILED,
   11251             :                 "HRES_NS_E_IMAGE_DOWNLOAD_FAILED",
   11252             :                 "Windows Media Player encountered an error while downloading an image."
   11253             :         },
   11254             :         {
   11255             :                 HRES_NS_E_WMP_UDRM_NOUSERLIST,
   11256             :                 "HRES_NS_E_WMP_UDRM_NOUSERLIST",
   11257             :                 "Windows Media Player cannot update your media usage rights because the Player cannot verify the list of activated users of this computer."
   11258             :         },
   11259             :         {
   11260             :                 HRES_NS_E_WMP_DRM_NOT_ACQUIRING,
   11261             :                 "HRES_NS_E_WMP_DRM_NOT_ACQUIRING",
   11262             :                 "Windows Media Player is trying to acquire media usage rights for a file that is no longer being used. Rights acquisition will stop."
   11263             :         },
   11264             :         {
   11265             :                 HRES_NS_E_WMP_BSTR_TOO_LONG,
   11266             :                 "HRES_NS_E_WMP_BSTR_TOO_LONG",
   11267             :                 "The parameter is not valid."
   11268             :         },
   11269             :         {
   11270             :                 HRES_NS_E_WMP_AUTOPLAY_INVALID_STATE,
   11271             :                 "HRES_NS_E_WMP_AUTOPLAY_INVALID_STATE",
   11272             :                 "The state is not valid for this request."
   11273             :         },
   11274             :         {
   11275             :                 HRES_NS_E_WMP_COMPONENT_REVOKED,
   11276             :                 "HRES_NS_E_WMP_COMPONENT_REVOKED",
   11277             :                 "Windows Media Player cannot play this file until you complete the software component upgrade. After the component has been upgraded, try to play the file again."
   11278             :         },
   11279             :         {
   11280             :                 HRES_NS_E_CURL_NOTSAFE,
   11281             :                 "HRES_NS_E_CURL_NOTSAFE",
   11282             :                 "The URL is not safe for the operation specified."
   11283             :         },
   11284             :         {
   11285             :                 HRES_NS_E_CURL_INVALIDCHAR,
   11286             :                 "HRES_NS_E_CURL_INVALIDCHAR",
   11287             :                 "The URL contains one or more characters that are not valid."
   11288             :         },
   11289             :         {
   11290             :                 HRES_NS_E_CURL_INVALIDHOSTNAME,
   11291             :                 "HRES_NS_E_CURL_INVALIDHOSTNAME",
   11292             :                 "The URL contains a host name that is not valid."
   11293             :         },
   11294             :         {
   11295             :                 HRES_NS_E_CURL_INVALIDPATH,
   11296             :                 "HRES_NS_E_CURL_INVALIDPATH",
   11297             :                 "The URL contains a path that is not valid."
   11298             :         },
   11299             :         {
   11300             :                 HRES_NS_E_CURL_INVALIDSCHEME,
   11301             :                 "HRES_NS_E_CURL_INVALIDSCHEME",
   11302             :                 "The URL contains a scheme that is not valid."
   11303             :         },
   11304             :         {
   11305             :                 HRES_NS_E_CURL_INVALIDURL,
   11306             :                 "HRES_NS_E_CURL_INVALIDURL",
   11307             :                 "The URL is not valid."
   11308             :         },
   11309             :         {
   11310             :                 HRES_NS_E_CURL_CANTWALK,
   11311             :                 "HRES_NS_E_CURL_CANTWALK",
   11312             :                 "Windows Media Player cannot play the file. If you clicked a link on a web page, the link might not be valid."
   11313             :         },
   11314             :         {
   11315             :                 HRES_NS_E_CURL_INVALIDPORT,
   11316             :                 "HRES_NS_E_CURL_INVALIDPORT",
   11317             :                 "The URL port is not valid."
   11318             :         },
   11319             :         {
   11320             :                 HRES_NS_E_CURLHELPER_NOTADIRECTORY,
   11321             :                 "HRES_NS_E_CURLHELPER_NOTADIRECTORY",
   11322             :                 "The URL is not a directory."
   11323             :         },
   11324             :         {
   11325             :                 HRES_NS_E_CURLHELPER_NOTAFILE,
   11326             :                 "HRES_NS_E_CURLHELPER_NOTAFILE",
   11327             :                 "The URL is not a file."
   11328             :         },
   11329             :         {
   11330             :                 HRES_NS_E_CURL_CANTDECODE,
   11331             :                 "HRES_NS_E_CURL_CANTDECODE",
   11332             :                 "The URL contains characters that cannot be decoded. The URL might be truncated or incomplete."
   11333             :         },
   11334             :         {
   11335             :                 HRES_NS_E_CURLHELPER_NOTRELATIVE,
   11336             :                 "HRES_NS_E_CURLHELPER_NOTRELATIVE",
   11337             :                 "The specified URL is not a relative URL."
   11338             :         },
   11339             :         {
   11340             :                 HRES_NS_E_CURL_INVALIDBUFFERSIZE,
   11341             :                 "HRES_NS_E_CURL_INVALIDBUFFERSIZE",
   11342             :                 "The buffer is smaller than the size specified."
   11343             :         },
   11344             :         {
   11345             :                 HRES_NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED,
   11346             :                 "HRES_NS_E_SUBSCRIPTIONSERVICE_PLAYBACK_DISALLOWED",
   11347             :                 "The content provider has not granted you the right to play this file. Go to the content provider's online store to get play rights."
   11348             :         },
   11349             :         {
   11350             :                 HRES_NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES,
   11351             :                 "HRES_NS_E_CANNOT_BUY_OR_DOWNLOAD_FROM_MULTIPLE_SERVICES",
   11352             :                 "Windows Media Player cannot purchase or download content from multiple online stores."
   11353             :         },
   11354             :         {
   11355             :                 HRES_NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT,
   11356             :                 "HRES_NS_E_CANNOT_BUY_OR_DOWNLOAD_CONTENT",
   11357             :                 "The file cannot be purchased or downloaded. The file might not be available from the online store."
   11358             :         },
   11359             :         {
   11360             :                 HRES_NS_E_NOT_CONTENT_PARTNER_TRACK,
   11361             :                 "HRES_NS_E_NOT_CONTENT_PARTNER_TRACK",
   11362             :                 "The provider of this file cannot be identified."
   11363             :         },
   11364             :         {
   11365             :                 HRES_NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE,
   11366             :                 "HRES_NS_E_TRACK_DOWNLOAD_REQUIRES_ALBUM_PURCHASE",
   11367             :                 "The file is only available for download when you buy the entire album."
   11368             :         },
   11369             :         {
   11370             :                 HRES_NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE,
   11371             :                 "HRES_NS_E_TRACK_DOWNLOAD_REQUIRES_PURCHASE",
   11372             :                 "You must buy the file before you can download it."
   11373             :         },
   11374             :         {
   11375             :                 HRES_NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED,
   11376             :                 "HRES_NS_E_TRACK_PURCHASE_MAXIMUM_EXCEEDED",
   11377             :                 "You have exceeded the maximum number of files that can be purchased in a single transaction."
   11378             :         },
   11379             :         {
   11380             :                 HRES_NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED,
   11381             :                 "HRES_NS_E_SUBSCRIPTIONSERVICE_LOGIN_FAILED",
   11382             :                 "Windows Media Player cannot sign in to the online store. Verify that you are using the correct user name and password. If the problem persists, the store might be temporarily unavailable."
   11383             :         },
   11384             :         {
   11385             :                 HRES_NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT,
   11386             :                 "HRES_NS_E_SUBSCRIPTIONSERVICE_DOWNLOAD_TIMEOUT",
   11387             :                 "Windows Media Player cannot download this item because the server is not responding. The server might be temporarily unavailable or the Internet connection might be lost."
   11388             :         },
   11389             :         {
   11390             :                 HRES_NS_E_CONTENT_PARTNER_STILL_INITIALIZING,
   11391             :                 "HRES_NS_E_CONTENT_PARTNER_STILL_INITIALIZING",
   11392             :                 "Content Partner still initializing."
   11393             :         },
   11394             :         {
   11395             :                 HRES_NS_E_OPEN_CONTAINING_FOLDER_FAILED,
   11396             :                 "HRES_NS_E_OPEN_CONTAINING_FOLDER_FAILED",
   11397             :                 "The folder could not be opened. The folder might have been moved or deleted."
   11398             :         },
   11399             :         {
   11400             :                 HRES_NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES,
   11401             :                 "HRES_NS_E_ADVANCEDEDIT_TOO_MANY_PICTURES",
   11402             :                 "Windows Media Player could not add all of the images to the file because the images exceeded the 7 megabyte (MB) limit."
   11403             :         },
   11404             :         {
   11405             :                 HRES_NS_E_REDIRECT,
   11406             :                 "HRES_NS_E_REDIRECT",
   11407             :                 "The client redirected to another server."
   11408             :         },
   11409             :         {
   11410             :                 HRES_NS_E_STALE_PRESENTATION,
   11411             :                 "HRES_NS_E_STALE_PRESENTATION",
   11412             :                 "The streaming media description is no longer current."
   11413             :         },
   11414             :         {
   11415             :                 HRES_NS_E_NAMESPACE_WRONG_PERSIST,
   11416             :                 "HRES_NS_E_NAMESPACE_WRONG_PERSIST",
   11417             :                 "It is not possible to create a persistent namespace node under a transient parent node."
   11418             :         },
   11419             :         {
   11420             :                 HRES_NS_E_NAMESPACE_WRONG_TYPE,
   11421             :                 "HRES_NS_E_NAMESPACE_WRONG_TYPE",
   11422             :                 "It is not possible to store a value in a namespace node that has a different value type."
   11423             :         },
   11424             :         {
   11425             :                 HRES_NS_E_NAMESPACE_NODE_CONFLICT,
   11426             :                 "HRES_NS_E_NAMESPACE_NODE_CONFLICT",
   11427             :                 "It is not possible to remove the root namespace node."
   11428             :         },
   11429             :         {
   11430             :                 HRES_NS_E_NAMESPACE_NODE_NOT_FOUND,
   11431             :                 "HRES_NS_E_NAMESPACE_NODE_NOT_FOUND",
   11432             :                 "The specified namespace node could not be found."
   11433             :         },
   11434             :         {
   11435             :                 HRES_NS_E_NAMESPACE_BUFFER_TOO_SMALL,
   11436             :                 "HRES_NS_E_NAMESPACE_BUFFER_TOO_SMALL",
   11437             :                 "The buffer supplied to hold namespace node string is too small."
   11438             :         },
   11439             :         {
   11440             :                 HRES_NS_E_NAMESPACE_TOO_MANY_CALLBACKS,
   11441             :                 "HRES_NS_E_NAMESPACE_TOO_MANY_CALLBACKS",
   11442             :                 "The callback list on a namespace node is at the maximum size."
   11443             :         },
   11444             :         {
   11445             :                 HRES_NS_E_NAMESPACE_DUPLICATE_CALLBACK,
   11446             :                 "HRES_NS_E_NAMESPACE_DUPLICATE_CALLBACK",
   11447             :                 "It is not possible to register an already-registered callback on a namespace node."
   11448             :         },
   11449             :         {
   11450             :                 HRES_NS_E_NAMESPACE_CALLBACK_NOT_FOUND,
   11451             :                 "HRES_NS_E_NAMESPACE_CALLBACK_NOT_FOUND",
   11452             :                 "Cannot find the callback in the namespace when attempting to remove the callback."
   11453             :         },
   11454             :         {
   11455             :                 HRES_NS_E_NAMESPACE_NAME_TOO_LONG,
   11456             :                 "HRES_NS_E_NAMESPACE_NAME_TOO_LONG",
   11457             :                 "The namespace node name exceeds the allowed maximum length."
   11458             :         },
   11459             :         {
   11460             :                 HRES_NS_E_NAMESPACE_DUPLICATE_NAME,
   11461             :                 "HRES_NS_E_NAMESPACE_DUPLICATE_NAME",
   11462             :                 "Cannot create a namespace node that already exists."
   11463             :         },
   11464             :         {
   11465             :                 HRES_NS_E_NAMESPACE_EMPTY_NAME,
   11466             :                 "HRES_NS_E_NAMESPACE_EMPTY_NAME",
   11467             :                 "The namespace node name cannot be a null string."
   11468             :         },
   11469             :         {
   11470             :                 HRES_NS_E_NAMESPACE_INDEX_TOO_LARGE,
   11471             :                 "HRES_NS_E_NAMESPACE_INDEX_TOO_LARGE",
   11472             :                 "Finding a child namespace node by index failed because the index exceeded the number of children."
   11473             :         },
   11474             :         {
   11475             :                 HRES_NS_E_NAMESPACE_BAD_NAME,
   11476             :                 "HRES_NS_E_NAMESPACE_BAD_NAME",
   11477             :                 "The namespace node name is invalid."
   11478             :         },
   11479             :         {
   11480             :                 HRES_NS_E_NAMESPACE_WRONG_SECURITY,
   11481             :                 "HRES_NS_E_NAMESPACE_WRONG_SECURITY",
   11482             :                 "It is not possible to store a value in a namespace node that has a different security type."
   11483             :         },
   11484             :         {
   11485             :                 HRES_NS_E_CACHE_ARCHIVE_CONFLICT,
   11486             :                 "HRES_NS_E_CACHE_ARCHIVE_CONFLICT",
   11487             :                 "The archive request conflicts with other requests in progress."
   11488             :         },
   11489             :         {
   11490             :                 HRES_NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND,
   11491             :                 "HRES_NS_E_CACHE_ORIGIN_SERVER_NOT_FOUND",
   11492             :                 "The specified origin server cannot be found."
   11493             :         },
   11494             :         {
   11495             :                 HRES_NS_E_CACHE_ORIGIN_SERVER_TIMEOUT,
   11496             :                 "HRES_NS_E_CACHE_ORIGIN_SERVER_TIMEOUT",
   11497             :                 "The specified origin server is not responding."
   11498             :         },
   11499             :         {
   11500             :                 HRES_NS_E_CACHE_NOT_BROADCAST,
   11501             :                 "HRES_NS_E_CACHE_NOT_BROADCAST",
   11502             :                 "The internal code for HTTP status code 412 Precondition Failed due to not broadcast type."
   11503             :         },
   11504             :         {
   11505             :                 HRES_NS_E_CACHE_CANNOT_BE_CACHED,
   11506             :                 "HRES_NS_E_CACHE_CANNOT_BE_CACHED",
   11507             :                 "The internal code for HTTP status code 403 Forbidden due to not cacheable."
   11508             :         },
   11509             :         {
   11510             :                 HRES_NS_E_CACHE_NOT_MODIFIED,
   11511             :                 "HRES_NS_E_CACHE_NOT_MODIFIED",
   11512             :                 "The internal code for HTTP status code 304 Not Modified."
   11513             :         },
   11514             :         {
   11515             :                 HRES_NS_E_CANNOT_REMOVE_PUBLISHING_POINT,
   11516             :                 "HRES_NS_E_CANNOT_REMOVE_PUBLISHING_POINT",
   11517             :                 "It is not possible to remove a cache or proxy publishing point."
   11518             :         },
   11519             :         {
   11520             :                 HRES_NS_E_CANNOT_REMOVE_PLUGIN,
   11521             :                 "HRES_NS_E_CANNOT_REMOVE_PLUGIN",
   11522             :                 "It is not possible to remove the last instance of a type of plug-in."
   11523             :         },
   11524             :         {
   11525             :                 HRES_NS_E_WRONG_PUBLISHING_POINT_TYPE,
   11526             :                 "HRES_NS_E_WRONG_PUBLISHING_POINT_TYPE",
   11527             :                 "Cache and proxy publishing points do not support this property or method."
   11528             :         },
   11529             :         {
   11530             :                 HRES_NS_E_UNSUPPORTED_LOAD_TYPE,
   11531             :                 "HRES_NS_E_UNSUPPORTED_LOAD_TYPE",
   11532             :                 "The plug-in does not support the specified load type."
   11533             :         },
   11534             :         {
   11535             :                 HRES_NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION,
   11536             :                 "HRES_NS_E_INVALID_PLUGIN_LOAD_TYPE_CONFIGURATION",
   11537             :                 "The plug-in does not support any load types. The plug-in must support at least one load type."
   11538             :         },
   11539             :         {
   11540             :                 HRES_NS_E_INVALID_PUBLISHING_POINT_NAME,
   11541             :                 "HRES_NS_E_INVALID_PUBLISHING_POINT_NAME",
   11542             :                 "The publishing point name is invalid."
   11543             :         },
   11544             :         {
   11545             :                 HRES_NS_E_TOO_MANY_MULTICAST_SINKS,
   11546             :                 "HRES_NS_E_TOO_MANY_MULTICAST_SINKS",
   11547             :                 "Only one multicast data writer plug-in can be enabled for a publishing point."
   11548             :         },
   11549             :         {
   11550             :                 HRES_NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED,
   11551             :                 "HRES_NS_E_PUBLISHING_POINT_INVALID_REQUEST_WHILE_STARTED",
   11552             :                 "The requested operation cannot be completed while the publishing point is started."
   11553             :         },
   11554             :         {
   11555             :                 HRES_NS_E_MULTICAST_PLUGIN_NOT_ENABLED,
   11556             :                 "HRES_NS_E_MULTICAST_PLUGIN_NOT_ENABLED",
   11557             :                 "A multicast data writer plug-in must be enabled in order for this operation to be completed."
   11558             :         },
   11559             :         {
   11560             :                 HRES_NS_E_INVALID_OPERATING_SYSTEM_VERSION,
   11561             :                 "HRES_NS_E_INVALID_OPERATING_SYSTEM_VERSION",
   11562             :                 "This feature requires Windows Server 2003, Enterprise Edition."
   11563             :         },
   11564             :         {
   11565             :                 HRES_NS_E_PUBLISHING_POINT_REMOVED,
   11566             :                 "HRES_NS_E_PUBLISHING_POINT_REMOVED",
   11567             :                 "The requested operation cannot be completed because the specified publishing point has been removed."
   11568             :         },
   11569             :         {
   11570             :                 HRES_NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST,
   11571             :                 "HRES_NS_E_INVALID_PUSH_PUBLISHING_POINT_START_REQUEST",
   11572             :                 "Push publishing points are started when the encoder starts pushing the stream. This publishing point cannot be started by the server administrator."
   11573             :         },
   11574             :         {
   11575             :                 HRES_NS_E_UNSUPPORTED_LANGUAGE,
   11576             :                 "HRES_NS_E_UNSUPPORTED_LANGUAGE",
   11577             :                 "The specified language is not supported."
   11578             :         },
   11579             :         {
   11580             :                 HRES_NS_E_WRONG_OS_VERSION,
   11581             :                 "HRES_NS_E_WRONG_OS_VERSION",
   11582             :                 "Windows Media Services will only run on Windows Server 2003, Standard Edition and Windows Server 2003, Enterprise Edition."
   11583             :         },
   11584             :         {
   11585             :                 HRES_NS_E_PUBLISHING_POINT_STOPPED,
   11586             :                 "HRES_NS_E_PUBLISHING_POINT_STOPPED",
   11587             :                 "The operation cannot be completed because the publishing point has been stopped."
   11588             :         },
   11589             :         {
   11590             :                 HRES_NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING,
   11591             :                 "HRES_NS_E_PLAYLIST_ENTRY_ALREADY_PLAYING",
   11592             :                 "The playlist entry is already playing."
   11593             :         },
   11594             :         {
   11595             :                 HRES_NS_E_EMPTY_PLAYLIST,
   11596             :                 "HRES_NS_E_EMPTY_PLAYLIST",
   11597             :                 "The playlist or directory you are requesting does not contain content."
   11598             :         },
   11599             :         {
   11600             :                 HRES_NS_E_PLAYLIST_PARSE_FAILURE,
   11601             :                 "HRES_NS_E_PLAYLIST_PARSE_FAILURE",
   11602             :                 "The server was unable to parse the requested playlist file."
   11603             :         },
   11604             :         {
   11605             :                 HRES_NS_E_PLAYLIST_UNSUPPORTED_ENTRY,
   11606             :                 "HRES_NS_E_PLAYLIST_UNSUPPORTED_ENTRY",
   11607             :                 "The requested operation is not supported for this type of playlist entry."
   11608             :         },
   11609             :         {
   11610             :                 HRES_NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST,
   11611             :                 "HRES_NS_E_PLAYLIST_ENTRY_NOT_IN_PLAYLIST",
   11612             :                 "Cannot jump to a playlist entry that is not inserted in the playlist."
   11613             :         },
   11614             :         {
   11615             :                 HRES_NS_E_PLAYLIST_ENTRY_SEEK,
   11616             :                 "HRES_NS_E_PLAYLIST_ENTRY_SEEK",
   11617             :                 "Cannot seek to the desired playlist entry."
   11618             :         },
   11619             :         {
   11620             :                 HRES_NS_E_PLAYLIST_RECURSIVE_PLAYLISTS,
   11621             :                 "HRES_NS_E_PLAYLIST_RECURSIVE_PLAYLISTS",
   11622             :                 "Cannot play recursive playlist."
   11623             :         },
   11624             :         {
   11625             :                 HRES_NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS,
   11626             :                 "HRES_NS_E_PLAYLIST_TOO_MANY_NESTED_PLAYLISTS",
   11627             :                 "The number of nested playlists exceeded the limit the server can handle."
   11628             :         },
   11629             :         {
   11630             :                 HRES_NS_E_PLAYLIST_SHUTDOWN,
   11631             :                 "HRES_NS_E_PLAYLIST_SHUTDOWN",
   11632             :                 "Cannot execute the requested operation because the playlist has been shut down by the Media Server."
   11633             :         },
   11634             :         {
   11635             :                 HRES_NS_E_PLAYLIST_END_RECEDING,
   11636             :                 "HRES_NS_E_PLAYLIST_END_RECEDING",
   11637             :                 "The playlist has ended while receding."
   11638             :         },
   11639             :         {
   11640             :                 HRES_NS_E_DATAPATH_NO_SINK,
   11641             :                 "HRES_NS_E_DATAPATH_NO_SINK",
   11642             :                 "The data path does not have an associated data writer plug-in."
   11643             :         },
   11644             :         {
   11645             :                 HRES_NS_E_INVALID_PUSH_TEMPLATE,
   11646             :                 "HRES_NS_E_INVALID_PUSH_TEMPLATE",
   11647             :                 "The specified push template is invalid."
   11648             :         },
   11649             :         {
   11650             :                 HRES_NS_E_INVALID_PUSH_PUBLISHING_POINT,
   11651             :                 "HRES_NS_E_INVALID_PUSH_PUBLISHING_POINT",
   11652             :                 "The specified push publishing point is invalid."
   11653             :         },
   11654             :         {
   11655             :                 HRES_NS_E_CRITICAL_ERROR,
   11656             :                 "HRES_NS_E_CRITICAL_ERROR",
   11657             :                 "The requested operation cannot be performed because the server or publishing point is in a critical error state."
   11658             :         },
   11659             :         {
   11660             :                 HRES_NS_E_NO_NEW_CONNECTIONS,
   11661             :                 "HRES_NS_E_NO_NEW_CONNECTIONS",
   11662             :                 "The content cannot be played because the server is not currently accepting connections. Try connecting at a later time."
   11663             :         },
   11664             :         {
   11665             :                 HRES_NS_E_WSX_INVALID_VERSION,
   11666             :                 "HRES_NS_E_WSX_INVALID_VERSION",
   11667             :                 "The version of this playlist is not supported by the server."
   11668             :         },
   11669             :         {
   11670             :                 HRES_NS_E_HEADER_MISMATCH,
   11671             :                 "HRES_NS_E_HEADER_MISMATCH",
   11672             :                 "The command does not apply to the current media header user by a server component."
   11673             :         },
   11674             :         {
   11675             :                 HRES_NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME,
   11676             :                 "HRES_NS_E_PUSH_DUPLICATE_PUBLISHING_POINT_NAME",
   11677             :                 "The specified publishing point name is already in use."
   11678             :         },
   11679             :         {
   11680             :                 HRES_NS_E_NO_SCRIPT_ENGINE,
   11681             :                 "HRES_NS_E_NO_SCRIPT_ENGINE",
   11682             :                 "There is no script engine available for this file."
   11683             :         },
   11684             :         {
   11685             :                 HRES_NS_E_PLUGIN_ERROR_REPORTED,
   11686             :                 "HRES_NS_E_PLUGIN_ERROR_REPORTED",
   11687             :                 "The plug-in has reported an error. See the Troubleshooting tab or the NT Application Event Log for details."
   11688             :         },
   11689             :         {
   11690             :                 HRES_NS_E_SOURCE_PLUGIN_NOT_FOUND,
   11691             :                 "HRES_NS_E_SOURCE_PLUGIN_NOT_FOUND",
   11692             :                 "No enabled data source plug-in is available to access the requested content."
   11693             :         },
   11694             :         {
   11695             :                 HRES_NS_E_PLAYLIST_PLUGIN_NOT_FOUND,
   11696             :                 "HRES_NS_E_PLAYLIST_PLUGIN_NOT_FOUND",
   11697             :                 "No enabled playlist parser plug-in is available to access the requested content."
   11698             :         },
   11699             :         {
   11700             :                 HRES_NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED,
   11701             :                 "HRES_NS_E_DATA_SOURCE_ENUMERATION_NOT_SUPPORTED",
   11702             :                 "The data source plug-in does not support enumeration."
   11703             :         },
   11704             :         {
   11705             :                 HRES_NS_E_MEDIA_PARSER_INVALID_FORMAT,
   11706             :                 "HRES_NS_E_MEDIA_PARSER_INVALID_FORMAT",
   11707             :                 "The server cannot stream the selected file because it is either damaged or corrupt. Select a different file."
   11708             :         },
   11709             :         {
   11710             :                 HRES_NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED,
   11711             :                 "HRES_NS_E_SCRIPT_DEBUGGER_NOT_INSTALLED",
   11712             :                 "The plug-in cannot be enabled because a compatible script debugger is not installed on this system. Install a script debugger, or disable the script debugger option on the general tab of the plug-in's properties page and try again."
   11713             :         },
   11714             :         {
   11715             :                 HRES_NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER,
   11716             :                 "HRES_NS_E_FEATURE_REQUIRES_ENTERPRISE_SERVER",
   11717             :                 "The plug-in cannot be loaded because it requires Windows Server 2003, Enterprise Edition."
   11718             :         },
   11719             :         {
   11720             :                 HRES_NS_E_WIZARD_RUNNING,
   11721             :                 "HRES_NS_E_WIZARD_RUNNING",
   11722             :                 "Another wizard is currently running. Please close the other wizard or wait until it finishes before attempting to run this wizard again."
   11723             :         },
   11724             :         {
   11725             :                 HRES_NS_E_INVALID_LOG_URL,
   11726             :                 "HRES_NS_E_INVALID_LOG_URL",
   11727             :                 "Invalid log URL. Multicast logging URL must look like \"http://servername/isapibackend.dll\"."
   11728             :         },
   11729             :         {
   11730             :                 HRES_NS_E_INVALID_MTU_RANGE,
   11731             :                 "HRES_NS_E_INVALID_MTU_RANGE",
   11732             :                 "Invalid MTU specified. The valid range for maximum packet size is between 36 and 65507 bytes."
   11733             :         },
   11734             :         {
   11735             :                 HRES_NS_E_INVALID_PLAY_STATISTICS,
   11736             :                 "HRES_NS_E_INVALID_PLAY_STATISTICS",
   11737             :                 "Invalid play statistics for logging."
   11738             :         },
   11739             :         {
   11740             :                 HRES_NS_E_LOG_NEED_TO_BE_SKIPPED,
   11741             :                 "HRES_NS_E_LOG_NEED_TO_BE_SKIPPED",
   11742             :                 "The log needs to be skipped."
   11743             :         },
   11744             :         {
   11745             :                 HRES_NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED,
   11746             :                 "HRES_NS_E_HTTP_TEXT_DATACONTAINER_SIZE_LIMIT_EXCEEDED",
   11747             :                 "The size of the data exceeded the limit the WMS HTTP Download Data Source plugin can handle."
   11748             :         },
   11749             :         {
   11750             :                 HRES_NS_E_PORT_IN_USE,
   11751             :                 "HRES_NS_E_PORT_IN_USE",
   11752             :                 "One usage of each socket address (protocol/network address/port) is permitted. Verify that other services or applications are not attempting to use the same port and then try to enable the plug-in again."
   11753             :         },
   11754             :         {
   11755             :                 HRES_NS_E_PORT_IN_USE_HTTP,
   11756             :                 "HRES_NS_E_PORT_IN_USE_HTTP",
   11757             :                 "One usage of each socket address (protocol/network address/port) is permitted. Verify that other services (such as IIS) or applications are not attempting to use the same port and then try to enable the plug-in again."
   11758             :         },
   11759             :         {
   11760             :                 HRES_NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE,
   11761             :                 "HRES_NS_E_HTTP_TEXT_DATACONTAINER_INVALID_SERVER_RESPONSE",
   11762             :                 "The WMS HTTP Download Data Source plugin was unable to receive the remote server's response."
   11763             :         },
   11764             :         {
   11765             :                 HRES_NS_E_ARCHIVE_REACH_QUOTA,
   11766             :                 "HRES_NS_E_ARCHIVE_REACH_QUOTA",
   11767             :                 "The archive plug-in has reached its quota."
   11768             :         },
   11769             :         {
   11770             :                 HRES_NS_E_ARCHIVE_ABORT_DUE_TO_BCAST,
   11771             :                 "HRES_NS_E_ARCHIVE_ABORT_DUE_TO_BCAST",
   11772             :                 "The archive plug-in aborted because the source was from broadcast."
   11773             :         },
   11774             :         {
   11775             :                 HRES_NS_E_ARCHIVE_GAP_DETECTED,
   11776             :                 "HRES_NS_E_ARCHIVE_GAP_DETECTED",
   11777             :                 "The archive plug-in detected an interrupt in the source."
   11778             :         },
   11779             :         {
   11780             :                 HRES_NS_E_AUTHORIZATION_FILE_NOT_FOUND,
   11781             :                 "HRES_NS_E_AUTHORIZATION_FILE_NOT_FOUND",
   11782             :                 "The system cannot find the file specified."
   11783             :         },
   11784             :         {
   11785             :                 HRES_NS_E_BAD_MARKIN,
   11786             :                 "HRES_NS_E_BAD_MARKIN",
   11787             :                 "The mark-in time should be greater than 0 and less than the mark-out time."
   11788             :         },
   11789             :         {
   11790             :                 HRES_NS_E_BAD_MARKOUT,
   11791             :                 "HRES_NS_E_BAD_MARKOUT",
   11792             :                 "The mark-out time should be greater than the mark-in time and less than the file duration."
   11793             :         },
   11794             :         {
   11795             :                 HRES_NS_E_NOMATCHING_MEDIASOURCE,
   11796             :                 "HRES_NS_E_NOMATCHING_MEDIASOURCE",
   11797             :                 "No matching media type is found in the source %1."
   11798             :         },
   11799             :         {
   11800             :                 HRES_NS_E_UNSUPPORTED_SOURCETYPE,
   11801             :                 "HRES_NS_E_UNSUPPORTED_SOURCETYPE",
   11802             :                 "The specified source type is not supported."
   11803             :         },
   11804             :         {
   11805             :                 HRES_NS_E_TOO_MANY_AUDIO,
   11806             :                 "HRES_NS_E_TOO_MANY_AUDIO",
   11807             :                 "It is not possible to specify more than one audio input."
   11808             :         },
   11809             :         {
   11810             :                 HRES_NS_E_TOO_MANY_VIDEO,
   11811             :                 "HRES_NS_E_TOO_MANY_VIDEO",
   11812             :                 "It is not possible to specify more than two video inputs."
   11813             :         },
   11814             :         {
   11815             :                 HRES_NS_E_NOMATCHING_ELEMENT,
   11816             :                 "HRES_NS_E_NOMATCHING_ELEMENT",
   11817             :                 "No matching element is found in the list."
   11818             :         },
   11819             :         {
   11820             :                 HRES_NS_E_MISMATCHED_MEDIACONTENT,
   11821             :                 "HRES_NS_E_MISMATCHED_MEDIACONTENT",
   11822             :                 "The profile's media types must match the media types defined for the session."
   11823             :         },
   11824             :         {
   11825             :                 HRES_NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP,
   11826             :                 "HRES_NS_E_CANNOT_DELETE_ACTIVE_SOURCEGROUP",
   11827             :                 "It is not possible to remove an active source while encoding."
   11828             :         },
   11829             :         {
   11830             :                 HRES_NS_E_AUDIODEVICE_BUSY,
   11831             :                 "HRES_NS_E_AUDIODEVICE_BUSY",
   11832             :                 "It is not possible to open the specified audio capture device because it is currently in use."
   11833             :         },
   11834             :         {
   11835             :                 HRES_NS_E_AUDIODEVICE_UNEXPECTED,
   11836             :                 "HRES_NS_E_AUDIODEVICE_UNEXPECTED",
   11837             :                 "It is not possible to open the specified audio capture device because an unexpected error has occurred."
   11838             :         },
   11839             :         {
   11840             :                 HRES_NS_E_AUDIODEVICE_BADFORMAT,
   11841             :                 "HRES_NS_E_AUDIODEVICE_BADFORMAT",
   11842             :                 "The audio capture device does not support the specified audio format."
   11843             :         },
   11844             :         {
   11845             :                 HRES_NS_E_VIDEODEVICE_BUSY,
   11846             :                 "HRES_NS_E_VIDEODEVICE_BUSY",
   11847             :                 "It is not possible to open the specified video capture device because it is currently in use."
   11848             :         },
   11849             :         {
   11850             :                 HRES_NS_E_VIDEODEVICE_UNEXPECTED,
   11851             :                 "HRES_NS_E_VIDEODEVICE_UNEXPECTED",
   11852             :                 "It is not possible to open the specified video capture device because an unexpected error has occurred."
   11853             :         },
   11854             :         {
   11855             :                 HRES_NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING,
   11856             :                 "HRES_NS_E_INVALIDCALL_WHILE_ENCODER_RUNNING",
   11857             :                 "This operation is not allowed while encoding."
   11858             :         },
   11859             :         {
   11860             :                 HRES_NS_E_NO_PROFILE_IN_SOURCEGROUP,
   11861             :                 "HRES_NS_E_NO_PROFILE_IN_SOURCEGROUP",
   11862             :                 "No profile is set for the source."
   11863             :         },
   11864             :         {
   11865             :                 HRES_NS_E_VIDEODRIVER_UNSTABLE,
   11866             :                 "HRES_NS_E_VIDEODRIVER_UNSTABLE",
   11867             :                 "The video capture driver returned an unrecoverable error. It is now in an unstable state."
   11868             :         },
   11869             :         {
   11870             :                 HRES_NS_E_VIDCAPSTARTFAILED,
   11871             :                 "HRES_NS_E_VIDCAPSTARTFAILED",
   11872             :                 "It was not possible to start the video device."
   11873             :         },
   11874             :         {
   11875             :                 HRES_NS_E_VIDSOURCECOMPRESSION,
   11876             :                 "HRES_NS_E_VIDSOURCECOMPRESSION",
   11877             :                 "The video source does not support the requested output format or color depth."
   11878             :         },
   11879             :         {
   11880             :                 HRES_NS_E_VIDSOURCESIZE,
   11881             :                 "HRES_NS_E_VIDSOURCESIZE",
   11882             :                 "The video source does not support the requested capture size."
   11883             :         },
   11884             :         {
   11885             :                 HRES_NS_E_ICMQUERYFORMAT,
   11886             :                 "HRES_NS_E_ICMQUERYFORMAT",
   11887             :                 "It was not possible to obtain output information from the video compressor."
   11888             :         },
   11889             :         {
   11890             :                 HRES_NS_E_VIDCAPCREATEWINDOW,
   11891             :                 "HRES_NS_E_VIDCAPCREATEWINDOW",
   11892             :                 "It was not possible to create a video capture window."
   11893             :         },
   11894             :         {
   11895             :                 HRES_NS_E_VIDCAPDRVINUSE,
   11896             :                 "HRES_NS_E_VIDCAPDRVINUSE",
   11897             :                 "There is already a stream active on this video device."
   11898             :         },
   11899             :         {
   11900             :                 HRES_NS_E_NO_MEDIAFORMAT_IN_SOURCE,
   11901             :                 "HRES_NS_E_NO_MEDIAFORMAT_IN_SOURCE",
   11902             :                 "No media format is set in source."
   11903             :         },
   11904             :         {
   11905             :                 HRES_NS_E_NO_VALID_OUTPUT_STREAM,
   11906             :                 "HRES_NS_E_NO_VALID_OUTPUT_STREAM",
   11907             :                 "Cannot find a valid output stream from the source."
   11908             :         },
   11909             :         {
   11910             :                 HRES_NS_E_NO_VALID_SOURCE_PLUGIN,
   11911             :                 "HRES_NS_E_NO_VALID_SOURCE_PLUGIN",
   11912             :                 "It was not possible to find a valid source plug-in for the specified source."
   11913             :         },
   11914             :         {
   11915             :                 HRES_NS_E_NO_ACTIVE_SOURCEGROUP,
   11916             :                 "HRES_NS_E_NO_ACTIVE_SOURCEGROUP",
   11917             :                 "No source is currently active."
   11918             :         },
   11919             :         {
   11920             :                 HRES_NS_E_NO_SCRIPT_STREAM,
   11921             :                 "HRES_NS_E_NO_SCRIPT_STREAM",
   11922             :                 "No script stream is set in the current source."
   11923             :         },
   11924             :         {
   11925             :                 HRES_NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING,
   11926             :                 "HRES_NS_E_INVALIDCALL_WHILE_ARCHIVAL_RUNNING",
   11927             :                 "This operation is not allowed while archiving."
   11928             :         },
   11929             :         {
   11930             :                 HRES_NS_E_INVALIDPACKETSIZE,
   11931             :                 "HRES_NS_E_INVALIDPACKETSIZE",
   11932             :                 "The setting for the maximum packet size is not valid."
   11933             :         },
   11934             :         {
   11935             :                 HRES_NS_E_PLUGIN_CLSID_INVALID,
   11936             :                 "HRES_NS_E_PLUGIN_CLSID_INVALID",
   11937             :                 "The plug-in CLSID specified is not valid."
   11938             :         },
   11939             :         {
   11940             :                 HRES_NS_E_UNSUPPORTED_ARCHIVETYPE,
   11941             :                 "HRES_NS_E_UNSUPPORTED_ARCHIVETYPE",
   11942             :                 "This archive type is not supported."
   11943             :         },
   11944             :         {
   11945             :                 HRES_NS_E_UNSUPPORTED_ARCHIVEOPERATION,
   11946             :                 "HRES_NS_E_UNSUPPORTED_ARCHIVEOPERATION",
   11947             :                 "This archive operation is not supported."
   11948             :         },
   11949             :         {
   11950             :                 HRES_NS_E_ARCHIVE_FILENAME_NOTSET,
   11951             :                 "HRES_NS_E_ARCHIVE_FILENAME_NOTSET",
   11952             :                 "The local archive file name was not set."
   11953             :         },
   11954             :         {
   11955             :                 HRES_NS_E_SOURCEGROUP_NOTPREPARED,
   11956             :                 "HRES_NS_E_SOURCEGROUP_NOTPREPARED",
   11957             :                 "The source is not yet prepared."
   11958             :         },
   11959             :         {
   11960             :                 HRES_NS_E_PROFILE_MISMATCH,
   11961             :                 "HRES_NS_E_PROFILE_MISMATCH",
   11962             :                 "Profiles on the sources do not match."
   11963             :         },
   11964             :         {
   11965             :                 HRES_NS_E_INCORRECTCLIPSETTINGS,
   11966             :                 "HRES_NS_E_INCORRECTCLIPSETTINGS",
   11967             :                 "The specified crop values are not valid."
   11968             :         },
   11969             :         {
   11970             :                 HRES_NS_E_NOSTATSAVAILABLE,
   11971             :                 "HRES_NS_E_NOSTATSAVAILABLE",
   11972             :                 "No statistics are available at this time."
   11973             :         },
   11974             :         {
   11975             :                 HRES_NS_E_NOTARCHIVING,
   11976             :                 "HRES_NS_E_NOTARCHIVING",
   11977             :                 "The encoder is not archiving."
   11978             :         },
   11979             :         {
   11980             :                 HRES_NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED,
   11981             :                 "HRES_NS_E_INVALIDCALL_WHILE_ENCODER_STOPPED",
   11982             :                 "This operation is only allowed during encoding."
   11983             :         },
   11984             :         {
   11985             :                 HRES_NS_E_NOSOURCEGROUPS,
   11986             :                 "HRES_NS_E_NOSOURCEGROUPS",
   11987             :                 "This SourceGroupCollection doesn't contain any SourceGroups."
   11988             :         },
   11989             :         {
   11990             :                 HRES_NS_E_INVALIDINPUTFPS,
   11991             :                 "HRES_NS_E_INVALIDINPUTFPS",
   11992             :                 "This source does not have a frame rate of 30 fps. Therefore, it is not possible to apply the inverse telecine filter to the source."
   11993             :         },
   11994             :         {
   11995             :                 HRES_NS_E_NO_DATAVIEW_SUPPORT,
   11996             :                 "HRES_NS_E_NO_DATAVIEW_SUPPORT",
   11997             :                 "It is not possible to display your source or output video in the Video panel."
   11998             :         },
   11999             :         {
   12000             :                 HRES_NS_E_CODEC_UNAVAILABLE,
   12001             :                 "HRES_NS_E_CODEC_UNAVAILABLE",
   12002             :                 "One or more codecs required to open this content could not be found."
   12003             :         },
   12004             :         {
   12005             :                 HRES_NS_E_ARCHIVE_SAME_AS_INPUT,
   12006             :                 "HRES_NS_E_ARCHIVE_SAME_AS_INPUT",
   12007             :                 "The archive file has the same name as an input file. Change one of the names before continuing."
   12008             :         },
   12009             :         {
   12010             :                 HRES_NS_E_SOURCE_NOTSPECIFIED,
   12011             :                 "HRES_NS_E_SOURCE_NOTSPECIFIED",
   12012             :                 "The source has not been set up completely."
   12013             :         },
   12014             :         {
   12015             :                 HRES_NS_E_NO_REALTIME_TIMECOMPRESSION,
   12016             :                 "HRES_NS_E_NO_REALTIME_TIMECOMPRESSION",
   12017             :                 "It is not possible to apply time compression to a broadcast session."
   12018             :         },
   12019             :         {
   12020             :                 HRES_NS_E_UNSUPPORTED_ENCODER_DEVICE,
   12021             :                 "HRES_NS_E_UNSUPPORTED_ENCODER_DEVICE",
   12022             :                 "It is not possible to open this device."
   12023             :         },
   12024             :         {
   12025             :                 HRES_NS_E_UNEXPECTED_DISPLAY_SETTINGS,
   12026             :                 "HRES_NS_E_UNEXPECTED_DISPLAY_SETTINGS",
   12027             :                 "It is not possible to start encoding because the display size or color has changed since the current session was defined. Restore the previous settings or create a new session."
   12028             :         },
   12029             :         {
   12030             :                 HRES_NS_E_NO_AUDIODATA,
   12031             :                 "HRES_NS_E_NO_AUDIODATA",
   12032             :                 "No audio data has been received for several seconds. Check the audio source and restart the encoder."
   12033             :         },
   12034             :         {
   12035             :                 HRES_NS_E_INPUTSOURCE_PROBLEM,
   12036             :                 "HRES_NS_E_INPUTSOURCE_PROBLEM",
   12037             :                 "One or all of the specified sources are not working properly. Check that the sources are configured correctly."
   12038             :         },
   12039             :         {
   12040             :                 HRES_NS_E_WME_VERSION_MISMATCH,
   12041             :                 "HRES_NS_E_WME_VERSION_MISMATCH",
   12042             :                 "The supplied configuration file is not supported by this version of the encoder."
   12043             :         },
   12044             :         {
   12045             :                 HRES_NS_E_NO_REALTIME_PREPROCESS,
   12046             :                 "HRES_NS_E_NO_REALTIME_PREPROCESS",
   12047             :                 "It is not possible to use image preprocessing with live encoding."
   12048             :         },
   12049             :         {
   12050             :                 HRES_NS_E_NO_REPEAT_PREPROCESS,
   12051             :                 "HRES_NS_E_NO_REPEAT_PREPROCESS",
   12052             :                 "It is not possible to use two-pass encoding when the source is set to loop."
   12053             :         },
   12054             :         {
   12055             :                 HRES_NS_E_CANNOT_PAUSE_LIVEBROADCAST,
   12056             :                 "HRES_NS_E_CANNOT_PAUSE_LIVEBROADCAST",
   12057             :                 "It is not possible to pause encoding during a broadcast."
   12058             :         },
   12059             :         {
   12060             :                 HRES_NS_E_DRM_PROFILE_NOT_SET,
   12061             :                 "HRES_NS_E_DRM_PROFILE_NOT_SET",
   12062             :                 "A DRM profile has not been set for the current session."
   12063             :         },
   12064             :         {
   12065             :                 HRES_NS_E_DUPLICATE_DRMPROFILE,
   12066             :                 "HRES_NS_E_DUPLICATE_DRMPROFILE",
   12067             :                 "The profile ID is already used by a DRM profile. Specify a different profile ID."
   12068             :         },
   12069             :         {
   12070             :                 HRES_NS_E_INVALID_DEVICE,
   12071             :                 "HRES_NS_E_INVALID_DEVICE",
   12072             :                 "The setting of the selected device does not support control for playing back tapes."
   12073             :         },
   12074             :         {
   12075             :                 HRES_NS_E_SPEECHEDL_ON_NON_MIXEDMODE,
   12076             :                 "HRES_NS_E_SPEECHEDL_ON_NON_MIXEDMODE",
   12077             :                 "You must specify a mixed voice and audio mode in order to use an optimization definition file."
   12078             :         },
   12079             :         {
   12080             :                 HRES_NS_E_DRM_PASSWORD_TOO_LONG,
   12081             :                 "HRES_NS_E_DRM_PASSWORD_TOO_LONG",
   12082             :                 "The specified password is too long. Type a password with fewer than 8 characters."
   12083             :         },
   12084             :         {
   12085             :                 HRES_NS_E_DEVCONTROL_FAILED_SEEK,
   12086             :                 "HRES_NS_E_DEVCONTROL_FAILED_SEEK",
   12087             :                 "It is not possible to seek to the specified mark-in point."
   12088             :         },
   12089             :         {
   12090             :                 HRES_NS_E_INTERLACE_REQUIRE_SAMESIZE,
   12091             :                 "HRES_NS_E_INTERLACE_REQUIRE_SAMESIZE",
   12092             :                 "When you choose to maintain the interlacing in your video, the output video size must match the input video size."
   12093             :         },
   12094             :         {
   12095             :                 HRES_NS_E_TOO_MANY_DEVICECONTROL,
   12096             :                 "HRES_NS_E_TOO_MANY_DEVICECONTROL",
   12097             :                 "Only one device control plug-in can control a device."
   12098             :         },
   12099             :         {
   12100             :                 HRES_NS_E_NO_MULTIPASS_FOR_LIVEDEVICE,
   12101             :                 "HRES_NS_E_NO_MULTIPASS_FOR_LIVEDEVICE",
   12102             :                 "You must also enable storing content to hard disk temporarily in order to use two-pass encoding with the input device."
   12103             :         },
   12104             :         {
   12105             :                 HRES_NS_E_MISSING_AUDIENCE,
   12106             :                 "HRES_NS_E_MISSING_AUDIENCE",
   12107             :                 "An audience is missing from the output stream configuration."
   12108             :         },
   12109             :         {
   12110             :                 HRES_NS_E_AUDIENCE_CONTENTTYPE_MISMATCH,
   12111             :                 "HRES_NS_E_AUDIENCE_CONTENTTYPE_MISMATCH",
   12112             :                 "All audiences in the output tree must have the same content type."
   12113             :         },
   12114             :         {
   12115             :                 HRES_NS_E_MISSING_SOURCE_INDEX,
   12116             :                 "HRES_NS_E_MISSING_SOURCE_INDEX",
   12117             :                 "A source index is missing from the output stream configuration."
   12118             :         },
   12119             :         {
   12120             :                 HRES_NS_E_NUM_LANGUAGE_MISMATCH,
   12121             :                 "HRES_NS_E_NUM_LANGUAGE_MISMATCH",
   12122             :                 "The same source index in different audiences should have the same number of languages."
   12123             :         },
   12124             :         {
   12125             :                 HRES_NS_E_LANGUAGE_MISMATCH,
   12126             :                 "HRES_NS_E_LANGUAGE_MISMATCH",
   12127             :                 "The same source index in different audiences should have the same languages."
   12128             :         },
   12129             :         {
   12130             :                 HRES_NS_E_VBRMODE_MISMATCH,
   12131             :                 "HRES_NS_E_VBRMODE_MISMATCH",
   12132             :                 "The same source index in different audiences should use the same VBR encoding mode."
   12133             :         },
   12134             :         {
   12135             :                 HRES_NS_E_INVALID_INPUT_AUDIENCE_INDEX,
   12136             :                 "HRES_NS_E_INVALID_INPUT_AUDIENCE_INDEX",
   12137             :                 "The bit rate index specified is not valid."
   12138             :         },
   12139             :         {
   12140             :                 HRES_NS_E_INVALID_INPUT_LANGUAGE,
   12141             :                 "HRES_NS_E_INVALID_INPUT_LANGUAGE",
   12142             :                 "The specified language is not valid."
   12143             :         },
   12144             :         {
   12145             :                 HRES_NS_E_INVALID_INPUT_STREAM,
   12146             :                 "HRES_NS_E_INVALID_INPUT_STREAM",
   12147             :                 "The specified source type is not valid."
   12148             :         },
   12149             :         {
   12150             :                 HRES_NS_E_EXPECT_MONO_WAV_INPUT,
   12151             :                 "HRES_NS_E_EXPECT_MONO_WAV_INPUT",
   12152             :                 "The source must be a mono channel .wav file."
   12153             :         },
   12154             :         {
   12155             :                 HRES_NS_E_INPUT_WAVFORMAT_MISMATCH,
   12156             :                 "HRES_NS_E_INPUT_WAVFORMAT_MISMATCH",
   12157             :                 "All the source .wav files must have the same format."
   12158             :         },
   12159             :         {
   12160             :                 HRES_NS_E_RECORDQ_DISK_FULL,
   12161             :                 "HRES_NS_E_RECORDQ_DISK_FULL",
   12162             :                 "The hard disk being used for temporary storage of content has reached the minimum allowed disk space. Create more space on the hard disk and restart encoding."
   12163             :         },
   12164             :         {
   12165             :                 HRES_NS_E_NO_PAL_INVERSE_TELECINE,
   12166             :                 "HRES_NS_E_NO_PAL_INVERSE_TELECINE",
   12167             :                 "It is not possible to apply the inverse telecine feature to PAL content."
   12168             :         },
   12169             :         {
   12170             :                 HRES_NS_E_ACTIVE_SG_DEVICE_DISCONNECTED,
   12171             :                 "HRES_NS_E_ACTIVE_SG_DEVICE_DISCONNECTED",
   12172             :                 "A capture device in the current active source is no longer available."
   12173             :         },
   12174             :         {
   12175             :                 HRES_NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED,
   12176             :                 "HRES_NS_E_ACTIVE_SG_DEVICE_CONTROL_DISCONNECTED",
   12177             :                 "A device used in the current active source for device control is no longer available."
   12178             :         },
   12179             :         {
   12180             :                 HRES_NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER,
   12181             :                 "HRES_NS_E_NO_FRAMES_SUBMITTED_TO_ANALYZER",
   12182             :                 "No frames have been submitted to the analyzer for analysis."
   12183             :         },
   12184             :         {
   12185             :                 HRES_NS_E_INPUT_DOESNOT_SUPPORT_SMPTE,
   12186             :                 "HRES_NS_E_INPUT_DOESNOT_SUPPORT_SMPTE",
   12187             :                 "The source video does not support time codes."
   12188             :         },
   12189             :         {
   12190             :                 HRES_NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS,
   12191             :                 "HRES_NS_E_NO_SMPTE_WITH_MULTIPLE_SOURCEGROUPS",
   12192             :                 "It is not possible to generate a time code when there are multiple sources in a session."
   12193             :         },
   12194             :         {
   12195             :                 HRES_NS_E_BAD_CONTENTEDL,
   12196             :                 "HRES_NS_E_BAD_CONTENTEDL",
   12197             :                 "The voice codec optimization definition file cannot be found or is corrupted."
   12198             :         },
   12199             :         {
   12200             :                 HRES_NS_E_INTERLACEMODE_MISMATCH,
   12201             :                 "HRES_NS_E_INTERLACEMODE_MISMATCH",
   12202             :                 "The same source index in different audiences should have the same interlace mode."
   12203             :         },
   12204             :         {
   12205             :                 HRES_NS_E_NONSQUAREPIXELMODE_MISMATCH,
   12206             :                 "HRES_NS_E_NONSQUAREPIXELMODE_MISMATCH",
   12207             :                 "The same source index in different audiences should have the same nonsquare pixel mode."
   12208             :         },
   12209             :         {
   12210             :                 HRES_NS_E_SMPTEMODE_MISMATCH,
   12211             :                 "HRES_NS_E_SMPTEMODE_MISMATCH",
   12212             :                 "The same source index in different audiences should have the same time code mode."
   12213             :         },
   12214             :         {
   12215             :                 HRES_NS_E_END_OF_TAPE,
   12216             :                 "HRES_NS_E_END_OF_TAPE",
   12217             :                 "Either the end of the tape has been reached or there is no tape. Check the device and tape."
   12218             :         },
   12219             :         {
   12220             :                 HRES_NS_E_NO_MEDIA_IN_AUDIENCE,
   12221             :                 "HRES_NS_E_NO_MEDIA_IN_AUDIENCE",
   12222             :                 "No audio or video input has been specified."
   12223             :         },
   12224             :         {
   12225             :                 HRES_NS_E_NO_AUDIENCES,
   12226             :                 "HRES_NS_E_NO_AUDIENCES",
   12227             :                 "The profile must contain a bit rate."
   12228             :         },
   12229             :         {
   12230             :                 HRES_NS_E_NO_AUDIO_COMPAT,
   12231             :                 "HRES_NS_E_NO_AUDIO_COMPAT",
   12232             :                 "You must specify at least one audio stream to be compatible with Windows Media Player 7.1."
   12233             :         },
   12234             :         {
   12235             :                 HRES_NS_E_INVALID_VBR_COMPAT,
   12236             :                 "HRES_NS_E_INVALID_VBR_COMPAT",
   12237             :                 "Using a VBR encoding mode is not compatible with Windows Media Player 7.1."
   12238             :         },
   12239             :         {
   12240             :                 HRES_NS_E_NO_PROFILE_NAME,
   12241             :                 "HRES_NS_E_NO_PROFILE_NAME",
   12242             :                 "You must specify a profile name."
   12243             :         },
   12244             :         {
   12245             :                 HRES_NS_E_INVALID_VBR_WITH_UNCOMP,
   12246             :                 "HRES_NS_E_INVALID_VBR_WITH_UNCOMP",
   12247             :                 "It is not possible to use a VBR encoding mode with uncompressed audio or video."
   12248             :         },
   12249             :         {
   12250             :                 HRES_NS_E_MULTIPLE_VBR_AUDIENCES,
   12251             :                 "HRES_NS_E_MULTIPLE_VBR_AUDIENCES",
   12252             :                 "It is not possible to use MBR encoding with VBR encoding."
   12253             :         },
   12254             :         {
   12255             :                 HRES_NS_E_UNCOMP_COMP_COMBINATION,
   12256             :                 "HRES_NS_E_UNCOMP_COMP_COMBINATION",
   12257             :                 "It is not possible to mix uncompressed and compressed content in a session."
   12258             :         },
   12259             :         {
   12260             :                 HRES_NS_E_MULTIPLE_AUDIO_CODECS,
   12261             :                 "HRES_NS_E_MULTIPLE_AUDIO_CODECS",
   12262             :                 "All audiences must use the same audio codec."
   12263             :         },
   12264             :         {
   12265             :                 HRES_NS_E_MULTIPLE_AUDIO_FORMATS,
   12266             :                 "HRES_NS_E_MULTIPLE_AUDIO_FORMATS",
   12267             :                 "All audiences should use the same audio format to be compatible with Windows Media Player 7.1."
   12268             :         },
   12269             :         {
   12270             :                 HRES_NS_E_AUDIO_BITRATE_STEPDOWN,
   12271             :                 "HRES_NS_E_AUDIO_BITRATE_STEPDOWN",
   12272             :                 "The audio bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate."
   12273             :         },
   12274             :         {
   12275             :                 HRES_NS_E_INVALID_AUDIO_PEAKRATE,
   12276             :                 "HRES_NS_E_INVALID_AUDIO_PEAKRATE",
   12277             :                 "The audio peak bit rate setting is not valid."
   12278             :         },
   12279             :         {
   12280             :                 HRES_NS_E_INVALID_AUDIO_PEAKRATE_2,
   12281             :                 "HRES_NS_E_INVALID_AUDIO_PEAKRATE_2",
   12282             :                 "The audio peak bit rate setting must be greater than the audio bit rate setting."
   12283             :         },
   12284             :         {
   12285             :                 HRES_NS_E_INVALID_AUDIO_BUFFERMAX,
   12286             :                 "HRES_NS_E_INVALID_AUDIO_BUFFERMAX",
   12287             :                 "The setting for the maximum buffer size for audio is not valid."
   12288             :         },
   12289             :         {
   12290             :                 HRES_NS_E_MULTIPLE_VIDEO_CODECS,
   12291             :                 "HRES_NS_E_MULTIPLE_VIDEO_CODECS",
   12292             :                 "All audiences must use the same video codec."
   12293             :         },
   12294             :         {
   12295             :                 HRES_NS_E_MULTIPLE_VIDEO_SIZES,
   12296             :                 "HRES_NS_E_MULTIPLE_VIDEO_SIZES",
   12297             :                 "All audiences should use the same video size to be compatible with Windows Media Player 7.1."
   12298             :         },
   12299             :         {
   12300             :                 HRES_NS_E_INVALID_VIDEO_BITRATE,
   12301             :                 "HRES_NS_E_INVALID_VIDEO_BITRATE",
   12302             :                 "The video bit rate setting is not valid."
   12303             :         },
   12304             :         {
   12305             :                 HRES_NS_E_VIDEO_BITRATE_STEPDOWN,
   12306             :                 "HRES_NS_E_VIDEO_BITRATE_STEPDOWN",
   12307             :                 "The video bit rate for an audience with a higher total bit rate must be greater than one with a lower total bit rate."
   12308             :         },
   12309             :         {
   12310             :                 HRES_NS_E_INVALID_VIDEO_PEAKRATE,
   12311             :                 "HRES_NS_E_INVALID_VIDEO_PEAKRATE",
   12312             :                 "The video peak bit rate setting is not valid."
   12313             :         },
   12314             :         {
   12315             :                 HRES_NS_E_INVALID_VIDEO_PEAKRATE_2,
   12316             :                 "HRES_NS_E_INVALID_VIDEO_PEAKRATE_2",
   12317             :                 "The video peak bit rate setting must be greater than the video bit rate setting."
   12318             :         },
   12319             :         {
   12320             :                 HRES_NS_E_INVALID_VIDEO_WIDTH,
   12321             :                 "HRES_NS_E_INVALID_VIDEO_WIDTH",
   12322             :                 "The video width setting is not valid."
   12323             :         },
   12324             :         {
   12325             :                 HRES_NS_E_INVALID_VIDEO_HEIGHT,
   12326             :                 "HRES_NS_E_INVALID_VIDEO_HEIGHT",
   12327             :                 "The video height setting is not valid."
   12328             :         },
   12329             :         {
   12330             :                 HRES_NS_E_INVALID_VIDEO_FPS,
   12331             :                 "HRES_NS_E_INVALID_VIDEO_FPS",
   12332             :                 "The video frame rate setting is not valid."
   12333             :         },
   12334             :         {
   12335             :                 HRES_NS_E_INVALID_VIDEO_KEYFRAME,
   12336             :                 "HRES_NS_E_INVALID_VIDEO_KEYFRAME",
   12337             :                 "The video key frame setting is not valid."
   12338             :         },
   12339             :         {
   12340             :                 HRES_NS_E_INVALID_VIDEO_IQUALITY,
   12341             :                 "HRES_NS_E_INVALID_VIDEO_IQUALITY",
   12342             :                 "The video image quality setting is not valid."
   12343             :         },
   12344             :         {
   12345             :                 HRES_NS_E_INVALID_VIDEO_CQUALITY,
   12346             :                 "HRES_NS_E_INVALID_VIDEO_CQUALITY",
   12347             :                 "The video codec quality setting is not valid."
   12348             :         },
   12349             :         {
   12350             :                 HRES_NS_E_INVALID_VIDEO_BUFFER,
   12351             :                 "HRES_NS_E_INVALID_VIDEO_BUFFER",
   12352             :                 "The video buffer setting is not valid."
   12353             :         },
   12354             :         {
   12355             :                 HRES_NS_E_INVALID_VIDEO_BUFFERMAX,
   12356             :                 "HRES_NS_E_INVALID_VIDEO_BUFFERMAX",
   12357             :                 "The setting for the maximum buffer size for video is not valid."
   12358             :         },
   12359             :         {
   12360             :                 HRES_NS_E_INVALID_VIDEO_BUFFERMAX_2,
   12361             :                 "HRES_NS_E_INVALID_VIDEO_BUFFERMAX_2",
   12362             :                 "The value of the video maximum buffer size setting must be greater than the video buffer size setting."
   12363             :         },
   12364             :         {
   12365             :                 HRES_NS_E_INVALID_VIDEO_WIDTH_ALIGN,
   12366             :                 "HRES_NS_E_INVALID_VIDEO_WIDTH_ALIGN",
   12367             :                 "The alignment of the video width is not valid."
   12368             :         },
   12369             :         {
   12370             :                 HRES_NS_E_INVALID_VIDEO_HEIGHT_ALIGN,
   12371             :                 "HRES_NS_E_INVALID_VIDEO_HEIGHT_ALIGN",
   12372             :                 "The alignment of the video height is not valid."
   12373             :         },
   12374             :         {
   12375             :                 HRES_NS_E_MULTIPLE_SCRIPT_BITRATES,
   12376             :                 "HRES_NS_E_MULTIPLE_SCRIPT_BITRATES",
   12377             :                 "All bit rates must have the same script bit rate."
   12378             :         },
   12379             :         {
   12380             :                 HRES_NS_E_INVALID_SCRIPT_BITRATE,
   12381             :                 "HRES_NS_E_INVALID_SCRIPT_BITRATE",
   12382             :                 "The script bit rate specified is not valid."
   12383             :         },
   12384             :         {
   12385             :                 HRES_NS_E_MULTIPLE_FILE_BITRATES,
   12386             :                 "HRES_NS_E_MULTIPLE_FILE_BITRATES",
   12387             :                 "All bit rates must have the same file transfer bit rate."
   12388             :         },
   12389             :         {
   12390             :                 HRES_NS_E_INVALID_FILE_BITRATE,
   12391             :                 "HRES_NS_E_INVALID_FILE_BITRATE",
   12392             :                 "The file transfer bit rate is not valid."
   12393             :         },
   12394             :         {
   12395             :                 HRES_NS_E_SAME_AS_INPUT_COMBINATION,
   12396             :                 "HRES_NS_E_SAME_AS_INPUT_COMBINATION",
   12397             :                 "All audiences in a profile should either be same as input or have video width and height specified."
   12398             :         },
   12399             :         {
   12400             :                 HRES_NS_E_SOURCE_CANNOT_LOOP,
   12401             :                 "HRES_NS_E_SOURCE_CANNOT_LOOP",
   12402             :                 "This source type does not support looping."
   12403             :         },
   12404             :         {
   12405             :                 HRES_NS_E_INVALID_FOLDDOWN_COEFFICIENTS,
   12406             :                 "HRES_NS_E_INVALID_FOLDDOWN_COEFFICIENTS",
   12407             :                 "The fold-down value needs to be between -144 and 0."
   12408             :         },
   12409             :         {
   12410             :                 HRES_NS_E_DRMPROFILE_NOTFOUND,
   12411             :                 "HRES_NS_E_DRMPROFILE_NOTFOUND",
   12412             :                 "The specified DRM profile does not exist in the system."
   12413             :         },
   12414             :         {
   12415             :                 HRES_NS_E_INVALID_TIMECODE,
   12416             :                 "HRES_NS_E_INVALID_TIMECODE",
   12417             :                 "The specified time code is not valid."
   12418             :         },
   12419             :         {
   12420             :                 HRES_NS_E_NO_AUDIO_TIMECOMPRESSION,
   12421             :                 "HRES_NS_E_NO_AUDIO_TIMECOMPRESSION",
   12422             :                 "It is not possible to apply time compression to a video-only session."
   12423             :         },
   12424             :         {
   12425             :                 HRES_NS_E_NO_TWOPASS_TIMECOMPRESSION,
   12426             :                 "HRES_NS_E_NO_TWOPASS_TIMECOMPRESSION",
   12427             :                 "It is not possible to apply time compression to a session that is using two-pass encoding."
   12428             :         },
   12429             :         {
   12430             :                 HRES_NS_E_TIMECODE_REQUIRES_VIDEOSTREAM,
   12431             :                 "HRES_NS_E_TIMECODE_REQUIRES_VIDEOSTREAM",
   12432             :                 "It is not possible to generate a time code for an audio-only session."
   12433             :         },
   12434             :         {
   12435             :                 HRES_NS_E_NO_MBR_WITH_TIMECODE,
   12436             :                 "HRES_NS_E_NO_MBR_WITH_TIMECODE",
   12437             :                 "It is not possible to generate a time code when you are encoding content at multiple bit rates."
   12438             :         },
   12439             :         {
   12440             :                 HRES_NS_E_INVALID_INTERLACEMODE,
   12441             :                 "HRES_NS_E_INVALID_INTERLACEMODE",
   12442             :                 "The video codec selected does not support maintaining interlacing in video."
   12443             :         },
   12444             :         {
   12445             :                 HRES_NS_E_INVALID_INTERLACE_COMPAT,
   12446             :                 "HRES_NS_E_INVALID_INTERLACE_COMPAT",
   12447             :                 "Maintaining interlacing in video is not compatible with Windows Media Player 7.1."
   12448             :         },
   12449             :         {
   12450             :                 HRES_NS_E_INVALID_NONSQUAREPIXEL_COMPAT,
   12451             :                 "HRES_NS_E_INVALID_NONSQUAREPIXEL_COMPAT",
   12452             :                 "Allowing nonsquare pixel output is not compatible with Windows Media Player 7.1."
   12453             :         },
   12454             :         {
   12455             :                 HRES_NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL,
   12456             :                 "HRES_NS_E_INVALID_SOURCE_WITH_DEVICE_CONTROL",
   12457             :                 "Only capture devices can be used with device control."
   12458             :         },
   12459             :         {
   12460             :                 HRES_NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR,
   12461             :                 "HRES_NS_E_CANNOT_GENERATE_BROADCAST_INFO_FOR_QUALITYVBR",
   12462             :                 "It is not possible to generate the stream format file if you are using quality-based VBR encoding for the audio or video stream. Instead use the Windows Media file generated after encoding to create the announcement file."
   12463             :         },
   12464             :         {
   12465             :                 HRES_NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT,
   12466             :                 "HRES_NS_E_EXCEED_MAX_DRM_PROFILE_LIMIT",
   12467             :                 "It is not possible to create a DRM profile because the maximum number of profiles has been reached. You must delete some DRM profiles before creating new ones."
   12468             :         },
   12469             :         {
   12470             :                 HRES_NS_E_DEVICECONTROL_UNSTABLE,
   12471             :                 "HRES_NS_E_DEVICECONTROL_UNSTABLE",
   12472             :                 "The device is in an unstable state. Check that the device is functioning properly and a tape is in place."
   12473             :         },
   12474             :         {
   12475             :                 HRES_NS_E_INVALID_PIXEL_ASPECT_RATIO,
   12476             :                 "HRES_NS_E_INVALID_PIXEL_ASPECT_RATIO",
   12477             :                 "The pixel aspect ratio value must be between 1 and 255."
   12478             :         },
   12479             :         {
   12480             :                 HRES_NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH,
   12481             :                 "HRES_NS_E_AUDIENCE__LANGUAGE_CONTENTTYPE_MISMATCH",
   12482             :                 "All streams with different languages in the same audience must have same properties."
   12483             :         },
   12484             :         {
   12485             :                 HRES_NS_E_INVALID_PROFILE_CONTENTTYPE,
   12486             :                 "HRES_NS_E_INVALID_PROFILE_CONTENTTYPE",
   12487             :                 "The profile must contain at least one audio or video stream."
   12488             :         },
   12489             :         {
   12490             :                 HRES_NS_E_TRANSFORM_PLUGIN_NOT_FOUND,
   12491             :                 "HRES_NS_E_TRANSFORM_PLUGIN_NOT_FOUND",
   12492             :                 "The transform plug-in could not be found."
   12493             :         },
   12494             :         {
   12495             :                 HRES_NS_E_TRANSFORM_PLUGIN_INVALID,
   12496             :                 "HRES_NS_E_TRANSFORM_PLUGIN_INVALID",
   12497             :                 "The transform plug-in is not valid. It might be damaged or you might not have the required permissions to access the plug-in."
   12498             :         },
   12499             :         {
   12500             :                 HRES_NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS,
   12501             :                 "HRES_NS_E_EDL_REQUIRED_FOR_DEVICE_MULTIPASS",
   12502             :                 "To use two-pass encoding, you must enable device control and setup an edit decision list (EDL) that has at least one entry."
   12503             :         },
   12504             :         {
   12505             :                 HRES_NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING,
   12506             :                 "HRES_NS_E_INVALID_VIDEO_WIDTH_FOR_INTERLACED_ENCODING",
   12507             :                 "When you choose to maintain the interlacing in your video, the output video size must be a multiple of 4."
   12508             :         },
   12509             :         {
   12510             :                 HRES_NS_E_MARKIN_UNSUPPORTED,
   12511             :                 "HRES_NS_E_MARKIN_UNSUPPORTED",
   12512             :                 "Markin/Markout is unsupported with this source type."
   12513             :         },
   12514             :         {
   12515             :                 HRES_NS_E_DRM_INVALID_APPLICATION,
   12516             :                 "HRES_NS_E_DRM_INVALID_APPLICATION",
   12517             :                 "A problem has occurred in the Digital Rights Management component. Contact product support for this application."
   12518             :         },
   12519             :         {
   12520             :                 HRES_NS_E_DRM_LICENSE_STORE_ERROR,
   12521             :                 "HRES_NS_E_DRM_LICENSE_STORE_ERROR",
   12522             :                 "License storage is not working. Contact Microsoft product support."
   12523             :         },
   12524             :         {
   12525             :                 HRES_NS_E_DRM_SECURE_STORE_ERROR,
   12526             :                 "HRES_NS_E_DRM_SECURE_STORE_ERROR",
   12527             :                 "Secure storage is not working. Contact Microsoft product support."
   12528             :         },
   12529             :         {
   12530             :                 HRES_NS_E_DRM_LICENSE_STORE_SAVE_ERROR,
   12531             :                 "HRES_NS_E_DRM_LICENSE_STORE_SAVE_ERROR",
   12532             :                 "License acquisition did not work. Acquire a new license or contact the content provider for further assistance."
   12533             :         },
   12534             :         {
   12535             :                 HRES_NS_E_DRM_SECURE_STORE_UNLOCK_ERROR,
   12536             :                 "HRES_NS_E_DRM_SECURE_STORE_UNLOCK_ERROR",
   12537             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12538             :         },
   12539             :         {
   12540             :                 HRES_NS_E_DRM_INVALID_CONTENT,
   12541             :                 "HRES_NS_E_DRM_INVALID_CONTENT",
   12542             :                 "The media file is corrupted. Contact the content provider to get a new file."
   12543             :         },
   12544             :         {
   12545             :                 HRES_NS_E_DRM_UNABLE_TO_OPEN_LICENSE,
   12546             :                 "HRES_NS_E_DRM_UNABLE_TO_OPEN_LICENSE",
   12547             :                 "The license is corrupted. Acquire a new license."
   12548             :         },
   12549             :         {
   12550             :                 HRES_NS_E_DRM_INVALID_LICENSE,
   12551             :                 "HRES_NS_E_DRM_INVALID_LICENSE",
   12552             :                 "The license is corrupted or invalid. Acquire a new license"
   12553             :         },
   12554             :         {
   12555             :                 HRES_NS_E_DRM_INVALID_MACHINE,
   12556             :                 "HRES_NS_E_DRM_INVALID_MACHINE",
   12557             :                 "Licenses cannot be copied from one computer to another. Use License Management to transfer licenses, or get a new license for the media file."
   12558             :         },
   12559             :         {
   12560             :                 HRES_NS_E_DRM_ENUM_LICENSE_FAILED,
   12561             :                 "HRES_NS_E_DRM_ENUM_LICENSE_FAILED",
   12562             :                 "License storage is not working. Contact Microsoft product support."
   12563             :         },
   12564             :         {
   12565             :                 HRES_NS_E_DRM_INVALID_LICENSE_REQUEST,
   12566             :                 "HRES_NS_E_DRM_INVALID_LICENSE_REQUEST",
   12567             :                 "The media file is corrupted. Contact the content provider to get a new file."
   12568             :         },
   12569             :         {
   12570             :                 HRES_NS_E_DRM_UNABLE_TO_INITIALIZE,
   12571             :                 "HRES_NS_E_DRM_UNABLE_TO_INITIALIZE",
   12572             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12573             :         },
   12574             :         {
   12575             :                 HRES_NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE,
   12576             :                 "HRES_NS_E_DRM_UNABLE_TO_ACQUIRE_LICENSE",
   12577             :                 "The license could not be acquired. Try again later."
   12578             :         },
   12579             :         {
   12580             :                 HRES_NS_E_DRM_INVALID_LICENSE_ACQUIRED,
   12581             :                 "HRES_NS_E_DRM_INVALID_LICENSE_ACQUIRED",
   12582             :                 "License acquisition did not work. Acquire a new license or contact the content provider for further assistance."
   12583             :         },
   12584             :         {
   12585             :                 HRES_NS_E_DRM_NO_RIGHTS,
   12586             :                 "HRES_NS_E_DRM_NO_RIGHTS",
   12587             :                 "The requested operation cannot be performed on this file."
   12588             :         },
   12589             :         {
   12590             :                 HRES_NS_E_DRM_KEY_ERROR,
   12591             :                 "HRES_NS_E_DRM_KEY_ERROR",
   12592             :                 "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."
   12593             :         },
   12594             :         {
   12595             :                 HRES_NS_E_DRM_ENCRYPT_ERROR,
   12596             :                 "HRES_NS_E_DRM_ENCRYPT_ERROR",
   12597             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12598             :         },
   12599             :         {
   12600             :                 HRES_NS_E_DRM_DECRYPT_ERROR,
   12601             :                 "HRES_NS_E_DRM_DECRYPT_ERROR",
   12602             :                 "The media file is corrupted. Contact the content provider to get a new file."
   12603             :         },
   12604             :         {
   12605             :                 HRES_NS_E_DRM_LICENSE_INVALID_XML,
   12606             :                 "HRES_NS_E_DRM_LICENSE_INVALID_XML",
   12607             :                 "The license is corrupted. Acquire a new license."
   12608             :         },
   12609             :         {
   12610             :                 HRES_NS_E_DRM_NEEDS_INDIVIDUALIZATION,
   12611             :                 "HRES_NS_E_DRM_NEEDS_INDIVIDUALIZATION",
   12612             :                 "A security upgrade is required to perform the operation on this media file."
   12613             :         },
   12614             :         {
   12615             :                 HRES_NS_E_DRM_ALREADY_INDIVIDUALIZED,
   12616             :                 "HRES_NS_E_DRM_ALREADY_INDIVIDUALIZED",
   12617             :                 "You already have the latest security components. No upgrade is necessary at this time."
   12618             :         },
   12619             :         {
   12620             :                 HRES_NS_E_DRM_ACTION_NOT_QUERIED,
   12621             :                 "HRES_NS_E_DRM_ACTION_NOT_QUERIED",
   12622             :                 "The application cannot perform this action. Contact product support for this application."
   12623             :         },
   12624             :         {
   12625             :                 HRES_NS_E_DRM_ACQUIRING_LICENSE,
   12626             :                 "HRES_NS_E_DRM_ACQUIRING_LICENSE",
   12627             :                 "You cannot begin a new license acquisition process until the current one has been completed."
   12628             :         },
   12629             :         {
   12630             :                 HRES_NS_E_DRM_INDIVIDUALIZING,
   12631             :                 "HRES_NS_E_DRM_INDIVIDUALIZING",
   12632             :                 "You cannot begin a new security upgrade until the current one has been completed."
   12633             :         },
   12634             :         {
   12635             :                 HRES_NS_E_BACKUP_RESTORE_FAILURE,
   12636             :                 "HRES_NS_E_BACKUP_RESTORE_FAILURE",
   12637             :                 "Failure in Backup-Restore."
   12638             :         },
   12639             :         {
   12640             :                 HRES_NS_E_BACKUP_RESTORE_BAD_REQUEST_ID,
   12641             :                 "HRES_NS_E_BACKUP_RESTORE_BAD_REQUEST_ID",
   12642             :                 "Bad Request ID in Backup-Restore."
   12643             :         },
   12644             :         {
   12645             :                 HRES_NS_E_DRM_PARAMETERS_MISMATCHED,
   12646             :                 "HRES_NS_E_DRM_PARAMETERS_MISMATCHED",
   12647             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12648             :         },
   12649             :         {
   12650             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT,
   12651             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_LICENSE_OBJECT",
   12652             :                 "A license cannot be created for this media file. Reinstall the application."
   12653             :         },
   12654             :         {
   12655             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT,
   12656             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_INDI_OBJECT",
   12657             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12658             :         },
   12659             :         {
   12660             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT,
   12661             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_ENCRYPT_OBJECT",
   12662             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12663             :         },
   12664             :         {
   12665             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT,
   12666             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_DECRYPT_OBJECT",
   12667             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12668             :         },
   12669             :         {
   12670             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT,
   12671             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_PROPERTIES_OBJECT",
   12672             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12673             :         },
   12674             :         {
   12675             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT,
   12676             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_BACKUP_OBJECT",
   12677             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12678             :         },
   12679             :         {
   12680             :                 HRES_NS_E_DRM_INDIVIDUALIZE_ERROR,
   12681             :                 "HRES_NS_E_DRM_INDIVIDUALIZE_ERROR",
   12682             :                 "The security upgrade failed. Try again later."
   12683             :         },
   12684             :         {
   12685             :                 HRES_NS_E_DRM_LICENSE_OPEN_ERROR,
   12686             :                 "HRES_NS_E_DRM_LICENSE_OPEN_ERROR",
   12687             :                 "License storage is not working. Contact Microsoft product support."
   12688             :         },
   12689             :         {
   12690             :                 HRES_NS_E_DRM_LICENSE_CLOSE_ERROR,
   12691             :                 "HRES_NS_E_DRM_LICENSE_CLOSE_ERROR",
   12692             :                 "License storage is not working. Contact Microsoft product support."
   12693             :         },
   12694             :         {
   12695             :                 HRES_NS_E_DRM_GET_LICENSE_ERROR,
   12696             :                 "HRES_NS_E_DRM_GET_LICENSE_ERROR",
   12697             :                 "License storage is not working. Contact Microsoft product support."
   12698             :         },
   12699             :         {
   12700             :                 HRES_NS_E_DRM_QUERY_ERROR,
   12701             :                 "HRES_NS_E_DRM_QUERY_ERROR",
   12702             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12703             :         },
   12704             :         {
   12705             :                 HRES_NS_E_DRM_REPORT_ERROR,
   12706             :                 "HRES_NS_E_DRM_REPORT_ERROR",
   12707             :                 "A problem has occurred in the Digital Rights Management component. Contact product support for this application."
   12708             :         },
   12709             :         {
   12710             :                 HRES_NS_E_DRM_GET_LICENSESTRING_ERROR,
   12711             :                 "HRES_NS_E_DRM_GET_LICENSESTRING_ERROR",
   12712             :                 "License storage is not working. Contact Microsoft product support."
   12713             :         },
   12714             :         {
   12715             :                 HRES_NS_E_DRM_GET_CONTENTSTRING_ERROR,
   12716             :                 "HRES_NS_E_DRM_GET_CONTENTSTRING_ERROR",
   12717             :                 "The media file is corrupted. Contact the content provider to get a new file."
   12718             :         },
   12719             :         {
   12720             :                 HRES_NS_E_DRM_MONITOR_ERROR,
   12721             :                 "HRES_NS_E_DRM_MONITOR_ERROR",
   12722             :                 "A problem has occurred in the Digital Rights Management component. Try again later."
   12723             :         },
   12724             :         {
   12725             :                 HRES_NS_E_DRM_UNABLE_TO_SET_PARAMETER,
   12726             :                 "HRES_NS_E_DRM_UNABLE_TO_SET_PARAMETER",
   12727             :                 "The application has made an invalid call to the Digital Rights Management component. Contact product support for this application."
   12728             :         },
   12729             :         {
   12730             :                 HRES_NS_E_DRM_INVALID_APPDATA,
   12731             :                 "HRES_NS_E_DRM_INVALID_APPDATA",
   12732             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12733             :         },
   12734             :         {
   12735             :                 HRES_NS_E_DRM_INVALID_APPDATA_VERSION,
   12736             :                 "HRES_NS_E_DRM_INVALID_APPDATA_VERSION",
   12737             :                 "A problem has occurred in the Digital Rights Management component. Contact product support for this application."
   12738             :         },
   12739             :         {
   12740             :                 HRES_NS_E_DRM_BACKUP_EXISTS,
   12741             :                 "HRES_NS_E_DRM_BACKUP_EXISTS",
   12742             :                 "Licenses are already backed up in this location."
   12743             :         },
   12744             :         {
   12745             :                 HRES_NS_E_DRM_BACKUP_CORRUPT,
   12746             :                 "HRES_NS_E_DRM_BACKUP_CORRUPT",
   12747             :                 "One or more backed-up licenses are missing or corrupt."
   12748             :         },
   12749             :         {
   12750             :                 HRES_NS_E_DRM_BACKUPRESTORE_BUSY,
   12751             :                 "HRES_NS_E_DRM_BACKUPRESTORE_BUSY",
   12752             :                 "You cannot begin a new backup process until the current process has been completed."
   12753             :         },
   12754             :         {
   12755             :                 HRES_NS_E_BACKUP_RESTORE_BAD_DATA,
   12756             :                 "HRES_NS_E_BACKUP_RESTORE_BAD_DATA",
   12757             :                 "Bad Data sent to Backup-Restore."
   12758             :         },
   12759             :         {
   12760             :                 HRES_NS_E_DRM_LICENSE_UNUSABLE,
   12761             :                 "HRES_NS_E_DRM_LICENSE_UNUSABLE",
   12762             :                 "The license is invalid. Contact the content provider for further assistance."
   12763             :         },
   12764             :         {
   12765             :                 HRES_NS_E_DRM_INVALID_PROPERTY,
   12766             :                 "HRES_NS_E_DRM_INVALID_PROPERTY",
   12767             :                 "A required property was not set by the application. Contact product support for this application."
   12768             :         },
   12769             :         {
   12770             :                 HRES_NS_E_DRM_SECURE_STORE_NOT_FOUND,
   12771             :                 "HRES_NS_E_DRM_SECURE_STORE_NOT_FOUND",
   12772             :                 "A problem has occurred in the Digital Rights Management component of this application. Try to acquire a license again."
   12773             :         },
   12774             :         {
   12775             :                 HRES_NS_E_DRM_CACHED_CONTENT_ERROR,
   12776             :                 "HRES_NS_E_DRM_CACHED_CONTENT_ERROR",
   12777             :                 "A license cannot be found for this media file. Use License Management to transfer a license for this file from the original computer, or acquire a new license."
   12778             :         },
   12779             :         {
   12780             :                 HRES_NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE,
   12781             :                 "HRES_NS_E_DRM_INDIVIDUALIZATION_INCOMPLETE",
   12782             :                 "A problem occurred during the security upgrade. Try again later."
   12783             :         },
   12784             :         {
   12785             :                 HRES_NS_E_DRM_DRIVER_AUTH_FAILURE,
   12786             :                 "HRES_NS_E_DRM_DRIVER_AUTH_FAILURE",
   12787             :                 "Certified driver components are required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware."
   12788             :         },
   12789             :         {
   12790             :                 HRES_NS_E_DRM_NEED_UPGRADE_MSSAP,
   12791             :                 "HRES_NS_E_DRM_NEED_UPGRADE_MSSAP",
   12792             :                 "One or more of the Secure Audio Path components were not found or an entry point in those components was not found."
   12793             :         },
   12794             :         {
   12795             :                 HRES_NS_E_DRM_REOPEN_CONTENT,
   12796             :                 "HRES_NS_E_DRM_REOPEN_CONTENT",
   12797             :                 "Status message: Reopen the file."
   12798             :         },
   12799             :         {
   12800             :                 HRES_NS_E_DRM_DRIVER_DIGIOUT_FAILURE,
   12801             :                 "HRES_NS_E_DRM_DRIVER_DIGIOUT_FAILURE",
   12802             :                 "Certain driver functionality is required to play this media file. Contact Windows Update to see whether updated drivers are available for your hardware."
   12803             :         },
   12804             :         {
   12805             :                 HRES_NS_E_DRM_INVALID_SECURESTORE_PASSWORD,
   12806             :                 "HRES_NS_E_DRM_INVALID_SECURESTORE_PASSWORD",
   12807             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12808             :         },
   12809             :         {
   12810             :                 HRES_NS_E_DRM_APPCERT_REVOKED,
   12811             :                 "HRES_NS_E_DRM_APPCERT_REVOKED",
   12812             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12813             :         },
   12814             :         {
   12815             :                 HRES_NS_E_DRM_RESTORE_FRAUD,
   12816             :                 "HRES_NS_E_DRM_RESTORE_FRAUD",
   12817             :                 "You cannot restore your license(s)."
   12818             :         },
   12819             :         {
   12820             :                 HRES_NS_E_DRM_HARDWARE_INCONSISTENT,
   12821             :                 "HRES_NS_E_DRM_HARDWARE_INCONSISTENT",
   12822             :                 "The licenses for your media files are corrupted. Contact Microsoft product support."
   12823             :         },
   12824             :         {
   12825             :                 HRES_NS_E_DRM_SDMI_TRIGGER,
   12826             :                 "HRES_NS_E_DRM_SDMI_TRIGGER",
   12827             :                 "To transfer this media file, you must upgrade the application."
   12828             :         },
   12829             :         {
   12830             :                 HRES_NS_E_DRM_SDMI_NOMORECOPIES,
   12831             :                 "HRES_NS_E_DRM_SDMI_NOMORECOPIES",
   12832             :                 "You cannot make any more copies of this media file."
   12833             :         },
   12834             :         {
   12835             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT,
   12836             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_HEADER_OBJECT",
   12837             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12838             :         },
   12839             :         {
   12840             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT,
   12841             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_KEYS_OBJECT",
   12842             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12843             :         },
   12844             :         {
   12845             :                 HRES_NS_E_DRM_LICENSE_NOTACQUIRED,
   12846             :                 "HRES_NS_E_DRM_LICENSE_NOTACQUIRED",
   12847             :                 "Unable to obtain license."
   12848             :         },
   12849             :         {
   12850             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT,
   12851             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_CODING_OBJECT",
   12852             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12853             :         },
   12854             :         {
   12855             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT,
   12856             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_STATE_DATA_OBJECT",
   12857             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12858             :         },
   12859             :         {
   12860             :                 HRES_NS_E_DRM_BUFFER_TOO_SMALL,
   12861             :                 "HRES_NS_E_DRM_BUFFER_TOO_SMALL",
   12862             :                 "The buffer supplied is not sufficient."
   12863             :         },
   12864             :         {
   12865             :                 HRES_NS_E_DRM_UNSUPPORTED_PROPERTY,
   12866             :                 "HRES_NS_E_DRM_UNSUPPORTED_PROPERTY",
   12867             :                 "The property requested is not supported."
   12868             :         },
   12869             :         {
   12870             :                 HRES_NS_E_DRM_ERROR_BAD_NET_RESP,
   12871             :                 "HRES_NS_E_DRM_ERROR_BAD_NET_RESP",
   12872             :                 "The specified server cannot perform the requested operation."
   12873             :         },
   12874             :         {
   12875             :                 HRES_NS_E_DRM_STORE_NOTALLSTORED,
   12876             :                 "HRES_NS_E_DRM_STORE_NOTALLSTORED",
   12877             :                 "Some of the licenses could not be stored."
   12878             :         },
   12879             :         {
   12880             :                 HRES_NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID,
   12881             :                 "HRES_NS_E_DRM_SECURITY_COMPONENT_SIGNATURE_INVALID",
   12882             :                 "The Digital Rights Management security upgrade component could not be validated. Contact Microsoft product support."
   12883             :         },
   12884             :         {
   12885             :                 HRES_NS_E_DRM_INVALID_DATA,
   12886             :                 "HRES_NS_E_DRM_INVALID_DATA",
   12887             :                 "Invalid or corrupt data was encountered."
   12888             :         },
   12889             :         {
   12890             :                 HRES_NS_E_DRM_POLICY_DISABLE_ONLINE,
   12891             :                 "HRES_NS_E_DRM_POLICY_DISABLE_ONLINE",
   12892             :                 "The Windows Media Digital Rights Management system cannot perform the requested action because your computer or network administrator has enabled the group policy Prevent Windows Media DRM Internet Access. For assistance, contact your administrator."
   12893             :         },
   12894             :         {
   12895             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT,
   12896             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_AUTHENTICATION_OBJECT",
   12897             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12898             :         },
   12899             :         {
   12900             :                 HRES_NS_E_DRM_NOT_CONFIGURED,
   12901             :                 "HRES_NS_E_DRM_NOT_CONFIGURED",
   12902             :                 "Not all of the necessary properties for DRM have been set."
   12903             :         },
   12904             :         {
   12905             :                 HRES_NS_E_DRM_DEVICE_ACTIVATION_CANCELED,
   12906             :                 "HRES_NS_E_DRM_DEVICE_ACTIVATION_CANCELED",
   12907             :                 "The portable device does not have the security required to copy protected files to it. To obtain the additional security, try to copy the file to your portable device again. When a message appears, click OK."
   12908             :         },
   12909             :         {
   12910             :                 HRES_NS_E_BACKUP_RESTORE_TOO_MANY_RESETS,
   12911             :                 "HRES_NS_E_BACKUP_RESTORE_TOO_MANY_RESETS",
   12912             :                 "Too many resets in Backup-Restore."
   12913             :         },
   12914             :         {
   12915             :                 HRES_NS_E_DRM_DEBUGGING_NOT_ALLOWED,
   12916             :                 "HRES_NS_E_DRM_DEBUGGING_NOT_ALLOWED",
   12917             :                 "Running this process under a debugger while using DRM content is not allowed."
   12918             :         },
   12919             :         {
   12920             :                 HRES_NS_E_DRM_OPERATION_CANCELED,
   12921             :                 "HRES_NS_E_DRM_OPERATION_CANCELED",
   12922             :                 "The user canceled the DRM operation."
   12923             :         },
   12924             :         {
   12925             :                 HRES_NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED,
   12926             :                 "HRES_NS_E_DRM_RESTRICTIONS_NOT_RETRIEVED",
   12927             :                 "The license you are using has assocaited output restrictions. This license is unusable until these restrictions are queried."
   12928             :         },
   12929             :         {
   12930             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT,
   12931             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_OBJECT",
   12932             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12933             :         },
   12934             :         {
   12935             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT,
   12936             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_PLAYLIST_BURN_OBJECT",
   12937             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12938             :         },
   12939             :         {
   12940             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT,
   12941             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_DEVICE_REGISTRATION_OBJECT",
   12942             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12943             :         },
   12944             :         {
   12945             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT,
   12946             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_METERING_OBJECT",
   12947             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   12948             :         },
   12949             :         {
   12950             :                 HRES_NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION,
   12951             :                 "HRES_NS_E_DRM_TRACK_EXCEEDED_PLAYLIST_RESTICTION",
   12952             :                 "The specified track has exceeded it's specified playlist burn limit in this playlist."
   12953             :         },
   12954             :         {
   12955             :                 HRES_NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION,
   12956             :                 "HRES_NS_E_DRM_TRACK_EXCEEDED_TRACKBURN_RESTRICTION",
   12957             :                 "The specified track has exceeded it's track burn limit."
   12958             :         },
   12959             :         {
   12960             :                 HRES_NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT,
   12961             :                 "HRES_NS_E_DRM_UNABLE_TO_GET_DEVICE_CERT",
   12962             :                 "A problem has occurred in obtaining the device's certificate. Contact Microsoft product support."
   12963             :         },
   12964             :         {
   12965             :                 HRES_NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK,
   12966             :                 "HRES_NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK",
   12967             :                 "A problem has occurred in obtaining the device's secure clock. Contact Microsoft product support."
   12968             :         },
   12969             :         {
   12970             :                 HRES_NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK,
   12971             :                 "HRES_NS_E_DRM_UNABLE_TO_SET_SECURE_CLOCK",
   12972             :                 "A problem has occurred in setting the device's secure clock. Contact Microsoft product support."
   12973             :         },
   12974             :         {
   12975             :                 HRES_NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER,
   12976             :                 "HRES_NS_E_DRM_UNABLE_TO_GET_SECURE_CLOCK_FROM_SERVER",
   12977             :                 "A problem has occurred in obtaining the secure clock from server. Contact Microsoft product support."
   12978             :         },
   12979             :         {
   12980             :                 HRES_NS_E_DRM_POLICY_METERING_DISABLED,
   12981             :                 "HRES_NS_E_DRM_POLICY_METERING_DISABLED",
   12982             :                 "This content requires the metering policy to be enabled."
   12983             :         },
   12984             :         {
   12985             :                 HRES_NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED,
   12986             :                 "HRES_NS_E_DRM_TRANSFER_CHAINED_LICENSES_UNSUPPORTED",
   12987             :                 "Transfer of chained licenses unsupported."
   12988             :         },
   12989             :         {
   12990             :                 HRES_NS_E_DRM_SDK_VERSIONMISMATCH,
   12991             :                 "HRES_NS_E_DRM_SDK_VERSIONMISMATCH",
   12992             :                 "The Digital Rights Management component is not installed properly. Reinstall the Player."
   12993             :         },
   12994             :         {
   12995             :                 HRES_NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET,
   12996             :                 "HRES_NS_E_DRM_LIC_NEEDS_DEVICE_CLOCK_SET",
   12997             :                 "The file could not be transferred because the device clock is not set."
   12998             :         },
   12999             :         {
   13000             :                 HRES_NS_E_LICENSE_HEADER_MISSING_URL,
   13001             :                 "HRES_NS_E_LICENSE_HEADER_MISSING_URL",
   13002             :                 "The content header is missing an acquisition URL."
   13003             :         },
   13004             :         {
   13005             :                 HRES_NS_E_DEVICE_NOT_WMDRM_DEVICE,
   13006             :                 "HRES_NS_E_DEVICE_NOT_WMDRM_DEVICE",
   13007             :                 "The current attached device does not support WMDRM."
   13008             :         },
   13009             :         {
   13010             :                 HRES_NS_E_DRM_INVALID_APPCERT,
   13011             :                 "HRES_NS_E_DRM_INVALID_APPCERT",
   13012             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   13013             :         },
   13014             :         {
   13015             :                 HRES_NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION,
   13016             :                 "HRES_NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_PETITION",
   13017             :                 "The client application has been forcefully terminated during a DRM petition."
   13018             :         },
   13019             :         {
   13020             :                 HRES_NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE,
   13021             :                 "HRES_NS_E_DRM_PROTOCOL_FORCEFUL_TERMINATION_ON_CHALLENGE",
   13022             :                 "The client application has been forcefully terminated during a DRM challenge."
   13023             :         },
   13024             :         {
   13025             :                 HRES_NS_E_DRM_CHECKPOINT_FAILED,
   13026             :                 "HRES_NS_E_DRM_CHECKPOINT_FAILED",
   13027             :                 "Secure storage protection error. Restore your licenses from a previous backup and try again."
   13028             :         },
   13029             :         {
   13030             :                 HRES_NS_E_DRM_BB_UNABLE_TO_INITIALIZE,
   13031             :                 "HRES_NS_E_DRM_BB_UNABLE_TO_INITIALIZE",
   13032             :                 "A problem has occurred in the Digital Rights Management root of trust. Contact Microsoft product support."
   13033             :         },
   13034             :         {
   13035             :                 HRES_NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID,
   13036             :                 "HRES_NS_E_DRM_UNABLE_TO_LOAD_HARDWARE_ID",
   13037             :                 "A problem has occurred in retrieving the Digital Rights Management machine identification. Contact Microsoft product support."
   13038             :         },
   13039             :         {
   13040             :                 HRES_NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE,
   13041             :                 "HRES_NS_E_DRM_UNABLE_TO_OPEN_DATA_STORE",
   13042             :                 "A problem has occurred in opening the Digital Rights Management data storage file. Contact Microsoft product."
   13043             :         },
   13044             :         {
   13045             :                 HRES_NS_E_DRM_DATASTORE_CORRUPT,
   13046             :                 "HRES_NS_E_DRM_DATASTORE_CORRUPT",
   13047             :                 "The Digital Rights Management data storage is not functioning properly. Contact Microsoft product support."
   13048             :         },
   13049             :         {
   13050             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT,
   13051             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_INMEMORYSTORE_OBJECT",
   13052             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   13053             :         },
   13054             :         {
   13055             :                 HRES_NS_E_DRM_STUBLIB_REQUIRED,
   13056             :                 "HRES_NS_E_DRM_STUBLIB_REQUIRED",
   13057             :                 "A secured library is required to access the requested functionality."
   13058             :         },
   13059             :         {
   13060             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT,
   13061             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_CERTIFICATE_OBJECT",
   13062             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   13063             :         },
   13064             :         {
   13065             :                 HRES_NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE,
   13066             :                 "HRES_NS_E_DRM_MIGRATION_TARGET_NOT_ONLINE",
   13067             :                 "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."
   13068             :         },
   13069             :         {
   13070             :                 HRES_NS_E_DRM_INVALID_MIGRATION_IMAGE,
   13071             :                 "HRES_NS_E_DRM_INVALID_MIGRATION_IMAGE",
   13072             :                 "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."
   13073             :         },
   13074             :         {
   13075             :                 HRES_NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED,
   13076             :                 "HRES_NS_E_DRM_MIGRATION_TARGET_STATES_CORRUPTED",
   13077             :                 "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."
   13078             :         },
   13079             :         {
   13080             :                 HRES_NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE,
   13081             :                 "HRES_NS_E_DRM_MIGRATION_IMPORTER_NOT_AVAILABLE",
   13082             :                 "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."
   13083             :         },
   13084             :         {
   13085             :                 HRES_NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID,
   13086             :                 "HRES_NS_DRM_E_MIGRATION_UPGRADE_WITH_DIFF_SID",
   13087             :                 "A problem has occurred in the Digital Rights Management component during license migration. Contact Microsoft product support."
   13088             :         },
   13089             :         {
   13090             :                 HRES_NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE,
   13091             :                 "HRES_NS_DRM_E_MIGRATION_SOURCE_MACHINE_IN_USE",
   13092             :                 "The Digital Rights Management component is in use during license migration. Contact Microsoft product support."
   13093             :         },
   13094             :         {
   13095             :                 HRES_NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH,
   13096             :                 "HRES_NS_DRM_E_MIGRATION_TARGET_MACHINE_LESS_THAN_LH",
   13097             :                 "Licenses are being migrated to a machine running XP or downlevel OS. This operation can only be performed on Windows Vista or a later OS. Contact Microsoft product support."
   13098             :         },
   13099             :         {
   13100             :                 HRES_NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS,
   13101             :                 "HRES_NS_DRM_E_MIGRATION_IMAGE_ALREADY_EXISTS",
   13102             :                 "Migration Image already exists. Contact Microsoft product support."
   13103             :         },
   13104             :         {
   13105             :                 HRES_NS_E_DRM_HARDWAREID_MISMATCH,
   13106             :                 "HRES_NS_E_DRM_HARDWAREID_MISMATCH",
   13107             :                 "The requested action cannot be performed because a hardware configuration change has been detected by the Windows Media Digital Rights Management (DRM) components on your computer."
   13108             :         },
   13109             :         {
   13110             :                 HRES_NS_E_INVALID_DRMV2CLT_STUBLIB,
   13111             :                 "HRES_NS_E_INVALID_DRMV2CLT_STUBLIB",
   13112             :                 "The wrong stublib has been linked to an application or DLL using drmv2clt.dll."
   13113             :         },
   13114             :         {
   13115             :                 HRES_NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA,
   13116             :                 "HRES_NS_E_DRM_MIGRATION_INVALID_LEGACYV2_DATA",
   13117             :                 "The legacy V2 data being imported is invalid."
   13118             :         },
   13119             :         {
   13120             :                 HRES_NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS,
   13121             :                 "HRES_NS_E_DRM_MIGRATION_LICENSE_ALREADY_EXISTS",
   13122             :                 "The license being imported already exists."
   13123             :         },
   13124             :         {
   13125             :                 HRES_NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD,
   13126             :                 "HRES_NS_E_DRM_MIGRATION_INVALID_LEGACYV2_SST_PASSWORD",
   13127             :                 "The password of the Legacy V2 SST entry being imported is incorrect."
   13128             :         },
   13129             :         {
   13130             :                 HRES_NS_E_DRM_MIGRATION_NOT_SUPPORTED,
   13131             :                 "HRES_NS_E_DRM_MIGRATION_NOT_SUPPORTED",
   13132             :                 "Migration is not supported by the plugin."
   13133             :         },
   13134             :         {
   13135             :                 HRES_NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT,
   13136             :                 "HRES_NS_E_DRM_UNABLE_TO_CREATE_MIGRATION_IMPORTER_OBJECT",
   13137             :                 "A migration importer cannot be created for this media file. Reinstall the application."
   13138             :         },
   13139             :         {
   13140             :                 HRES_NS_E_DRM_CHECKPOINT_MISMATCH,
   13141             :                 "HRES_NS_E_DRM_CHECKPOINT_MISMATCH",
   13142             :                 "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."
   13143             :         },
   13144             :         {
   13145             :                 HRES_NS_E_DRM_CHECKPOINT_CORRUPT,
   13146             :                 "HRES_NS_E_DRM_CHECKPOINT_CORRUPT",
   13147             :                 "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."
   13148             :         },
   13149             :         {
   13150             :                 HRES_NS_E_REG_FLUSH_FAILURE,
   13151             :                 "HRES_NS_E_REG_FLUSH_FAILURE",
   13152             :                 "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."
   13153             :         },
   13154             :         {
   13155             :                 HRES_NS_E_HDS_KEY_MISMATCH,
   13156             :                 "HRES_NS_E_HDS_KEY_MISMATCH",
   13157             :                 "The requested action cannot be performed because a problem occurred with the Windows Media Digital Rights Management (DRM) components on your computer."
   13158             :         },
   13159             :         {
   13160             :                 HRES_NS_E_DRM_MIGRATION_OPERATION_CANCELLED,
   13161             :                 "HRES_NS_E_DRM_MIGRATION_OPERATION_CANCELLED",
   13162             :                 "Migration was canceled by the user."
   13163             :         },
   13164             :         {
   13165             :                 HRES_NS_E_DRM_MIGRATION_OBJECT_IN_USE,
   13166             :                 "HRES_NS_E_DRM_MIGRATION_OBJECT_IN_USE",
   13167             :                 "Migration object is already in use and cannot be called until the current operation completes."
   13168             :         },
   13169             :         {
   13170             :                 HRES_NS_E_DRM_MALFORMED_CONTENT_HEADER,
   13171             :                 "HRES_NS_E_DRM_MALFORMED_CONTENT_HEADER",
   13172             :                 "The content header does not comply with DRM requirements and cannot be used."
   13173             :         },
   13174             :         {
   13175             :                 HRES_NS_E_DRM_LICENSE_EXPIRED,
   13176             :                 "HRES_NS_E_DRM_LICENSE_EXPIRED",
   13177             :                 "The license for this file has expired and is no longer valid. Contact your content provider for further assistance."
   13178             :         },
   13179             :         {
   13180             :                 HRES_NS_E_DRM_LICENSE_NOTENABLED,
   13181             :                 "HRES_NS_E_DRM_LICENSE_NOTENABLED",
   13182             :                 "The license for this file is not valid yet, but will be at a future date."
   13183             :         },
   13184             :         {
   13185             :                 HRES_NS_E_DRM_LICENSE_APPSECLOW,
   13186             :                 "HRES_NS_E_DRM_LICENSE_APPSECLOW",
   13187             :                 "The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player."
   13188             :         },
   13189             :         {
   13190             :                 HRES_NS_E_DRM_STORE_NEEDINDI,
   13191             :                 "HRES_NS_E_DRM_STORE_NEEDINDI",
   13192             :                 "The license cannot be stored as it requires security upgrade of Digital Rights Management component."
   13193             :         },
   13194             :         {
   13195             :                 HRES_NS_E_DRM_STORE_NOTALLOWED,
   13196             :                 "HRES_NS_E_DRM_STORE_NOTALLOWED",
   13197             :                 "Your machine does not meet the requirements for storing the license."
   13198             :         },
   13199             :         {
   13200             :                 HRES_NS_E_DRM_LICENSE_APP_NOTALLOWED,
   13201             :                 "HRES_NS_E_DRM_LICENSE_APP_NOTALLOWED",
   13202             :                 "The license for this file requires an upgraded version of your player or a different player."
   13203             :         },
   13204             :         {
   13205             :                 HRES_NS_E_DRM_LICENSE_CERT_EXPIRED,
   13206             :                 "HRES_NS_E_DRM_LICENSE_CERT_EXPIRED",
   13207             :                 "The license server's certificate expired. Make sure your system clock is set correctly. Contact your content provider for further assistance."
   13208             :         },
   13209             :         {
   13210             :                 HRES_NS_E_DRM_LICENSE_SECLOW,
   13211             :                 "HRES_NS_E_DRM_LICENSE_SECLOW",
   13212             :                 "The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player."
   13213             :         },
   13214             :         {
   13215             :                 HRES_NS_E_DRM_LICENSE_CONTENT_REVOKED,
   13216             :                 "HRES_NS_E_DRM_LICENSE_CONTENT_REVOKED",
   13217             :                 "The content owner for the license you just acquired is no longer supporting their content. Contact the content owner for a newer version of the content."
   13218             :         },
   13219             :         {
   13220             :                 HRES_NS_E_DRM_DEVICE_NOT_REGISTERED,
   13221             :                 "HRES_NS_E_DRM_DEVICE_NOT_REGISTERED",
   13222             :                 "The content owner for the license you just acquired requires your device to register to the current machine."
   13223             :         },
   13224             :         {
   13225             :                 HRES_NS_E_DRM_LICENSE_NOSAP,
   13226             :                 "HRES_NS_E_DRM_LICENSE_NOSAP",
   13227             :                 "The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance."
   13228             :         },
   13229             :         {
   13230             :                 HRES_NS_E_DRM_LICENSE_NOSVP,
   13231             :                 "HRES_NS_E_DRM_LICENSE_NOSVP",
   13232             :                 "The license for this file requires a feature that is not supported in your current player or operating system. You can try with newer version of your current player or contact your content provider for further assistance."
   13233             :         },
   13234             :         {
   13235             :                 HRES_NS_E_DRM_LICENSE_NOWDM,
   13236             :                 "HRES_NS_E_DRM_LICENSE_NOWDM",
   13237             :                 "The license for this file requires Windows Driver Model (WDM) audio drivers. Contact your sound card manufacturer for further assistance."
   13238             :         },
   13239             :         {
   13240             :                 HRES_NS_E_DRM_LICENSE_NOTRUSTEDCODEC,
   13241             :                 "HRES_NS_E_DRM_LICENSE_NOTRUSTEDCODEC",
   13242             :                 "The license for this file requires a higher level of security than the player you are currently using has. Try using a different player or download a newer version of your current player."
   13243             :         },
   13244             :         {
   13245             :                 HRES_NS_E_DRM_SOURCEID_NOT_SUPPORTED,
   13246             :                 "HRES_NS_E_DRM_SOURCEID_NOT_SUPPORTED",
   13247             :                 "The license for this file is not supported by your current player. You can try with newer version of your current player or contact your content provider for further assistance."
   13248             :         },
   13249             :         {
   13250             :                 HRES_NS_E_DRM_NEEDS_UPGRADE_TEMPFILE,
   13251             :                 "HRES_NS_E_DRM_NEEDS_UPGRADE_TEMPFILE",
   13252             :                 "An updated version of your media player is required to play the selected content."
   13253             :         },
   13254             :         {
   13255             :                 HRES_NS_E_DRM_NEED_UPGRADE_PD,
   13256             :                 "HRES_NS_E_DRM_NEED_UPGRADE_PD",
   13257             :                 "A new version of the Digital Rights Management component is required. Contact product support for this application to get the latest version."
   13258             :         },
   13259             :         {
   13260             :                 HRES_NS_E_DRM_SIGNATURE_FAILURE,
   13261             :                 "HRES_NS_E_DRM_SIGNATURE_FAILURE",
   13262             :                 "Failed to either create or verify the content header."
   13263             :         },
   13264             :         {
   13265             :                 HRES_NS_E_DRM_LICENSE_SERVER_INFO_MISSING,
   13266             :                 "HRES_NS_E_DRM_LICENSE_SERVER_INFO_MISSING",
   13267             :                 "Could not read the necessary information from the system registry."
   13268             :         },
   13269             :         {
   13270             :                 HRES_NS_E_DRM_BUSY,
   13271             :                 "HRES_NS_E_DRM_BUSY",
   13272             :                 "The DRM subsystem is currently locked by another application or user. Try again later."
   13273             :         },
   13274             :         {
   13275             :                 HRES_NS_E_DRM_PD_TOO_MANY_DEVICES,
   13276             :                 "HRES_NS_E_DRM_PD_TOO_MANY_DEVICES",
   13277             :                 "There are too many target devices registered on the portable media."
   13278             :         },
   13279             :         {
   13280             :                 HRES_NS_E_DRM_INDIV_FRAUD,
   13281             :                 "HRES_NS_E_DRM_INDIV_FRAUD",
   13282             :                 "The security upgrade cannot be completed because the allowed number of daily upgrades has been exceeded. Try again tomorrow."
   13283             :         },
   13284             :         {
   13285             :                 HRES_NS_E_DRM_INDIV_NO_CABS,
   13286             :                 "HRES_NS_E_DRM_INDIV_NO_CABS",
   13287             :                 "The security upgrade cannot be completed because the server is unable to perform the operation. Try again later."
   13288             :         },
   13289             :         {
   13290             :                 HRES_NS_E_DRM_INDIV_SERVICE_UNAVAILABLE,
   13291             :                 "HRES_NS_E_DRM_INDIV_SERVICE_UNAVAILABLE",
   13292             :                 "The security upgrade cannot be performed because the server is not available. Try again later."
   13293             :         },
   13294             :         {
   13295             :                 HRES_NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE,
   13296             :                 "HRES_NS_E_DRM_RESTORE_SERVICE_UNAVAILABLE",
   13297             :                 "Windows Media Player cannot restore your licenses because the server is not available. Try again later."
   13298             :         },
   13299             :         {
   13300             :                 HRES_NS_E_DRM_CLIENT_CODE_EXPIRED,
   13301             :                 "HRES_NS_E_DRM_CLIENT_CODE_EXPIRED",
   13302             :                 "Windows Media Player cannot play the protected file. Verify that your computer's date is set correctly. If it is correct, on the Help menu, click Check for Player Updates to install the latest version of the Player."
   13303             :         },
   13304             :         {
   13305             :                 HRES_NS_E_DRM_NO_UPLINK_LICENSE,
   13306             :                 "HRES_NS_E_DRM_NO_UPLINK_LICENSE",
   13307             :                 "The chained license cannot be created because the referenced uplink license does not exist."
   13308             :         },
   13309             :         {
   13310             :                 HRES_NS_E_DRM_INVALID_KID,
   13311             :                 "HRES_NS_E_DRM_INVALID_KID",
   13312             :                 "The specified KID is invalid."
   13313             :         },
   13314             :         {
   13315             :                 HRES_NS_E_DRM_LICENSE_INITIALIZATION_ERROR,
   13316             :                 "HRES_NS_E_DRM_LICENSE_INITIALIZATION_ERROR",
   13317             :                 "License initialization did not work. Contact Microsoft product support."
   13318             :         },
   13319             :         {
   13320             :                 HRES_NS_E_DRM_CHAIN_TOO_LONG,
   13321             :                 "HRES_NS_E_DRM_CHAIN_TOO_LONG",
   13322             :                 "The uplink license of a chained license cannot itself be a chained license."
   13323             :         },
   13324             :         {
   13325             :                 HRES_NS_E_DRM_UNSUPPORTED_ALGORITHM,
   13326             :                 "HRES_NS_E_DRM_UNSUPPORTED_ALGORITHM",
   13327             :                 "The specified encryption algorithm is unsupported."
   13328             :         },
   13329             :         {
   13330             :                 HRES_NS_E_DRM_LICENSE_DELETION_ERROR,
   13331             :                 "HRES_NS_E_DRM_LICENSE_DELETION_ERROR",
   13332             :                 "License deletion did not work. Contact Microsoft product support."
   13333             :         },
   13334             :         {
   13335             :                 HRES_NS_E_DRM_INVALID_CERTIFICATE,
   13336             :                 "HRES_NS_E_DRM_INVALID_CERTIFICATE",
   13337             :                 "The client's certificate is corrupted or the signature cannot be verified."
   13338             :         },
   13339             :         {
   13340             :                 HRES_NS_E_DRM_CERTIFICATE_REVOKED,
   13341             :                 "HRES_NS_E_DRM_CERTIFICATE_REVOKED",
   13342             :                 "The client's certificate has been revoked."
   13343             :         },
   13344             :         {
   13345             :                 HRES_NS_E_DRM_LICENSE_UNAVAILABLE,
   13346             :                 "HRES_NS_E_DRM_LICENSE_UNAVAILABLE",
   13347             :                 "There is no license available for the requested action."
   13348             :         },
   13349             :         {
   13350             :                 HRES_NS_E_DRM_DEVICE_LIMIT_REACHED,
   13351             :                 "HRES_NS_E_DRM_DEVICE_LIMIT_REACHED",
   13352             :                 "The maximum number of devices in use has been reached. Unable to open additional devices."
   13353             :         },
   13354             :         {
   13355             :                 HRES_NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY,
   13356             :                 "HRES_NS_E_DRM_UNABLE_TO_VERIFY_PROXIMITY",
   13357             :                 "The proximity detection procedure could not confirm that the receiver is near the transmitter in the network."
   13358             :         },
   13359             :         {
   13360             :                 HRES_NS_E_DRM_MUST_REGISTER,
   13361             :                 "HRES_NS_E_DRM_MUST_REGISTER",
   13362             :                 "The client must be registered before executing the intended operation."
   13363             :         },
   13364             :         {
   13365             :                 HRES_NS_E_DRM_MUST_APPROVE,
   13366             :                 "HRES_NS_E_DRM_MUST_APPROVE",
   13367             :                 "The client must be approved before executing the intended operation."
   13368             :         },
   13369             :         {
   13370             :                 HRES_NS_E_DRM_MUST_REVALIDATE,
   13371             :                 "HRES_NS_E_DRM_MUST_REVALIDATE",
   13372             :                 "The client must be revalidated before executing the intended operation."
   13373             :         },
   13374             :         {
   13375             :                 HRES_NS_E_DRM_INVALID_PROXIMITY_RESPONSE,
   13376             :                 "HRES_NS_E_DRM_INVALID_PROXIMITY_RESPONSE",
   13377             :                 "The response to the proximity detection challenge is invalid."
   13378             :         },
   13379             :         {
   13380             :                 HRES_NS_E_DRM_INVALID_SESSION,
   13381             :                 "HRES_NS_E_DRM_INVALID_SESSION",
   13382             :                 "The requested session is invalid."
   13383             :         },
   13384             :         {
   13385             :                 HRES_NS_E_DRM_DEVICE_NOT_OPEN,
   13386             :                 "HRES_NS_E_DRM_DEVICE_NOT_OPEN",
   13387             :                 "The device must be opened before it can be used to receive content."
   13388             :         },
   13389             :         {
   13390             :                 HRES_NS_E_DRM_DEVICE_ALREADY_REGISTERED,
   13391             :                 "HRES_NS_E_DRM_DEVICE_ALREADY_REGISTERED",
   13392             :                 "Device registration failed because the device is already registered."
   13393             :         },
   13394             :         {
   13395             :                 HRES_NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION,
   13396             :                 "HRES_NS_E_DRM_UNSUPPORTED_PROTOCOL_VERSION",
   13397             :                 "Unsupported WMDRM-ND protocol version."
   13398             :         },
   13399             :         {
   13400             :                 HRES_NS_E_DRM_UNSUPPORTED_ACTION,
   13401             :                 "HRES_NS_E_DRM_UNSUPPORTED_ACTION",
   13402             :                 "The requested action is not supported."
   13403             :         },
   13404             :         {
   13405             :                 HRES_NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE,
   13406             :                 "HRES_NS_E_DRM_CERTIFICATE_SECURITY_LEVEL_INADEQUATE",
   13407             :                 "The certificate does not have an adequate security level for the requested action."
   13408             :         },
   13409             :         {
   13410             :                 HRES_NS_E_DRM_UNABLE_TO_OPEN_PORT,
   13411             :                 "HRES_NS_E_DRM_UNABLE_TO_OPEN_PORT",
   13412             :                 "Unable to open the specified port for receiving Proximity messages."
   13413             :         },
   13414             :         {
   13415             :                 HRES_NS_E_DRM_BAD_REQUEST,
   13416             :                 "HRES_NS_E_DRM_BAD_REQUEST",
   13417             :                 "The message format is invalid."
   13418             :         },
   13419             :         {
   13420             :                 HRES_NS_E_DRM_INVALID_CRL,
   13421             :                 "HRES_NS_E_DRM_INVALID_CRL",
   13422             :                 "The Certificate Revocation List is invalid or corrupted."
   13423             :         },
   13424             :         {
   13425             :                 HRES_NS_E_DRM_ATTRIBUTE_TOO_LONG,
   13426             :                 "HRES_NS_E_DRM_ATTRIBUTE_TOO_LONG",
   13427             :                 "The length of the attribute name or value is too long."
   13428             :         },
   13429             :         {
   13430             :                 HRES_NS_E_DRM_EXPIRED_LICENSEBLOB,
   13431             :                 "HRES_NS_E_DRM_EXPIRED_LICENSEBLOB",
   13432             :                 "The license blob passed in the cardea request is expired."
   13433             :         },
   13434             :         {
   13435             :                 HRES_NS_E_DRM_INVALID_LICENSEBLOB,
   13436             :                 "HRES_NS_E_DRM_INVALID_LICENSEBLOB",
   13437             :                 "The license blob passed in the cardea request is invalid. Contact Microsoft product support."
   13438             :         },
   13439             :         {
   13440             :                 HRES_NS_E_DRM_INCLUSION_LIST_REQUIRED,
   13441             :                 "HRES_NS_E_DRM_INCLUSION_LIST_REQUIRED",
   13442             :                 "The requested operation cannot be performed because the license does not contain an inclusion list."
   13443             :         },
   13444             :         {
   13445             :                 HRES_NS_E_DRM_DRMV2CLT_REVOKED,
   13446             :                 "HRES_NS_E_DRM_DRMV2CLT_REVOKED",
   13447             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   13448             :         },
   13449             :         {
   13450             :                 HRES_NS_E_DRM_RIV_TOO_SMALL,
   13451             :                 "HRES_NS_E_DRM_RIV_TOO_SMALL",
   13452             :                 "A problem has occurred in the Digital Rights Management component. Contact Microsoft product support."
   13453             :         },
   13454             :         {
   13455             :                 HRES_NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED,
   13456             :                 "HRES_NS_E_OUTPUT_PROTECTION_LEVEL_UNSUPPORTED",
   13457             :                 "Windows Media Player does not support the level of output protection required by the content."
   13458             :         },
   13459             :         {
   13460             :                 HRES_NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED,
   13461             :                 "HRES_NS_E_COMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED",
   13462             :                 "Windows Media Player does not support the level of protection required for compressed digital video."
   13463             :         },
   13464             :         {
   13465             :                 HRES_NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED,
   13466             :                 "HRES_NS_E_UNCOMPRESSED_DIGITAL_VIDEO_PROTECTION_LEVEL_UNSUPPORTED",
   13467             :                 "Windows Media Player does not support the level of protection required for uncompressed digital video."
   13468             :         },
   13469             :         {
   13470             :                 HRES_NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED,
   13471             :                 "HRES_NS_E_ANALOG_VIDEO_PROTECTION_LEVEL_UNSUPPORTED",
   13472             :                 "Windows Media Player does not support the level of protection required for analog video."
   13473             :         },
   13474             :         {
   13475             :                 HRES_NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED,
   13476             :                 "HRES_NS_E_COMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED",
   13477             :                 "Windows Media Player does not support the level of protection required for compressed digital audio."
   13478             :         },
   13479             :         {
   13480             :                 HRES_NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED,
   13481             :                 "HRES_NS_E_UNCOMPRESSED_DIGITAL_AUDIO_PROTECTION_LEVEL_UNSUPPORTED",
   13482             :                 "Windows Media Player does not support the level of protection required for uncompressed digital audio."
   13483             :         },
   13484             :         {
   13485             :                 HRES_NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED,
   13486             :                 "HRES_NS_E_OUTPUT_PROTECTION_SCHEME_UNSUPPORTED",
   13487             :                 "Windows Media Player does not support the scheme of output protection required by the content."
   13488             :         },
   13489             :         {
   13490             :                 HRES_NS_E_REBOOT_RECOMMENDED,
   13491             :                 "HRES_NS_E_REBOOT_RECOMMENDED",
   13492             :                 "Installation was not successful and some file cleanup is not complete. For best results, restart your computer."
   13493             :         },
   13494             :         {
   13495             :                 HRES_NS_E_REBOOT_REQUIRED,
   13496             :                 "HRES_NS_E_REBOOT_REQUIRED",
   13497             :                 "Installation was not successful. To continue, you must restart your computer."
   13498             :         },
   13499             :         {
   13500             :                 HRES_NS_E_SETUP_INCOMPLETE,
   13501             :                 "HRES_NS_E_SETUP_INCOMPLETE",
   13502             :                 "Installation was not successful."
   13503             :         },
   13504             :         {
   13505             :                 HRES_NS_E_SETUP_DRM_MIGRATION_FAILED,
   13506             :                 "HRES_NS_E_SETUP_DRM_MIGRATION_FAILED",
   13507             :                 "Setup cannot migrate the Windows Media Digital Rights Management (DRM) components."
   13508             :         },
   13509             :         {
   13510             :                 HRES_NS_E_SETUP_IGNORABLE_FAILURE,
   13511             :                 "HRES_NS_E_SETUP_IGNORABLE_FAILURE",
   13512             :                 "Some skin or playlist components cannot be installed."
   13513             :         },
   13514             :         {
   13515             :                 HRES_NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE,
   13516             :                 "HRES_NS_E_SETUP_DRM_MIGRATION_FAILED_AND_IGNORABLE_FAILURE",
   13517             :                 "Setup cannot migrate the Windows Media Digital Rights Management (DRM) components. In addition, some skin or playlist components cannot be installed."
   13518             :         },
   13519             :         {
   13520             :                 HRES_NS_E_SETUP_BLOCKED,
   13521             :                 "HRES_NS_E_SETUP_BLOCKED",
   13522             :                 "Installation is blocked because your computer does not meet one or more of the setup requirements."
   13523             :         },
   13524             :         {
   13525             :                 HRES_NS_E_UNKNOWN_PROTOCOL,
   13526             :                 "HRES_NS_E_UNKNOWN_PROTOCOL",
   13527             :                 "The specified protocol is not supported."
   13528             :         },
   13529             :         {
   13530             :                 HRES_NS_E_REDIRECT_TO_PROXY,
   13531             :                 "HRES_NS_E_REDIRECT_TO_PROXY",
   13532             :                 "The client is redirected to a proxy server."
   13533             :         },
   13534             :         {
   13535             :                 HRES_NS_E_INTERNAL_SERVER_ERROR,
   13536             :                 "HRES_NS_E_INTERNAL_SERVER_ERROR",
   13537             :                 "The server encountered an unexpected condition which prevented it from fulfilling the request."
   13538             :         },
   13539             :         {
   13540             :                 HRES_NS_E_BAD_REQUEST,
   13541             :                 "HRES_NS_E_BAD_REQUEST",
   13542             :                 "The request could not be understood by the server."
   13543             :         },
   13544             :         {
   13545             :                 HRES_NS_E_ERROR_FROM_PROXY,
   13546             :                 "HRES_NS_E_ERROR_FROM_PROXY",
   13547             :                 "The proxy experienced an error while attempting to contact the media server."
   13548             :         },
   13549             :         {
   13550             :                 HRES_NS_E_PROXY_TIMEOUT,
   13551             :                 "HRES_NS_E_PROXY_TIMEOUT",
   13552             :                 "The proxy did not receive a timely response while attempting to contact the media server."
   13553             :         },
   13554             :         {
   13555             :                 HRES_NS_E_SERVER_UNAVAILABLE,
   13556             :                 "HRES_NS_E_SERVER_UNAVAILABLE",
   13557             :                 "The server is currently unable to handle the request due to a temporary overloading or maintenance of the server."
   13558             :         },
   13559             :         {
   13560             :                 HRES_NS_E_REFUSED_BY_SERVER,
   13561             :                 "HRES_NS_E_REFUSED_BY_SERVER",
   13562             :                 "The server is refusing to fulfill the requested operation."
   13563             :         },
   13564             :         {
   13565             :                 HRES_NS_E_INCOMPATIBLE_SERVER,
   13566             :                 "HRES_NS_E_INCOMPATIBLE_SERVER",
   13567             :                 "The server is not a compatible streaming media server."
   13568             :         },
   13569             :         {
   13570             :                 HRES_NS_E_MULTICAST_DISABLED,
   13571             :                 "HRES_NS_E_MULTICAST_DISABLED",
   13572             :                 "The content cannot be streamed because the Multicast protocol has been disabled."
   13573             :         },
   13574             :         {
   13575             :                 HRES_NS_E_INVALID_REDIRECT,
   13576             :                 "HRES_NS_E_INVALID_REDIRECT",
   13577             :                 "The server redirected the player to an invalid location."
   13578             :         },
   13579             :         {
   13580             :                 HRES_NS_E_ALL_PROTOCOLS_DISABLED,
   13581             :                 "HRES_NS_E_ALL_PROTOCOLS_DISABLED",
   13582             :                 "The content cannot be streamed because all protocols have been disabled."
   13583             :         },
   13584             :         {
   13585             :                 HRES_NS_E_MSBD_NO_LONGER_SUPPORTED,
   13586             :                 "HRES_NS_E_MSBD_NO_LONGER_SUPPORTED",
   13587             :                 "The MSBD protocol is no longer supported. Please use HTTP to connect to the Windows Media stream."
   13588             :         },
   13589             :         {
   13590             :                 HRES_NS_E_PROXY_NOT_FOUND,
   13591             :                 "HRES_NS_E_PROXY_NOT_FOUND",
   13592             :                 "The proxy server could not be located. Please check your proxy server configuration."
   13593             :         },
   13594             :         {
   13595             :                 HRES_NS_E_CANNOT_CONNECT_TO_PROXY,
   13596             :                 "HRES_NS_E_CANNOT_CONNECT_TO_PROXY",
   13597             :                 "Unable to establish a connection to the proxy server. Please check your proxy server configuration."
   13598             :         },
   13599             :         {
   13600             :                 HRES_NS_E_SERVER_DNS_TIMEOUT,
   13601             :                 "HRES_NS_E_SERVER_DNS_TIMEOUT",
   13602             :                 "Unable to locate the media server. The operation timed out."
   13603             :         },
   13604             :         {
   13605             :                 HRES_NS_E_PROXY_DNS_TIMEOUT,
   13606             :                 "HRES_NS_E_PROXY_DNS_TIMEOUT",
   13607             :                 "Unable to locate the proxy server. The operation timed out."
   13608             :         },
   13609             :         {
   13610             :                 HRES_NS_E_CLOSED_ON_SUSPEND,
   13611             :                 "HRES_NS_E_CLOSED_ON_SUSPEND",
   13612             :                 "Media closed because Windows was shut down."
   13613             :         },
   13614             :         {
   13615             :                 HRES_NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER,
   13616             :                 "HRES_NS_E_CANNOT_READ_PLAYLIST_FROM_MEDIASERVER",
   13617             :                 "Unable to read the contents of a playlist file from a media server."
   13618             :         },
   13619             :         {
   13620             :                 HRES_NS_E_SESSION_NOT_FOUND,
   13621             :                 "HRES_NS_E_SESSION_NOT_FOUND",
   13622             :                 "Session not found."
   13623             :         },
   13624             :         {
   13625             :                 HRES_NS_E_REQUIRE_STREAMING_CLIENT,
   13626             :                 "HRES_NS_E_REQUIRE_STREAMING_CLIENT",
   13627             :                 "Content requires a streaming media client."
   13628             :         },
   13629             :         {
   13630             :                 HRES_NS_E_PLAYLIST_ENTRY_HAS_CHANGED,
   13631             :                 "HRES_NS_E_PLAYLIST_ENTRY_HAS_CHANGED",
   13632             :                 "A command applies to a previous playlist entry."
   13633             :         },
   13634             :         {
   13635             :                 HRES_NS_E_PROXY_ACCESSDENIED,
   13636             :                 "HRES_NS_E_PROXY_ACCESSDENIED",
   13637             :                 "The proxy server is denying access. The username and/or password might be incorrect."
   13638             :         },
   13639             :         {
   13640             :                 HRES_NS_E_PROXY_SOURCE_ACCESSDENIED,
   13641             :                 "HRES_NS_E_PROXY_SOURCE_ACCESSDENIED",
   13642             :                 "The proxy could not provide valid authentication credentials to the media server."
   13643             :         },
   13644             :         {
   13645             :                 HRES_NS_E_NETWORK_SINK_WRITE,
   13646             :                 "HRES_NS_E_NETWORK_SINK_WRITE",
   13647             :                 "The network sink failed to write data to the network."
   13648             :         },
   13649             :         {
   13650             :                 HRES_NS_E_FIREWALL,
   13651             :                 "HRES_NS_E_FIREWALL",
   13652             :                 "Packets are not being received from the server. The packets might be blocked by a filtering device, such as a network firewall."
   13653             :         },
   13654             :         {
   13655             :                 HRES_NS_E_MMS_NOT_SUPPORTED,
   13656             :                 "HRES_NS_E_MMS_NOT_SUPPORTED",
   13657             :                 "The MMS protocol is not supported. Please use HTTP or RTSP to connect to the Windows Media stream."
   13658             :         },
   13659             :         {
   13660             :                 HRES_NS_E_SERVER_ACCESSDENIED,
   13661             :                 "HRES_NS_E_SERVER_ACCESSDENIED",
   13662             :                 "The Windows Media server is denying access. The username and/or password might be incorrect."
   13663             :         },
   13664             :         {
   13665             :                 HRES_NS_E_RESOURCE_GONE,
   13666             :                 "HRES_NS_E_RESOURCE_GONE",
   13667             :                 "The Publishing Point or file on the Windows Media Server is no longer available."
   13668             :         },
   13669             :         {
   13670             :                 HRES_NS_E_NO_EXISTING_PACKETIZER,
   13671             :                 "HRES_NS_E_NO_EXISTING_PACKETIZER",
   13672             :                 "There is no existing packetizer plugin for a stream."
   13673             :         },
   13674             :         {
   13675             :                 HRES_NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE,
   13676             :                 "HRES_NS_E_BAD_SYNTAX_IN_SERVER_RESPONSE",
   13677             :                 "The response from the media server could not be understood. This might be caused by an incompatible proxy server or media server."
   13678             :         },
   13679             :         {
   13680             :                 HRES_NS_E_RESET_SOCKET_CONNECTION,
   13681             :                 "HRES_NS_E_RESET_SOCKET_CONNECTION",
   13682             :                 "The Windows Media Server reset the network connection."
   13683             :         },
   13684             :         {
   13685             :                 HRES_NS_E_TOO_MANY_HOPS,
   13686             :                 "HRES_NS_E_TOO_MANY_HOPS",
   13687             :                 "The request could not reach the media server (too many hops)."
   13688             :         },
   13689             :         {
   13690             :                 HRES_NS_E_TOO_MUCH_DATA_FROM_SERVER,
   13691             :                 "HRES_NS_E_TOO_MUCH_DATA_FROM_SERVER",
   13692             :                 "The server is sending too much data. The connection has been terminated."
   13693             :         },
   13694             :         {
   13695             :                 HRES_NS_E_CONNECT_TIMEOUT,
   13696             :                 "HRES_NS_E_CONNECT_TIMEOUT",
   13697             :                 "It was not possible to establish a connection to the media server in a timely manner. The media server might be down for maintenance, or it might be necessary to use a proxy server to access this media server."
   13698             :         },
   13699             :         {
   13700             :                 HRES_NS_E_PROXY_CONNECT_TIMEOUT,
   13701             :                 "HRES_NS_E_PROXY_CONNECT_TIMEOUT",
   13702             :                 "It was not possible to establish a connection to the proxy server in a timely manner. Please check your proxy server configuration."
   13703             :         },
   13704             :         {
   13705             :                 HRES_NS_E_SESSION_INVALID,
   13706             :                 "HRES_NS_E_SESSION_INVALID",
   13707             :                 "Session not found."
   13708             :         },
   13709             :         {
   13710             :                 HRES_NS_E_PACKETSINK_UNKNOWN_FEC_STREAM,
   13711             :                 "HRES_NS_E_PACKETSINK_UNKNOWN_FEC_STREAM",
   13712             :                 "Unknown packet sink stream."
   13713             :         },
   13714             :         {
   13715             :                 HRES_NS_E_PUSH_CANNOTCONNECT,
   13716             :                 "HRES_NS_E_PUSH_CANNOTCONNECT",
   13717             :                 "Unable to establish a connection to the server. Ensure Windows Media Services is started and the HTTP Server control protocol is properly enabled."
   13718             :         },
   13719             :         {
   13720             :                 HRES_NS_E_INCOMPATIBLE_PUSH_SERVER,
   13721             :                 "HRES_NS_E_INCOMPATIBLE_PUSH_SERVER",
   13722             :                 "The Server service that received the HTTP push request is not a compatible version of Windows Media Services (WMS). This error might indicate the push request was received by IIS instead of WMS. Ensure WMS is started and has the HTTP Server control protocol properly enabled and try again."
   13723             :         },
   13724             :         {
   13725             :                 HRES_NS_E_END_OF_PLAYLIST,
   13726             :                 "HRES_NS_E_END_OF_PLAYLIST",
   13727             :                 "The playlist has reached its end."
   13728             :         },
   13729             :         {
   13730             :                 HRES_NS_E_USE_FILE_SOURCE,
   13731             :                 "HRES_NS_E_USE_FILE_SOURCE",
   13732             :                 "Use file source."
   13733             :         },
   13734             :         {
   13735             :                 HRES_NS_E_PROPERTY_NOT_FOUND,
   13736             :                 "HRES_NS_E_PROPERTY_NOT_FOUND",
   13737             :                 "The property was not found."
   13738             :         },
   13739             :         {
   13740             :                 HRES_NS_E_PROPERTY_READ_ONLY,
   13741             :                 "HRES_NS_E_PROPERTY_READ_ONLY",
   13742             :                 "The property is read only."
   13743             :         },
   13744             :         {
   13745             :                 HRES_NS_E_TABLE_KEY_NOT_FOUND,
   13746             :                 "HRES_NS_E_TABLE_KEY_NOT_FOUND",
   13747             :                 "The table key was not found."
   13748             :         },
   13749             :         {
   13750             :                 HRES_NS_E_INVALID_QUERY_OPERATOR,
   13751             :                 "HRES_NS_E_INVALID_QUERY_OPERATOR",
   13752             :                 "Invalid query operator."
   13753             :         },
   13754             :         {
   13755             :                 HRES_NS_E_INVALID_QUERY_PROPERTY,
   13756             :                 "HRES_NS_E_INVALID_QUERY_PROPERTY",
   13757             :                 "Invalid query property."
   13758             :         },
   13759             :         {
   13760             :                 HRES_NS_E_PROPERTY_NOT_SUPPORTED,
   13761             :                 "HRES_NS_E_PROPERTY_NOT_SUPPORTED",
   13762             :                 "The property is not supported."
   13763             :         },
   13764             :         {
   13765             :                 HRES_NS_E_SCHEMA_CLASSIFY_FAILURE,
   13766             :                 "HRES_NS_E_SCHEMA_CLASSIFY_FAILURE",
   13767             :                 "Schema classification failure."
   13768             :         },
   13769             :         {
   13770             :                 HRES_NS_E_METADATA_FORMAT_NOT_SUPPORTED,
   13771             :                 "HRES_NS_E_METADATA_FORMAT_NOT_SUPPORTED",
   13772             :                 "The metadata format is not supported."
   13773             :         },
   13774             :         {
   13775             :                 HRES_NS_E_METADATA_NO_EDITING_CAPABILITY,
   13776             :                 "HRES_NS_E_METADATA_NO_EDITING_CAPABILITY",
   13777             :                 "Cannot edit the metadata."
   13778             :         },
   13779             :         {
   13780             :                 HRES_NS_E_METADATA_CANNOT_SET_LOCALE,
   13781             :                 "HRES_NS_E_METADATA_CANNOT_SET_LOCALE",
   13782             :                 "Cannot set the locale id."
   13783             :         },
   13784             :         {
   13785             :                 HRES_NS_E_METADATA_LANGUAGE_NOT_SUPORTED,
   13786             :                 "HRES_NS_E_METADATA_LANGUAGE_NOT_SUPORTED",
   13787             :                 "The language is not supported in the format."
   13788             :         },
   13789             :         {
   13790             :                 HRES_NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE,
   13791             :                 "HRES_NS_E_METADATA_NO_RFC1766_NAME_FOR_LOCALE",
   13792             :                 "There is no RFC1766 name translation for the supplied locale id."
   13793             :         },
   13794             :         {
   13795             :                 HRES_NS_E_METADATA_NOT_AVAILABLE,
   13796             :                 "HRES_NS_E_METADATA_NOT_AVAILABLE",
   13797             :                 "The metadata (or metadata item) is not available."
   13798             :         },
   13799             :         {
   13800             :                 HRES_NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE,
   13801             :                 "HRES_NS_E_METADATA_CACHE_DATA_NOT_AVAILABLE",
   13802             :                 "The cached metadata (or metadata item) is not available."
   13803             :         },
   13804             :         {
   13805             :                 HRES_NS_E_METADATA_INVALID_DOCUMENT_TYPE,
   13806             :                 "HRES_NS_E_METADATA_INVALID_DOCUMENT_TYPE",
   13807             :                 "The metadata document is invalid."
   13808             :         },
   13809             :         {
   13810             :                 HRES_NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE,
   13811             :                 "HRES_NS_E_METADATA_IDENTIFIER_NOT_AVAILABLE",
   13812             :                 "The metadata content identifier is not available."
   13813             :         },
   13814             :         {
   13815             :                 HRES_NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE,
   13816             :                 "HRES_NS_E_METADATA_CANNOT_RETRIEVE_FROM_OFFLINE_CACHE",
   13817             :                 "Cannot retrieve metadata from the offline metadata cache."
   13818             :         },
   13819             :         {
   13820             :                 HRES_ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM,
   13821             :                 "HRES_ERROR_MONITOR_INVALID_DESCRIPTOR_CHECKSUM",
   13822             :                 "Checksum of the obtained monitor descriptor is invalid."
   13823             :         },
   13824             :         {
   13825             :                 HRES_ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK,
   13826             :                 "HRES_ERROR_MONITOR_INVALID_STANDARD_TIMING_BLOCK",
   13827             :                 "Monitor descriptor contains an invalid standard timing block."
   13828             :         },
   13829             :         {
   13830             :                 HRES_ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED,
   13831             :                 "HRES_ERROR_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED",
   13832             :                 "Windows Management Instrumentation (WMI) data block registration failed for one of the MSMonitorClass WMI subclasses."
   13833             :         },
   13834             :         {
   13835             :                 HRES_ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK,
   13836             :                 "HRES_ERROR_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK",
   13837             :                 "Provided monitor descriptor block is either corrupted or does not contain the monitor's detailed serial number."
   13838             :         },
   13839             :         {
   13840             :                 HRES_ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK,
   13841             :                 "HRES_ERROR_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK",
   13842             :                 "Provided monitor descriptor block is either corrupted or does not contain the monitor's user-friendly name."
   13843             :         },
   13844             :         {
   13845             :                 HRES_ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA,
   13846             :                 "HRES_ERROR_MONITOR_NO_MORE_DESCRIPTOR_DATA",
   13847             :                 "There is no monitor descriptor data at the specified (offset, size) region."
   13848             :         },
   13849             :         {
   13850             :                 HRES_ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK,
   13851             :                 "HRES_ERROR_MONITOR_INVALID_DETAILED_TIMING_BLOCK",
   13852             :                 "Monitor descriptor contains an invalid detailed timing block."
   13853             :         },
   13854             :         {
   13855             :                 HRES_ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER,
   13856             :                 "HRES_ERROR_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER",
   13857             :                 "Exclusive mode ownership is needed to create unmanaged primary allocation."
   13858             :         },
   13859             :         {
   13860             :                 HRES_ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER,
   13861             :                 "HRES_ERROR_GRAPHICS_INSUFFICIENT_DMA_BUFFER",
   13862             :                 "The driver needs more direct memory access (DMA) buffer space to complete the requested operation."
   13863             :         },
   13864             :         {
   13865             :                 HRES_ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER,
   13866             :                 "HRES_ERROR_GRAPHICS_INVALID_DISPLAY_ADAPTER",
   13867             :                 "Specified display adapter handle is invalid."
   13868             :         },
   13869             :         {
   13870             :                 HRES_ERROR_GRAPHICS_ADAPTER_WAS_RESET,
   13871             :                 "HRES_ERROR_GRAPHICS_ADAPTER_WAS_RESET",
   13872             :                 "Specified display adapter and all of its state has been reset."
   13873             :         },
   13874             :         {
   13875             :                 HRES_ERROR_GRAPHICS_INVALID_DRIVER_MODEL,
   13876             :                 "HRES_ERROR_GRAPHICS_INVALID_DRIVER_MODEL",
   13877             :                 "The driver stack does not match the expected driver model."
   13878             :         },
   13879             :         {
   13880             :                 HRES_ERROR_GRAPHICS_PRESENT_MODE_CHANGED,
   13881             :                 "HRES_ERROR_GRAPHICS_PRESENT_MODE_CHANGED",
   13882             :                 "Present happened but ended up into the changed desktop mode."
   13883             :         },
   13884             :         {
   13885             :                 HRES_ERROR_GRAPHICS_PRESENT_OCCLUDED,
   13886             :                 "HRES_ERROR_GRAPHICS_PRESENT_OCCLUDED",
   13887             :                 "Nothing to present due to desktop occlusion."
   13888             :         },
   13889             :         {
   13890             :                 HRES_ERROR_GRAPHICS_PRESENT_DENIED,
   13891             :                 "HRES_ERROR_GRAPHICS_PRESENT_DENIED",
   13892             :                 "Not able to present due to denial of desktop access."
   13893             :         },
   13894             :         {
   13895             :                 HRES_ERROR_GRAPHICS_CANNOTCOLORCONVERT,
   13896             :                 "HRES_ERROR_GRAPHICS_CANNOTCOLORCONVERT",
   13897             :                 "Not able to present with color conversion."
   13898             :         },
   13899             :         {
   13900             :                 HRES_ERROR_GRAPHICS_NO_VIDEO_MEMORY,
   13901             :                 "HRES_ERROR_GRAPHICS_NO_VIDEO_MEMORY",
   13902             :                 "Not enough video memory available to complete the operation."
   13903             :         },
   13904             :         {
   13905             :                 HRES_ERROR_GRAPHICS_CANT_LOCK_MEMORY,
   13906             :                 "HRES_ERROR_GRAPHICS_CANT_LOCK_MEMORY",
   13907             :                 "Could not probe and lock the underlying memory of an allocation."
   13908             :         },
   13909             :         {
   13910             :                 HRES_ERROR_GRAPHICS_ALLOCATION_BUSY,
   13911             :                 "HRES_ERROR_GRAPHICS_ALLOCATION_BUSY",
   13912             :                 "The allocation is currently busy."
   13913             :         },
   13914             :         {
   13915             :                 HRES_ERROR_GRAPHICS_TOO_MANY_REFERENCES,
   13916             :                 "HRES_ERROR_GRAPHICS_TOO_MANY_REFERENCES",
   13917             :                 "An object being referenced has reach the maximum reference count already and cannot be referenced further."
   13918             :         },
   13919             :         {
   13920             :                 HRES_ERROR_GRAPHICS_TRY_AGAIN_LATER,
   13921             :                 "HRES_ERROR_GRAPHICS_TRY_AGAIN_LATER",
   13922             :                 "A problem could not be solved due to some currently existing condition. The problem should be tried again later."
   13923             :         },
   13924             :         {
   13925             :                 HRES_ERROR_GRAPHICS_TRY_AGAIN_NOW,
   13926             :                 "HRES_ERROR_GRAPHICS_TRY_AGAIN_NOW",
   13927             :                 "A problem could not be solved due to some currently existing condition. The problem should be tried again immediately."
   13928             :         },
   13929             :         {
   13930             :                 HRES_ERROR_GRAPHICS_ALLOCATION_INVALID,
   13931             :                 "HRES_ERROR_GRAPHICS_ALLOCATION_INVALID",
   13932             :                 "The allocation is invalid."
   13933             :         },
   13934             :         {
   13935             :                 HRES_ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE,
   13936             :                 "HRES_ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE",
   13937             :                 "No more unswizzling apertures are currently available."
   13938             :         },
   13939             :         {
   13940             :                 HRES_ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED,
   13941             :                 "HRES_ERROR_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED",
   13942             :                 "The current allocation cannot be unswizzled by an aperture."
   13943             :         },
   13944             :         {
   13945             :                 HRES_ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION,
   13946             :                 "HRES_ERROR_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION",
   13947             :                 "The request failed because a pinned allocation cannot be evicted."
   13948             :         },
   13949             :         {
   13950             :                 HRES_ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE,
   13951             :                 "HRES_ERROR_GRAPHICS_INVALID_ALLOCATION_USAGE",
   13952             :                 "The allocation cannot be used from its current segment location for the specified operation."
   13953             :         },
   13954             :         {
   13955             :                 HRES_ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION,
   13956             :                 "HRES_ERROR_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION",
   13957             :                 "A locked allocation cannot be used in the current command buffer."
   13958             :         },
   13959             :         {
   13960             :                 HRES_ERROR_GRAPHICS_ALLOCATION_CLOSED,
   13961             :                 "HRES_ERROR_GRAPHICS_ALLOCATION_CLOSED",
   13962             :                 "The allocation being referenced has been closed permanently."
   13963             :         },
   13964             :         {
   13965             :                 HRES_ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE,
   13966             :                 "HRES_ERROR_GRAPHICS_INVALID_ALLOCATION_INSTANCE",
   13967             :                 "An invalid allocation instance is being referenced."
   13968             :         },
   13969             :         {
   13970             :                 HRES_ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE,
   13971             :                 "HRES_ERROR_GRAPHICS_INVALID_ALLOCATION_HANDLE",
   13972             :                 "An invalid allocation handle is being referenced."
   13973             :         },
   13974             :         {
   13975             :                 HRES_ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE,
   13976             :                 "HRES_ERROR_GRAPHICS_WRONG_ALLOCATION_DEVICE",
   13977             :                 "The allocation being referenced does not belong to the current device."
   13978             :         },
   13979             :         {
   13980             :                 HRES_ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST,
   13981             :                 "HRES_ERROR_GRAPHICS_ALLOCATION_CONTENT_LOST",
   13982             :                 "The specified allocation lost its content."
   13983             :         },
   13984             :         {
   13985             :                 HRES_ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE,
   13986             :                 "HRES_ERROR_GRAPHICS_GPU_EXCEPTION_ON_DEVICE",
   13987             :                 "Graphics processing unit (GPU) exception is detected on the given device. The device is not able to be scheduled."
   13988             :         },
   13989             :         {
   13990             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY,
   13991             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY",
   13992             :                 "Specified video present network (VidPN) topology is invalid."
   13993             :         },
   13994             :         {
   13995             :                 HRES_ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED,
   13996             :                 "HRES_ERROR_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED",
   13997             :                 "Specified VidPN topology is valid but is not supported by this model of the display adapter."
   13998             :         },
   13999             :         {
   14000             :                 HRES_ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED,
   14001             :                 "HRES_ERROR_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED",
   14002             :                 "Specified VidPN topology is valid but is not supported by the display adapter at this time, due to current allocation of its resources."
   14003             :         },
   14004             :         {
   14005             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN,
   14006             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN",
   14007             :                 "Specified VidPN handle is invalid."
   14008             :         },
   14009             :         {
   14010             :                 HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE,
   14011             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE",
   14012             :                 "Specified video present source is invalid."
   14013             :         },
   14014             :         {
   14015             :                 HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET,
   14016             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET",
   14017             :                 "Specified video present target is invalid."
   14018             :         },
   14019             :         {
   14020             :                 HRES_ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED,
   14021             :                 "HRES_ERROR_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED",
   14022             :                 "Specified VidPN modality is not supported (for example, at least two of the pinned modes are not cofunctional)."
   14023             :         },
   14024             :         {
   14025             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET,
   14026             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN_SOURCEMODESET",
   14027             :                 "Specified VidPN source mode set is invalid."
   14028             :         },
   14029             :         {
   14030             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET,
   14031             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN_TARGETMODESET",
   14032             :                 "Specified VidPN target mode set is invalid."
   14033             :         },
   14034             :         {
   14035             :                 HRES_ERROR_GRAPHICS_INVALID_FREQUENCY,
   14036             :                 "HRES_ERROR_GRAPHICS_INVALID_FREQUENCY",
   14037             :                 "Specified video signal frequency is invalid."
   14038             :         },
   14039             :         {
   14040             :                 HRES_ERROR_GRAPHICS_INVALID_ACTIVE_REGION,
   14041             :                 "HRES_ERROR_GRAPHICS_INVALID_ACTIVE_REGION",
   14042             :                 "Specified video signal active region is invalid."
   14043             :         },
   14044             :         {
   14045             :                 HRES_ERROR_GRAPHICS_INVALID_TOTAL_REGION,
   14046             :                 "HRES_ERROR_GRAPHICS_INVALID_TOTAL_REGION",
   14047             :                 "Specified video signal total region is invalid."
   14048             :         },
   14049             :         {
   14050             :                 HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE,
   14051             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE",
   14052             :                 "Specified video present source mode is invalid."
   14053             :         },
   14054             :         {
   14055             :                 HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE,
   14056             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE",
   14057             :                 "Specified video present target mode is invalid."
   14058             :         },
   14059             :         {
   14060             :                 HRES_ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET,
   14061             :                 "HRES_ERROR_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET",
   14062             :                 "Pinned mode must remain in the set on VidPN's cofunctional modality enumeration."
   14063             :         },
   14064             :         {
   14065             :                 HRES_ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY,
   14066             :                 "HRES_ERROR_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY",
   14067             :                 "Specified video present path is already in the VidPN topology."
   14068             :         },
   14069             :         {
   14070             :                 HRES_ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET,
   14071             :                 "HRES_ERROR_GRAPHICS_MODE_ALREADY_IN_MODESET",
   14072             :                 "Specified mode is already in the mode set."
   14073             :         },
   14074             :         {
   14075             :                 HRES_ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET,
   14076             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET",
   14077             :                 "Specified video present source set is invalid."
   14078             :         },
   14079             :         {
   14080             :                 HRES_ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET,
   14081             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET",
   14082             :                 "Specified video present target set is invalid."
   14083             :         },
   14084             :         {
   14085             :                 HRES_ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET,
   14086             :                 "HRES_ERROR_GRAPHICS_SOURCE_ALREADY_IN_SET",
   14087             :                 "Specified video present source is already in the video present source set."
   14088             :         },
   14089             :         {
   14090             :                 HRES_ERROR_GRAPHICS_TARGET_ALREADY_IN_SET,
   14091             :                 "HRES_ERROR_GRAPHICS_TARGET_ALREADY_IN_SET",
   14092             :                 "Specified video present target is already in the video present target set."
   14093             :         },
   14094             :         {
   14095             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH,
   14096             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN_PRESENT_PATH",
   14097             :                 "Specified VidPN present path is invalid."
   14098             :         },
   14099             :         {
   14100             :                 HRES_ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY,
   14101             :                 "HRES_ERROR_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY",
   14102             :                 "Miniport has no recommendation for augmentation of the specified VidPN topology."
   14103             :         },
   14104             :         {
   14105             :                 HRES_ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET,
   14106             :                 "HRES_ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET",
   14107             :                 "Specified monitor frequency range set is invalid."
   14108             :         },
   14109             :         {
   14110             :                 HRES_ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE,
   14111             :                 "HRES_ERROR_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE",
   14112             :                 "Specified monitor frequency range is invalid."
   14113             :         },
   14114             :         {
   14115             :                 HRES_ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET,
   14116             :                 "HRES_ERROR_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET",
   14117             :                 "Specified frequency range is not in the specified monitor frequency range set."
   14118             :         },
   14119             :         {
   14120             :                 HRES_ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET,
   14121             :                 "HRES_ERROR_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET",
   14122             :                 "Specified frequency range is already in the specified monitor frequency range set."
   14123             :         },
   14124             :         {
   14125             :                 HRES_ERROR_GRAPHICS_STALE_MODESET,
   14126             :                 "HRES_ERROR_GRAPHICS_STALE_MODESET",
   14127             :                 "Specified mode set is stale. Reacquire the new mode set."
   14128             :         },
   14129             :         {
   14130             :                 HRES_ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET,
   14131             :                 "HRES_ERROR_GRAPHICS_INVALID_MONITOR_SOURCEMODESET",
   14132             :                 "Specified monitor source mode set is invalid."
   14133             :         },
   14134             :         {
   14135             :                 HRES_ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE,
   14136             :                 "HRES_ERROR_GRAPHICS_INVALID_MONITOR_SOURCE_MODE",
   14137             :                 "Specified monitor source mode is invalid."
   14138             :         },
   14139             :         {
   14140             :                 HRES_ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN,
   14141             :                 "HRES_ERROR_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN",
   14142             :                 "Miniport does not have any recommendation regarding the request to provide a functional VidPN given the current display adapter configuration."
   14143             :         },
   14144             :         {
   14145             :                 HRES_ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE,
   14146             :                 "HRES_ERROR_GRAPHICS_MODE_ID_MUST_BE_UNIQUE",
   14147             :                 "ID of the specified mode is already used by another mode in the set."
   14148             :         },
   14149             :         {
   14150             :                 HRES_ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION,
   14151             :                 "HRES_ERROR_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION",
   14152             :                 "System failed to determine a mode that is supported by both the display adapter and the monitor connected to it."
   14153             :         },
   14154             :         {
   14155             :                 HRES_ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES,
   14156             :                 "HRES_ERROR_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES",
   14157             :                 "Number of video present targets must be greater than or equal to the number of video present sources."
   14158             :         },
   14159             :         {
   14160             :                 HRES_ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY,
   14161             :                 "HRES_ERROR_GRAPHICS_PATH_NOT_IN_TOPOLOGY",
   14162             :                 "Specified present path is not in the VidPN topology."
   14163             :         },
   14164             :         {
   14165             :                 HRES_ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE,
   14166             :                 "HRES_ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE",
   14167             :                 "Display adapter must have at least one video present source."
   14168             :         },
   14169             :         {
   14170             :                 HRES_ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET,
   14171             :                 "HRES_ERROR_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET",
   14172             :                 "Display adapter must have at least one video present target."
   14173             :         },
   14174             :         {
   14175             :                 HRES_ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET,
   14176             :                 "HRES_ERROR_GRAPHICS_INVALID_MONITORDESCRIPTORSET",
   14177             :                 "Specified monitor descriptor set is invalid."
   14178             :         },
   14179             :         {
   14180             :                 HRES_ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR,
   14181             :                 "HRES_ERROR_GRAPHICS_INVALID_MONITORDESCRIPTOR",
   14182             :                 "Specified monitor descriptor is invalid."
   14183             :         },
   14184             :         {
   14185             :                 HRES_ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET,
   14186             :                 "HRES_ERROR_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET",
   14187             :                 "Specified descriptor is not in the specified monitor descriptor set."
   14188             :         },
   14189             :         {
   14190             :                 HRES_ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET,
   14191             :                 "HRES_ERROR_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET",
   14192             :                 "Specified descriptor is already in the specified monitor descriptor set."
   14193             :         },
   14194             :         {
   14195             :                 HRES_ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE,
   14196             :                 "HRES_ERROR_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE",
   14197             :                 "ID of the specified monitor descriptor is already used by another descriptor in the set."
   14198             :         },
   14199             :         {
   14200             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE,
   14201             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE",
   14202             :                 "Specified video present target subset type is invalid."
   14203             :         },
   14204             :         {
   14205             :                 HRES_ERROR_GRAPHICS_RESOURCES_NOT_RELATED,
   14206             :                 "HRES_ERROR_GRAPHICS_RESOURCES_NOT_RELATED",
   14207             :                 "Two or more of the specified resources are not related to each other, as defined by the interface semantics."
   14208             :         },
   14209             :         {
   14210             :                 HRES_ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE,
   14211             :                 "HRES_ERROR_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE",
   14212             :                 "ID of the specified video present source is already used by another source in the set."
   14213             :         },
   14214             :         {
   14215             :                 HRES_ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE,
   14216             :                 "HRES_ERROR_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE",
   14217             :                 "ID of the specified video present target is already used by another target in the set."
   14218             :         },
   14219             :         {
   14220             :                 HRES_ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET,
   14221             :                 "HRES_ERROR_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET",
   14222             :                 "Specified VidPN source cannot be used because there is no available VidPN target to connect it to."
   14223             :         },
   14224             :         {
   14225             :                 HRES_ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER,
   14226             :                 "HRES_ERROR_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER",
   14227             :                 "Newly arrived monitor could not be associated with a display adapter."
   14228             :         },
   14229             :         {
   14230             :                 HRES_ERROR_GRAPHICS_NO_VIDPNMGR,
   14231             :                 "HRES_ERROR_GRAPHICS_NO_VIDPNMGR",
   14232             :                 "Display adapter in question does not have an associated VidPN manager."
   14233             :         },
   14234             :         {
   14235             :                 HRES_ERROR_GRAPHICS_NO_ACTIVE_VIDPN,
   14236             :                 "HRES_ERROR_GRAPHICS_NO_ACTIVE_VIDPN",
   14237             :                 "VidPN manager of the display adapter in question does not have an active VidPN."
   14238             :         },
   14239             :         {
   14240             :                 HRES_ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY,
   14241             :                 "HRES_ERROR_GRAPHICS_STALE_VIDPN_TOPOLOGY",
   14242             :                 "Specified VidPN topology is stale. Re-acquire the new topology."
   14243             :         },
   14244             :         {
   14245             :                 HRES_ERROR_GRAPHICS_MONITOR_NOT_CONNECTED,
   14246             :                 "HRES_ERROR_GRAPHICS_MONITOR_NOT_CONNECTED",
   14247             :                 "There is no monitor connected on the specified video present target."
   14248             :         },
   14249             :         {
   14250             :                 HRES_ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY,
   14251             :                 "HRES_ERROR_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY",
   14252             :                 "Specified source is not part of the specified VidPN topology."
   14253             :         },
   14254             :         {
   14255             :                 HRES_ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE,
   14256             :                 "HRES_ERROR_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE",
   14257             :                 "Specified primary surface size is invalid."
   14258             :         },
   14259             :         {
   14260             :                 HRES_ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE,
   14261             :                 "HRES_ERROR_GRAPHICS_INVALID_VISIBLEREGION_SIZE",
   14262             :                 "Specified visible region size is invalid."
   14263             :         },
   14264             :         {
   14265             :                 HRES_ERROR_GRAPHICS_INVALID_STRIDE,
   14266             :                 "HRES_ERROR_GRAPHICS_INVALID_STRIDE",
   14267             :                 "Specified stride is invalid."
   14268             :         },
   14269             :         {
   14270             :                 HRES_ERROR_GRAPHICS_INVALID_PIXELFORMAT,
   14271             :                 "HRES_ERROR_GRAPHICS_INVALID_PIXELFORMAT",
   14272             :                 "Specified pixel format is invalid."
   14273             :         },
   14274             :         {
   14275             :                 HRES_ERROR_GRAPHICS_INVALID_COLORBASIS,
   14276             :                 "HRES_ERROR_GRAPHICS_INVALID_COLORBASIS",
   14277             :                 "Specified color basis is invalid."
   14278             :         },
   14279             :         {
   14280             :                 HRES_ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE,
   14281             :                 "HRES_ERROR_GRAPHICS_INVALID_PIXELVALUEACCESSMODE",
   14282             :                 "Specified pixel value access mode is invalid."
   14283             :         },
   14284             :         {
   14285             :                 HRES_ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY,
   14286             :                 "HRES_ERROR_GRAPHICS_TARGET_NOT_IN_TOPOLOGY",
   14287             :                 "Specified target is not part of the specified VidPN topology."
   14288             :         },
   14289             :         {
   14290             :                 HRES_ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT,
   14291             :                 "HRES_ERROR_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT",
   14292             :                 "Failed to acquire display mode management interface."
   14293             :         },
   14294             :         {
   14295             :                 HRES_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE,
   14296             :                 "HRES_ERROR_GRAPHICS_VIDPN_SOURCE_IN_USE",
   14297             :                 "Specified VidPN source is already owned by a display mode manager (DMM) client and cannot be used until that client releases it."
   14298             :         },
   14299             :         {
   14300             :                 HRES_ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN,
   14301             :                 "HRES_ERROR_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN",
   14302             :                 "Specified VidPN is active and cannot be accessed."
   14303             :         },
   14304             :         {
   14305             :                 HRES_ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL,
   14306             :                 "HRES_ERROR_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL",
   14307             :                 "Specified VidPN present path importance ordinal is invalid."
   14308             :         },
   14309             :         {
   14310             :                 HRES_ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION,
   14311             :                 "HRES_ERROR_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION",
   14312             :                 "Specified VidPN present path content geometry transformation is invalid."
   14313             :         },
   14314             :         {
   14315             :                 HRES_ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED,
   14316             :                 "HRES_ERROR_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED",
   14317             :                 "Specified content geometry transformation is not supported on the respective VidPN present path."
   14318             :         },
   14319             :         {
   14320             :                 HRES_ERROR_GRAPHICS_INVALID_GAMMA_RAMP,
   14321             :                 "HRES_ERROR_GRAPHICS_INVALID_GAMMA_RAMP",
   14322             :                 "Specified gamma ramp is invalid."
   14323             :         },
   14324             :         {
   14325             :                 HRES_ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED,
   14326             :                 "HRES_ERROR_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED",
   14327             :                 "Specified gamma ramp is not supported on the respective VidPN present path."
   14328             :         },
   14329             :         {
   14330             :                 HRES_ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED,
   14331             :                 "HRES_ERROR_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED",
   14332             :                 "Multisampling is not supported on the respective VidPN present path."
   14333             :         },
   14334             :         {
   14335             :                 HRES_ERROR_GRAPHICS_MODE_NOT_IN_MODESET,
   14336             :                 "HRES_ERROR_GRAPHICS_MODE_NOT_IN_MODESET",
   14337             :                 "Specified mode is not in the specified mode set."
   14338             :         },
   14339             :         {
   14340             :                 HRES_ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON,
   14341             :                 "HRES_ERROR_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON",
   14342             :                 "Specified VidPN topology recommendation reason is invalid."
   14343             :         },
   14344             :         {
   14345             :                 HRES_ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE,
   14346             :                 "HRES_ERROR_GRAPHICS_INVALID_PATH_CONTENT_TYPE",
   14347             :                 "Specified VidPN present path content type is invalid."
   14348             :         },
   14349             :         {
   14350             :                 HRES_ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE,
   14351             :                 "HRES_ERROR_GRAPHICS_INVALID_COPYPROTECTION_TYPE",
   14352             :                 "Specified VidPN present path copy protection type is invalid."
   14353             :         },
   14354             :         {
   14355             :                 HRES_ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS,
   14356             :                 "HRES_ERROR_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS",
   14357             :                 "No more than one unassigned mode set can exist at any given time for a given VidPN source or target."
   14358             :         },
   14359             :         {
   14360             :                 HRES_ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING,
   14361             :                 "HRES_ERROR_GRAPHICS_INVALID_SCANLINE_ORDERING",
   14362             :                 "The specified scan line ordering type is invalid."
   14363             :         },
   14364             :         {
   14365             :                 HRES_ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED,
   14366             :                 "HRES_ERROR_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED",
   14367             :                 "Topology changes are not allowed for the specified VidPN."
   14368             :         },
   14369             :         {
   14370             :                 HRES_ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS,
   14371             :                 "HRES_ERROR_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS",
   14372             :                 "All available importance ordinals are already used in the specified topology."
   14373             :         },
   14374             :         {
   14375             :                 HRES_ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT,
   14376             :                 "HRES_ERROR_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT",
   14377             :                 "Specified primary surface has a different private format attribute than the current primary surface."
   14378             :         },
   14379             :         {
   14380             :                 HRES_ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM,
   14381             :                 "HRES_ERROR_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM",
   14382             :                 "Specified mode pruning algorithm is invalid."
   14383             :         },
   14384             :         {
   14385             :                 HRES_ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED,
   14386             :                 "HRES_ERROR_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED",
   14387             :                 "Specified display adapter child device already has an external device connected to it."
   14388             :         },
   14389             :         {
   14390             :                 HRES_ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED,
   14391             :                 "HRES_ERROR_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED",
   14392             :                 "The display adapter child device does not support reporting a descriptor."
   14393             :         },
   14394             :         {
   14395             :                 HRES_ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER,
   14396             :                 "HRES_ERROR_GRAPHICS_NOT_A_LINKED_ADAPTER",
   14397             :                 "The display adapter is not linked to any other adapters."
   14398             :         },
   14399             :         {
   14400             :                 HRES_ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED,
   14401             :                 "HRES_ERROR_GRAPHICS_LEADLINK_NOT_ENUMERATED",
   14402             :                 "Lead adapter in a linked configuration was not enumerated yet."
   14403             :         },
   14404             :         {
   14405             :                 HRES_ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED,
   14406             :                 "HRES_ERROR_GRAPHICS_CHAINLINKS_NOT_ENUMERATED",
   14407             :                 "Some chain adapters in a linked configuration were not enumerated yet."
   14408             :         },
   14409             :         {
   14410             :                 HRES_ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY,
   14411             :                 "HRES_ERROR_GRAPHICS_ADAPTER_CHAIN_NOT_READY",
   14412             :                 "The chain of linked adapters is not ready to start because of an unknown failure."
   14413             :         },
   14414             :         {
   14415             :                 HRES_ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED,
   14416             :                 "HRES_ERROR_GRAPHICS_CHAINLINKS_NOT_STARTED",
   14417             :                 "An attempt was made to start a lead link display adapter when the chain links were not started yet."
   14418             :         },
   14419             :         {
   14420             :                 HRES_ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON,
   14421             :                 "HRES_ERROR_GRAPHICS_CHAINLINKS_NOT_POWERED_ON",
   14422             :                 "An attempt was made to turn on a lead link display adapter when the chain links were turned off."
   14423             :         },
   14424             :         {
   14425             :                 HRES_ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE,
   14426             :                 "HRES_ERROR_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE",
   14427             :                 "The adapter link was found to be in an inconsistent state. Not all adapters are in an expected PNP or power state."
   14428             :         },
   14429             :         {
   14430             :                 HRES_ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER,
   14431             :                 "HRES_ERROR_GRAPHICS_NOT_POST_DEVICE_DRIVER",
   14432             :                 "The driver trying to start is not the same as the driver for the posted display adapter."
   14433             :         },
   14434             :         {
   14435             :                 HRES_ERROR_GRAPHICS_OPM_NOT_SUPPORTED,
   14436             :                 "HRES_ERROR_GRAPHICS_OPM_NOT_SUPPORTED",
   14437             :                 "The driver does not support Output Protection Manager (OPM)."
   14438             :         },
   14439             :         {
   14440             :                 HRES_ERROR_GRAPHICS_COPP_NOT_SUPPORTED,
   14441             :                 "HRES_ERROR_GRAPHICS_COPP_NOT_SUPPORTED",
   14442             :                 "The driver does not support Certified Output Protection Protocol (COPP)."
   14443             :         },
   14444             :         {
   14445             :                 HRES_ERROR_GRAPHICS_UAB_NOT_SUPPORTED,
   14446             :                 "HRES_ERROR_GRAPHICS_UAB_NOT_SUPPORTED",
   14447             :                 "The driver does not support a user-accessible bus (UAB)."
   14448             :         },
   14449             :         {
   14450             :                 HRES_ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS,
   14451             :                 "HRES_ERROR_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS",
   14452             :                 "The specified encrypted parameters are invalid."
   14453             :         },
   14454             :         {
   14455             :                 HRES_ERROR_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL,
   14456             :                 "HRES_ERROR_GRAPHICS_OPM_PARAMETER_ARRAY_TOO_SMALL",
   14457             :                 "An array passed to a function cannot hold all of the data that the function wants to put in it."
   14458             :         },
   14459             :         {
   14460             :                 HRES_ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST,
   14461             :                 "HRES_ERROR_GRAPHICS_OPM_NO_VIDEO_OUTPUTS_EXIST",
   14462             :                 "The GDI display device passed to this function does not have any active video outputs."
   14463             :         },
   14464             :         {
   14465             :                 HRES_ERROR_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME,
   14466             :                 "HRES_ERROR_GRAPHICS_PVP_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME",
   14467             :                 "The protected video path (PVP) cannot find an actual GDI display device that corresponds to the passed-in GDI display device name."
   14468             :         },
   14469             :         {
   14470             :                 HRES_ERROR_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP,
   14471             :                 "HRES_ERROR_GRAPHICS_PVP_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP",
   14472             :                 "This function failed because the GDI display device passed to it was not attached to the Windows desktop."
   14473             :         },
   14474             :         {
   14475             :                 HRES_ERROR_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED,
   14476             :                 "HRES_ERROR_GRAPHICS_PVP_MIRRORING_DEVICES_NOT_SUPPORTED",
   14477             :                 "The PVP does not support mirroring display devices because they do not have video outputs."
   14478             :         },
   14479             :         {
   14480             :                 HRES_ERROR_GRAPHICS_OPM_INVALID_POINTER,
   14481             :                 "HRES_ERROR_GRAPHICS_OPM_INVALID_POINTER",
   14482             :                 "The function failed because an invalid pointer parameter was passed to it. A pointer parameter is invalid if it is null, it points to an invalid address, it points to a kernel mode address, or it is not correctly aligned."
   14483             :         },
   14484             :         {
   14485             :                 HRES_ERROR_GRAPHICS_OPM_INTERNAL_ERROR,
   14486             :                 "HRES_ERROR_GRAPHICS_OPM_INTERNAL_ERROR",
   14487             :                 "An internal error caused this operation to fail."
   14488             :         },
   14489             :         {
   14490             :                 HRES_ERROR_GRAPHICS_OPM_INVALID_HANDLE,
   14491             :                 "HRES_ERROR_GRAPHICS_OPM_INVALID_HANDLE",
   14492             :                 "The function failed because the caller passed in an invalid OPM user mode handle."
   14493             :         },
   14494             :         {
   14495             :                 HRES_ERROR_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE,
   14496             :                 "HRES_ERROR_GRAPHICS_PVP_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE",
   14497             :                 "This function failed because the GDI device passed to it did not have any monitors associated with it."
   14498             :         },
   14499             :         {
   14500             :                 HRES_ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH,
   14501             :                 "HRES_ERROR_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH",
   14502             :                 "A certificate could not be returned because the certificate buffer passed to the function was too small."
   14503             :         },
   14504             :         {
   14505             :                 HRES_ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED,
   14506             :                 "HRES_ERROR_GRAPHICS_OPM_SPANNING_MODE_ENABLED",
   14507             :                 "A video output could not be created because the frame buffer is in spanning mode."
   14508             :         },
   14509             :         {
   14510             :                 HRES_ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED,
   14511             :                 "HRES_ERROR_GRAPHICS_OPM_THEATER_MODE_ENABLED",
   14512             :                 "A video output could not be created because the frame buffer is in theater mode."
   14513             :         },
   14514             :         {
   14515             :                 HRES_ERROR_GRAPHICS_PVP_HFS_FAILED,
   14516             :                 "HRES_ERROR_GRAPHICS_PVP_HFS_FAILED",
   14517             :                 "The function call failed because the display adapter's hardware functionality scan failed to validate the graphics hardware."
   14518             :         },
   14519             :         {
   14520             :                 HRES_ERROR_GRAPHICS_OPM_INVALID_SRM,
   14521             :                 "HRES_ERROR_GRAPHICS_OPM_INVALID_SRM",
   14522             :                 "The High-Bandwidth Digital Content Protection (HDCP) System Renewability Message (SRM) passed to this function did not comply with section 5 of the HDCP 1.1 specification."
   14523             :         },
   14524             :         {
   14525             :                 HRES_ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP,
   14526             :                 "HRES_ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP",
   14527             :                 "The video output cannot enable the HDCP system because it does not support it."
   14528             :         },
   14529             :         {
   14530             :                 HRES_ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP,
   14531             :                 "HRES_ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP",
   14532             :                 "The video output cannot enable analog copy protection because it does not support it."
   14533             :         },
   14534             :         {
   14535             :                 HRES_ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA,
   14536             :                 "HRES_ERROR_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA",
   14537             :                 "The video output cannot enable the Content Generation Management System Analog (CGMS-A) protection technology because it does not support it."
   14538             :         },
   14539             :         {
   14540             :                 HRES_ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET,
   14541             :                 "HRES_ERROR_GRAPHICS_OPM_HDCP_SRM_NEVER_SET",
   14542             :                 "IOPMVideoOutput's GetInformation() method cannot return the version of the SRM being used because the application never successfully passed an SRM to the video output."
   14543             :         },
   14544             :         {
   14545             :                 HRES_ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH,
   14546             :                 "HRES_ERROR_GRAPHICS_OPM_RESOLUTION_TOO_HIGH",
   14547             :                 "IOPMVideoOutput's Configure() method cannot enable the specified output protection technology because the output's screen resolution is too high."
   14548             :         },
   14549             :         {
   14550             :                 HRES_ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE,
   14551             :                 "HRES_ERROR_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE",
   14552             :                 "IOPMVideoOutput's Configure() method cannot enable HDCP because the display adapter's HDCP hardware is already being used by other physical outputs."
   14553             :         },
   14554             :         {
   14555             :                 HRES_ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS,
   14556             :                 "HRES_ERROR_GRAPHICS_OPM_VIDEO_OUTPUT_NO_LONGER_EXISTS",
   14557             :                 "The operating system asynchronously destroyed this OPM video output because the operating system's state changed. This error typically occurs because the monitor physical device object (PDO) associated with this video output was removed, the monitor PDO associated with this video output was stopped, the video output's session became a nonconsole session or the video output's desktop became an inactive desktop."
   14558             :         },
   14559             :         {
   14560             :                 HRES_ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS,
   14561             :                 "HRES_ERROR_GRAPHICS_OPM_SESSION_TYPE_CHANGE_IN_PROGRESS",
   14562             :                 "IOPMVideoOutput's methods cannot be called when a session is changing its type. There are currently three types of sessions: console, disconnected and remote (remote desktop protocol [RDP] or Independent Computing Architecture [ICA])."
   14563             :         },
   14564             :         {
   14565             :                 HRES_ERROR_GRAPHICS_I2C_NOT_SUPPORTED,
   14566             :                 "HRES_ERROR_GRAPHICS_I2C_NOT_SUPPORTED",
   14567             :                 "The monitor connected to the specified video output does not have an I2C bus."
   14568             :         },
   14569             :         {
   14570             :                 HRES_ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST,
   14571             :                 "HRES_ERROR_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST",
   14572             :                 "No device on the I2C bus has the specified address."
   14573             :         },
   14574             :         {
   14575             :                 HRES_ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA,
   14576             :                 "HRES_ERROR_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA",
   14577             :                 "An error occurred while transmitting data to the device on the I2C bus."
   14578             :         },
   14579             :         {
   14580             :                 HRES_ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA,
   14581             :                 "HRES_ERROR_GRAPHICS_I2C_ERROR_RECEIVING_DATA",
   14582             :                 "An error occurred while receiving data from the device on the I2C bus."
   14583             :         },
   14584             :         {
   14585             :                 HRES_ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED,
   14586             :                 "HRES_ERROR_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED",
   14587             :                 "The monitor does not support the specified Virtual Control Panel (VCP) code."
   14588             :         },
   14589             :         {
   14590             :                 HRES_ERROR_GRAPHICS_DDCCI_INVALID_DATA,
   14591             :                 "HRES_ERROR_GRAPHICS_DDCCI_INVALID_DATA",
   14592             :                 "The data received from the monitor is invalid."
   14593             :         },
   14594             :         {
   14595             :                 HRES_ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE,
   14596             :                 "HRES_ERROR_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE",
   14597             :                 "A function call failed because a monitor returned an invalid Timing Status byte when the operating system used the Display Data Channel Command Interface (DDC/CI) Get Timing Report and Timing Message command to get a timing report from a monitor."
   14598             :         },
   14599             :         {
   14600             :                 HRES_ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING,
   14601             :                 "HRES_ERROR_GRAPHICS_MCA_INVALID_CAPABILITIES_STRING",
   14602             :                 "The monitor returned a DDC/CI capabilities string that did not comply with the ACCESS.bus 3.0, DDC/CI 1.1 or MCCS 2 Revision 1 specification."
   14603             :         },
   14604             :         {
   14605             :                 HRES_ERROR_GRAPHICS_MCA_INTERNAL_ERROR,
   14606             :                 "HRES_ERROR_GRAPHICS_MCA_INTERNAL_ERROR",
   14607             :                 "An internal Monitor Configuration API error occurred."
   14608             :         },
   14609             :         {
   14610             :                 HRES_ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND,
   14611             :                 "HRES_ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND",
   14612             :                 "An operation failed because a DDC/CI message had an invalid value in its command field."
   14613             :         },
   14614             :         {
   14615             :                 HRES_ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH,
   14616             :                 "HRES_ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH",
   14617             :                 "This error occurred because a DDC/CI message length field contained an invalid value."
   14618             :         },
   14619             :         {
   14620             :                 HRES_ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM,
   14621             :                 "HRES_ERROR_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM",
   14622             :                 "This error occurred because the value in a DDC/CI message checksum field did not match the message's computed checksum value. This error implies that the data was corrupted while it was being transmitted from a monitor to a computer."
   14623             :         },
   14624             :         {
   14625             :                 HRES_ERROR_GRAPHICS_PMEA_INVALID_MONITOR,
   14626             :                 "HRES_ERROR_GRAPHICS_PMEA_INVALID_MONITOR",
   14627             :                 "The HMONITOR no longer exists, is not attached to the desktop, or corresponds to a mirroring device."
   14628             :         },
   14629             :         {
   14630             :                 HRES_ERROR_GRAPHICS_PMEA_INVALID_D3D_DEVICE,
   14631             :                 "HRES_ERROR_GRAPHICS_PMEA_INVALID_D3D_DEVICE",
   14632             :                 "The Direct3D (D3D) device's GDI display device no longer exists, is not attached to the desktop, or is a mirroring display device."
   14633             :         },
   14634             :         {
   14635             :                 HRES_ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE,
   14636             :                 "HRES_ERROR_GRAPHICS_DDCCI_CURRENT_CURRENT_VALUE_GREATER_THAN_MAXIMUM_VALUE",
   14637             :                 "A continuous VCP code's current value is greater than its maximum value. This error code indicates that a monitor returned an invalid value."
   14638             :         },
   14639             :         {
   14640             :                 HRES_ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION,
   14641             :                 "HRES_ERROR_GRAPHICS_MCA_INVALID_VCP_VERSION",
   14642             :                 "The monitor's VCP Version (0xDF) VCP code returned an invalid version value."
   14643             :         },
   14644             :         {
   14645             :                 HRES_ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION,
   14646             :                 "HRES_ERROR_GRAPHICS_MCA_MONITOR_VIOLATES_MCCS_SPECIFICATION",
   14647             :                 "The monitor does not comply with the Monitor Control Command Set (MCCS) specification it claims to support."
   14648             :         },
   14649             :         {
   14650             :                 HRES_ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH,
   14651             :                 "HRES_ERROR_GRAPHICS_MCA_MCCS_VERSION_MISMATCH",
   14652             :                 "The MCCS version in a monitor's mccs_ver capability does not match the MCCS version the monitor reports when the VCP Version (0xDF) VCP code is used."
   14653             :         },
   14654             :         {
   14655             :                 HRES_ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION,
   14656             :                 "HRES_ERROR_GRAPHICS_MCA_UNSUPPORTED_MCCS_VERSION",
   14657             :                 "The Monitor Configuration API only works with monitors that support the MCCS 1.0 specification, the MCCS 2.0 specification, or the MCCS 2.0 Revision 1 specification."
   14658             :         },
   14659             :         {
   14660             :                 HRES_ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED,
   14661             :                 "HRES_ERROR_GRAPHICS_MCA_INVALID_TECHNOLOGY_TYPE_RETURNED",
   14662             :                 "The monitor returned an invalid monitor technology type. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification."
   14663             :         },
   14664             :         {
   14665             :                 HRES_ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE,
   14666             :                 "HRES_ERROR_GRAPHICS_MCA_UNSUPPORTED_COLOR_TEMPERATURE",
   14667             :                 "The SetMonitorColorTemperature() caller passed a color temperature to it that the current monitor did not support. CRT, plasma, and LCD (TFT) are examples of monitor technology types. This error implies that the monitor violated the MCCS 2.0 or MCCS 2.0 Revision 1 specification."
   14668             :         },
   14669             :         {
   14670             :                 HRES_ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED,
   14671             :                 "HRES_ERROR_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED",
   14672             :                 "This function can be used only if a program is running in the local console session. It cannot be used if the program is running on a remote desktop session or on a terminal server session."
   14673             :         },
   14674             : };
   14675             : 
   14676           0 : const char *hresult_errstr_const(HRESULT err_code)
   14677             : {
   14678           0 :         const char *result = NULL;
   14679             :         size_t i;
   14680           0 :         for (i = 0; i < ARRAY_SIZE(hresult_errs); ++i) {
   14681           0 :                 if (HRES_IS_EQUAL(err_code, hresult_errs[i].error_code)) {
   14682           0 :                         result = hresult_errs[i].error_message;
   14683           0 :                         break;
   14684             :                 }
   14685             :         }
   14686             :         /* convert & check win32 error space? */
   14687           0 :         if (result == NULL && HRESULT_IS_LIKELY_WERR(err_code)) {
   14688           0 :                 WERROR wErr = W_ERROR(WIN32_FROM_HRESULT(err_code));
   14689           0 :                 result = get_friendly_werror_msg(wErr);
   14690             :         }
   14691           0 :         return result;
   14692             : };
   14693             : 
   14694           8 : const char *hresult_errstr(HRESULT err_code)
   14695             : {
   14696             :         static char msg[22];
   14697             :         size_t i;
   14698             : 
   14699       23432 :         for (i = 0; i < ARRAY_SIZE(hresult_errs); i++) {
   14700       23424 :                 if (HRES_IS_EQUAL(err_code, hresult_errs[i].error_code)) {
   14701           0 :                         return hresult_errs[i].error_str;
   14702             :                 }
   14703             :         }
   14704          16 :         snprintf(msg, sizeof(msg), "HRES code 0x%08x", HRES_ERROR_V(err_code));
   14705           8 :         return msg;
   14706             : };

Generated by: LCOV version 1.13