mirror of
				https://github.com/kovidgoyal/calibre.git
				synced 2025-10-31 02:27:01 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			377 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			377 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #define UNICODE
 | |
| 
 | |
| #ifndef PATH_MAX
 | |
| #define PATH_MAX 4096
 | |
| #endif
 | |
| 
 | |
| #define OOM exit(report_error("Out of memory", EXIT_FAILURE))
 | |
| #define True 1
 | |
| #define False 0
 | |
| typedef int bool;
 | |
| 
 | |
| void set_gui_app(bool yes);
 | |
| 
 | |
| int execute_python_entrypoint(int argc, char **argv, const char *basename,
 | |
|         const char *module, const char *function,
 | |
|         char *outr, char *errr);
 |