前一篇博客: Windows下使用Visual Studio自带的MSVC,命令行编译C/C++程序
代码
mylib.h代码如下:
#ifndef MYLIB_H
#define MYLIB_H
#if defined(BUILDING_MYLIB)
#define MYLIB_API __declspec(dllexport) __stdcall
#else
#define MYLIB_API __declspec(dllimport) __stdcall
#endif
#ifdef __cplusplus
extern "C" {
#endif
int MYLIB_API helloworld(void);
#ifdef __cplusplus
}
#endif
#endif
mylib.c代码如下:
#include "mylib.h"
#include <stdio.h>
int <