mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-29 20:10:22 -04:00 
			
		
		
		
	
		
			
	
	
		
			29 lines
		
	
	
		
			495 B
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			29 lines
		
	
	
		
			495 B
		
	
	
	
		
			C
		
	
	
	
	
	
|  | /**
 | ||
|  |   @file | ||
|  |   @author Stefan Frings | ||
|  | */ | ||
|  | 
 | ||
|  | #ifndef HTTPGLOBAL_H
 | ||
|  | #define HTTPGLOBAL_H
 | ||
|  | 
 | ||
|  | #include <QtGlobal>
 | ||
|  | 
 | ||
|  | // This is specific to Windows dll's
 | ||
|  | #if defined(Q_OS_WIN)
 | ||
|  |     #if defined(QTWEBAPPLIB_EXPORT)
 | ||
|  |         #define DECLSPEC Q_DECL_EXPORT
 | ||
|  |     #elif defined(QTWEBAPPLIB_IMPORT)
 | ||
|  |         #define DECLSPEC Q_DECL_IMPORT
 | ||
|  |     #endif
 | ||
|  | #endif
 | ||
|  | #if !defined(DECLSPEC)
 | ||
|  |     #define DECLSPEC
 | ||
|  | #endif
 | ||
|  | 
 | ||
|  | /** Get the library version number */ | ||
|  | DECLSPEC const char* getQtWebAppLibVersion(); | ||
|  | 
 | ||
|  | 
 | ||
|  | #endif // HTTPGLOBAL_H
 | ||
|  | 
 |