- It hasn't been handling windows (so it's been half implemented) - It's a suboptimal method for exporting symbols for vulkan layers since `--version-script` and `.def` files exists. Both of these methods also don't risk name mangling. - `--version-script` also has perf benefits since you can silence exports from code you didn't intend to export
		
			
				
	
	
		
			7 lines
		
	
	
		
			61 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			61 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include "vulkan/vk_layer.h"
 | 
						|
 | 
						|
int foobar()
 | 
						|
{
 | 
						|
    return 0;
 | 
						|
}
 |