Skip to content
Snippets Groups Projects
Commit 29e53d69 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Define custom node action value

This is to be used (e.g. instead of NODE_BXFR) for sysop-custom node actions.
parent 9bf541ea
No related branches found
No related tags found
No related merge requests found
...@@ -90,6 +90,7 @@ enum node_action { /* Node Action */ ...@@ -90,6 +90,7 @@ enum node_action { /* Node Action */
,NODE_PCHT /* In Private Chat */ ,NODE_PCHT /* In Private Chat */
,NODE_PAGE /* Paging another node for Private Chat */ ,NODE_PAGE /* Paging another node for Private Chat */
,NODE_RFSD /* Retrieving file from seq dev (aux=dev)*/ ,NODE_RFSD /* Retrieving file from seq dev (aux=dev)*/
,NODE_CUSTOM /* Custom node action */
,NODE_LAST_ACTION /* Must be last */ ,NODE_LAST_ACTION /* Must be last */
}; };
......
...@@ -736,7 +736,7 @@ enum text { ...@@ -736,7 +736,7 @@ enum text {
,NodeActionPrivateChat ,NodeActionPrivateChat
,NodeActionPaging ,NodeActionPaging
,NodeActionRetrieving ,NodeActionRetrieving
,Unused720 /* Used to be YNQP */ ,NodeActionCustom
,ViewSignatureQ ,ViewSignatureQ
,DeleteSignatureQ ,DeleteSignatureQ
,CreateEditSignatureQ ,CreateEditSignatureQ
......
...@@ -1184,7 +1184,7 @@ const char * const text_defaults[TOTAL_TEXT]={ ...@@ -1184,7 +1184,7 @@ const char * const text_defaults[TOTAL_TEXT]={
,"" // 717 NodeActionPrivateChat ,"" // 717 NodeActionPrivateChat
,"" // 718 NodeActionPaging ,"" // 718 NodeActionPaging
,"" // 719 NodeActionRetrieving ,"" // 719 NodeActionRetrieving
,"\x59\x4e\x51\x2a" // 720 Unused720 ,"" // 720 NodeActionCustom
,"\x56\x69\x65\x77\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65" // 721 ViewSignatureQ ,"\x56\x69\x65\x77\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65" // 721 ViewSignatureQ
,"\x44\x65\x6c\x65\x74\x65\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65" // 722 DeleteSignatureQ ,"\x44\x65\x6c\x65\x74\x65\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65" // 722 DeleteSignatureQ
,"\x43\x72\x65\x61\x74\x65\x2f\x45\x64\x69\x74\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65" // 723 CreateEditSignatureQ ,"\x43\x72\x65\x61\x74\x65\x2f\x45\x64\x69\x74\x20\x73\x69\x67\x6e\x61\x74\x75\x72\x65" // 723 CreateEditSignatureQ
......
...@@ -720,7 +720,7 @@ const char* const text_id[]={ ...@@ -720,7 +720,7 @@ const char* const text_id[]={
,"NodeActionPrivateChat" ,"NodeActionPrivateChat"
,"NodeActionPaging" ,"NodeActionPaging"
,"NodeActionRetrieving" ,"NodeActionRetrieving"
,"Unused720" ,"NodeActionCustom"
,"ViewSignatureQ" ,"ViewSignatureQ"
,"DeleteSignatureQ" ,"DeleteSignatureQ"
,"CreateEditSignatureQ" ,"CreateEditSignatureQ"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment