We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
bool SVC(const char *string)
For use in npp_svc_main(). Compares service name with string.
Returns true if service matches string, otherwise false.
void npp_svc_main() { if ( SVC("getCustomer") ) getCustomer(); else if ( SVC("getAccounts") ) getAccounts(); }