www.pudn.com > MyPlayerbylqh.rar > Error.h


 
#ifndef _ERROR_H 
#define _ERROR_H 
 
#include  
 
 
typedef enum { 
 
		MP_RESULT_OK,	 
		MP_RESULT_ERROR, 
	 
} MP_RESULT; 
 
 
 
#define MP_ERROR(A) { \ 
	MessageBox(GetForegroundWindow(), A, "Error", MB_OK | MB_ICONEXCLAMATION); \ 
} 
 
#endif