mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +00:00
[NETMSG] Add netmsg resource dll with some lmerr messages
This commit is contained in:
parent
8787eba8ca
commit
ceb596f100
4 changed files with 103 additions and 0 deletions
5
dll/win32/netmsg/CMakeLists.txt
Normal file
5
dll/win32/netmsg/CMakeLists.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
add_library(netmsg SHARED netmsg.rc)
|
||||
set_module_type(netmsg module UNICODE)
|
||||
add_dependencies(netmsg netmsgmsg)
|
||||
add_cd_file(TARGET netmsg DESTINATION reactos/system32 FOR all)
|
7
dll/win32/netmsg/netmsg.rc
Normal file
7
dll/win32/netmsg/netmsg.rc
Normal file
|
@ -0,0 +1,7 @@
|
|||
#define REACTOS_VERSION_DLL
|
||||
#define REACTOS_STR_FILE_DESCRIPTION "ReactOS Network Messages"
|
||||
#define REACTOS_STR_INTERNAL_NAME "netmsg"
|
||||
#define REACTOS_STR_ORIGINAL_FILENAME "netmsg.dll"
|
||||
#include <reactos/version.rc>
|
||||
|
||||
#include <netmsg_msg.rc>
|
|
@ -5,6 +5,7 @@ list(APPEND ANSI_SOURCE
|
|||
list(APPEND UNICODE_SOURCE
|
||||
errcodes.mc
|
||||
neteventmsg.mc
|
||||
netmsgmsg.mc
|
||||
ntiologc.mc
|
||||
ntstatus.mc
|
||||
pciclass.mc)
|
||||
|
|
90
sdk/include/reactos/mc/netmsgmsg.mc
Normal file
90
sdk/include/reactos/mc/netmsgmsg.mc
Normal file
|
@ -0,0 +1,90 @@
|
|||
;
|
||||
; netmsg_msg.mc MESSAGE resources for netmsg.dll
|
||||
;
|
||||
|
||||
MessageIdTypedef=DWORD
|
||||
|
||||
SeverityNames=(Success=0x0:STATUS_SEVERITY_SUCCESS
|
||||
Informational=0x1:STATUS_SEVERITY_INFORMATIONAL
|
||||
Warning=0x2:STATUS_SEVERITY_WARNING
|
||||
Error=0x3:STATUS_SEVERITY_ERROR
|
||||
)
|
||||
|
||||
FacilityNames=(System=0x0:FACILITY_SYSTEM
|
||||
)
|
||||
|
||||
LanguageNames=(English=0x409:MSG00409)
|
||||
|
||||
|
||||
;
|
||||
; lmerr message definitions
|
||||
;
|
||||
|
||||
MessageId=2102
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=NERR_NetNotStarted
|
||||
Language=English
|
||||
The workstation driver is not installed.
|
||||
.
|
||||
|
||||
MessageId=2103
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=NERR_UnknownServer
|
||||
Language=English
|
||||
The server could not be located.
|
||||
.
|
||||
|
||||
MessageId=2104
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=NERR_ShareMem
|
||||
Language=English
|
||||
An internal error occurred. The network cannot access a shared memory segment.
|
||||
.
|
||||
|
||||
MessageId=2105
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=NERR_NoNetworkResource
|
||||
Language=English
|
||||
A network resource shortage occurred.
|
||||
.
|
||||
|
||||
MessageId=2106
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=NERR_RemoteOnly
|
||||
Language=English
|
||||
This operation is not supported on workstations.
|
||||
.
|
||||
|
||||
MessageId=2107
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=NERR_DevNotRedirected
|
||||
Language=English
|
||||
The device is not connected.
|
||||
.
|
||||
|
||||
|
||||
;
|
||||
; other message definitions
|
||||
;
|
||||
|
||||
MessageId=3500
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=OTHER_3000
|
||||
Language=English
|
||||
The command completed successfully.
|
||||
.
|
||||
|
||||
MessageId=3515
|
||||
Severity=Success
|
||||
Facility=System
|
||||
SymbolicName=OTHER_3515
|
||||
Language=English
|
||||
The command can be used only on a Domain Controller.
|
||||
.
|
Loading…
Reference in a new issue