Changeset - 71cf5b428247
[Not reviewed]
default
0 1 0
ethanzonca - 16 years ago 2009-07-29 19:54:29

Made distrend_do() int, not void
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/server/distrend.c
Show inline comments
 
@@ -96,49 +96,49 @@ struct general_info {
 
	unsigned short int rendering_clients;//
 
	unsigned short int total_finished_jobs; //
 
	unsigned int total_frames_rendered; //
 
} general_info;
 

	
 

	
 

	
 
/*
 
  internally defined funcs's prototypes
 
*/
 
void status_report_generator(struct blendjob **blendjobs_head);
 
void blendjob_remove(struct blendjob **head, struct blendjob *bj);
 

	
 
struct blendjob *blendjob_get(struct blendjob *head, jobnum_t jobnum);
 

	
 
/* Global Vars, try to cut down on these */
 
jobnum_t jobnum = 0; // The next job number to create in the queue
 
int hcfjob; // Highest consecutively finished job
 
int highest_jobnum; // The job number of the most recently created job, this is used when creating new jobs
 

	
 

	
 
/* ********************** Functions ************************* */
 

	
 
/* Functions to stubify */
 
void distrend_do(){
 
int distrend_do(){
 

	
 
}
 
void distrend_accept(){
 

	
 
}
 
void distrend_action_free(){
 

	
 
}
 
void distrend_listen(){
 

	
 
}
 
void distrend_unlisten(){
 

	
 
}
 
void remotio_send_to_client(){
 
	// I am futile!
 
}
 
void start_data(){
 

	
 
	if(1 == 0){
 
		// retrieve total_finished_jobs and total_finished_frames from xml file
 
	}
 
	else{
 
		general_info.total_finished_jobs = 0;
0 comments (0 inline, 0 general)