int Max(int a, int b)
{
if(a>=b)return a;
else
return b;
}
-----------------------------------------------------------------------------
/******************************
*这里是VC写的Console程序
******************************/
#include "stdio.h"
#include "stdlib.h"
extern "C" _declspec(dllexport) int Max(int a, int b); //VC DLL中的导出函数