mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-11-04 03:27:00 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "util.h"
 | 
						|
 | 
						|
#include <stdlib.h>
 | 
						|
 | 
						|
int main(int argc, char **argv) {
 | 
						|
    int ret = 0;
 | 
						|
    set_gui_app(GUI_APP);
 | 
						|
	ret = execute_python_entrypoint(argc, argv, BASENAME, MODULE, FUNCTION, NULL, NULL);
 | 
						|
 | 
						|
    return ret;
 | 
						|
}
 | 
						|
 | 
						|
 |