RoyalGao

要像一棵树栽在溪水旁,按时侯结果子,叶子也不枯干(诗篇)。
Mail: gaoquanning@163.com

导航

2013年12月9日 #

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) 编辑