在头文件中对该函数进行全局函数的声明:
extern void Test();
在cpp文件中进行函数的定义:
void Test() { MessageBox(NULL,L"调用了C++的全局方法",L"提示",MB_OK); }
转载:http://blog.sina.com.cn/s/blog_6035d1770100hmx6.html
时间: 2024-10-12 06:02:50
在头文件中对该函数进行全局函数的声明:
extern void Test();
在cpp文件中进行函数的定义:
void Test() { MessageBox(NULL,L"调用了C++的全局方法",L"提示",MB_OK); }
转载:http://blog.sina.com.cn/s/blog_6035d1770100hmx6.html