We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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(); }