pedning job actions

This commit is contained in:
CHIEFSOFT\ameye
2023-05-19 16:10:56 -04:00
parent 7bb38b177e
commit 8cac594685
+18 -3
View File
@@ -22,6 +22,9 @@ long WrenchJobsQuestion(CVars in, CVars &out);
long WrenchMarketInterestQuestion(CVars in, CVars &out);
long WrenchReplyMessage(CVars in, CVars &out);
long WrenchJobPostAgree(CVars in, CVars &out);
long WrenchJobPostExtendTime(CVars in, CVars &out);
long WrenchJobPostNotifyOffer(CVars in, CVars &out)'
long WrenchJobPostCancelOffer(CVars in, CVars &out);
long jobs_calls(CVars in, CVars &out) {
@@ -114,21 +117,33 @@ long jobs_calls(CVars in, CVars &out) {
break;
case WRENCHBOARD_JOB_EXTEND_EXPIRE:
return WrenchJobPostExtendTime(in, out);
break;
case WRENCHBOARD_JOB_RESEND_MESSAGE:
return WrenchJobPostNotifyOffer(in, out);
break;
case WRENCHBOARD_JOB_CANCEL_OFFER:
return WrenchJobPostCancelOffer(in, out);
break;
}
logfmt(logINFO, "/jobs_calls()");
return 0;
}
long WrenchJobPostExtendTime(CVars in, CVars &out){
}
long WrenchJobPostNotifyOffer(CVars in, CVars &out){
}
long WrenchJobPostCancelOffer(CVars in, CVars &out){
}
long WrenchJobPostAgree(CVars in, CVars &out) {
logfmt(logINFO, "WrenchJobPostAgree()");
long ret = PHP_API_BAD_PARAM;