29 lines
812 B
C
29 lines
812 B
C
#ifndef __mx_jobs_h__
|
|
#define __mx_jobs_h__
|
|
|
|
#include "vars.h"
|
|
|
|
long jobs_calls(CVars in, CVars &out);
|
|
long WrenchCreateJobs( CVars in, CVars &out );
|
|
long WrenchDeleteJobs( CVars in, CVars &out );
|
|
|
|
long WrenchEditJobs( CVars in, CVars &out );
|
|
|
|
long WrenchAddJobsGroupMember( CVars in, CVars &out );
|
|
long WrenchCreateJobsGroup( CVars in, CVars &out );
|
|
|
|
|
|
long WrenchDeleteJobsGroup( CVars in, CVars &out );
|
|
long WrenchDeleteJobsGroupMember( CVars in, CVars &out );
|
|
|
|
|
|
long WrenchSendJobsOfferIndividual( CVars in, CVars &out );
|
|
long WrenchSendJobsOfferGroup( CVars in, CVars &out );
|
|
long WrenchSendJobsOfferPublic( CVars in, CVars &out );
|
|
long WrenchJobsOfferInterest( CVars in, CVars &out );
|
|
long WrenchJobsProcessInterest( CVars in, CVars &out );
|
|
long WrenchConcludeJobsOffer( CVars in, CVars &out );
|
|
|
|
#endif
|
|
|