library fundll; { Important note about DLL memory management: ShareMem must be the first unit in your library's USES clause AND your project's (select Project-View Source) USES clause if your DLL exports any procedures or functions that pass strings
研究了两天,终于找到window ce和mobile下dll的创建和调用方法,记得,在定义源型的时候一定要使用 extern "C" _declspec(dllexport) int sum(int a, int b) { return a+b; } 不要只在头文件里定义,否则在调用时会出错. 同事们,一定要注意了.