@@ -6,7 +6,7 @@ const string RPC_PLUGIN_SEPARATOR = "!";
66const string RPC_RESET_GENERIC = " RPC_RESET_GENERIC_" ;
77const string RPC_BUILD_GENERIC = " RPC_BUILD_GENERIC_" ;
88const string RPC_BUILD_GENERIC_STREAM = " RPC_BUILD_GENERIC_STREAM_" ;
9- const string RPC_PULL_GENERIC_STREAM = " RPC_PULL_GENERIC_STREAM_ " ;
9+ const string RPC_NEXT_GENERIC_STREAM = " RPC_NEXT_GENERIC_STREAM_ " ;
1010
1111const string RPC_GET_INT = " RPC_GET_INT_" ;
1212const string RPC_SET_INT = " RPC_SET_INT_" ;
@@ -27,7 +27,7 @@ const int RPC_END_BUILD_GENERIC = 2;
2727void RPCResetBuildGenericEx ();
2828void RPCBuildGenericEx (string sClient , string sAction );
2929void RPCBuildGenericStreamEx (string sClient , string sAction );
30- int RPCPullGenericStreamEx ();
30+ int RPCNextGenericStreamEx ();
3131int RPCGetIntEx (string sParam1 , int nParam2 = RPC_PARAM_2_DEFAULT );
3232void RPCSetIntEx (string sParam1 , int nValue, int nParam2 = RPC_PARAM_2_DEFAULT );
3333int RPCGetBoolEx (string sParam1 , int nParam2 = RPC_PARAM_2_DEFAULT );
@@ -51,8 +51,8 @@ void RPCBuildGenericStreamEx(string sClient, string sAction) {
5151 NWNXSetString (RPC_PLUGIN_ID , RPC_BUILD_GENERIC_STREAM , sClient , RPC_PARAM_2_DEFAULT , sAction );
5252}
5353
54- int RPCPullGenericStreamEx () {
55- return NWNXGetInt (RPC_PLUGIN_ID , RPC_PULL_GENERIC_STREAM , " " , RPC_PARAM_2_DEFAULT );
54+ int RPCNextGenericStreamEx () {
55+ return NWNXGetInt (RPC_PLUGIN_ID , RPC_NEXT_GENERIC_STREAM , " " , RPC_PARAM_2_DEFAULT );
5656}
5757
5858int RPCGetIntEx (string sParam1 , int nParam2 = RPC_PARAM_2_DEFAULT ) {
0 commit comments