There is a DllMain() declaration in the mingw-runtime-4.0.3.1 and it differs from a tcc one.
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			193 B
		
	
	
	
		
			C
		
	
	
	
	
	
| //+---------------------------------------------------------------------------
 | |
| 
 | |
| #include <windows.h>
 | |
| 
 | |
| BOOL WINAPI DllMain (HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved)
 | |
| {
 | |
| 	return TRUE;
 | |
| }
 | |
| 
 |