Skip to content

Commit

Permalink
Merge pull request #39 from fluent-plugins-nursery/handle-1813-error-…
Browse files Browse the repository at this point in the history
…code

Handle error code 1813 (RESOURCE_TYPE_NOT_FOUND)
  • Loading branch information
cosmo0920 authored Oct 15, 2021
2 parents d87615e + 2b1e7f7 commit a34c933
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ext/winevt/winevt_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,9 @@ get_message(EVT_HANDLE hMetadata, EVT_HANDLE handle)
case ERROR_EVT_MESSAGE_NOT_FOUND:
case ERROR_EVT_MESSAGE_ID_NOT_FOUND:
case ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND:
case ERROR_RESOURCE_DATA_NOT_FOUND:
case ERROR_RESOURCE_TYPE_NOT_FOUND:
case ERROR_RESOURCE_NAME_NOT_FOUND:
case ERROR_RESOURCE_LANG_NOT_FOUND:
case ERROR_MUI_FILE_NOT_FOUND:
case ERROR_EVT_UNRESOLVED_PARAMETER_INSERT: {
Expand Down Expand Up @@ -434,6 +437,9 @@ get_message(EVT_HANDLE hMetadata, EVT_HANDLE handle)
case ERROR_EVT_MESSAGE_NOT_FOUND:
case ERROR_EVT_MESSAGE_ID_NOT_FOUND:
case ERROR_EVT_MESSAGE_LOCALE_NOT_FOUND:
case ERROR_RESOURCE_DATA_NOT_FOUND:
case ERROR_RESOURCE_TYPE_NOT_FOUND:
case ERROR_RESOURCE_NAME_NOT_FOUND:
case ERROR_RESOURCE_LANG_NOT_FOUND:
case ERROR_MUI_FILE_NOT_FOUND:
case ERROR_EVT_UNRESOLVED_PARAMETER_INSERT:
Expand Down

0 comments on commit a34c933

Please sign in to comment.