C++ calling a dll.
摘要:
C++ calling a dll.Ok lets say we have a function we want to call in C++. We would normally do this:/* declare the function */intMyFunction(char*,int);intmain(void){returnMyFunction("hello", 5);}/* our function */intMyFunction(char*,int){/* do something */return0;}-------------------------- 阅读全文
posted @ 2013-12-09 16:39 RoyalGao 阅读(395) 评论(0) 推荐(0) 编辑