Merge pull request #6307 from oranagra/register_rm_reply_with_cstring

RM_ReplyWithCString was missing registration
This commit is contained in:
Salvatore Sanfilippo 2019-08-22 20:02:17 +02:00 committed by GitHub
commit d5536e0480
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5389,6 +5389,7 @@ void moduleRegisterCoreAPI(void) {
REGISTER_API(ReplySetArrayLength); REGISTER_API(ReplySetArrayLength);
REGISTER_API(ReplyWithString); REGISTER_API(ReplyWithString);
REGISTER_API(ReplyWithStringBuffer); REGISTER_API(ReplyWithStringBuffer);
REGISTER_API(ReplyWithCString);
REGISTER_API(ReplyWithNull); REGISTER_API(ReplyWithNull);
REGISTER_API(ReplyWithCallReply); REGISTER_API(ReplyWithCallReply);
REGISTER_API(ReplyWithDouble); REGISTER_API(ReplyWithDouble);