头文件为myfun.h:#ifndef _MYFUN_H_#define _MYFUN_H_#pragma comment(lib, myfun.lib) /*强制调用链接库*/int myfun(int, int); /*声明函数原型*/#endif然后使用的时候引用即可:希望能帮助你。