I made my own dll and I want to use it on C++ application. How to do it?
The most important is to declare correctly the external C functions:
#ifdef __cplusplus
extern "C" {
#endif
extern int yourfunction(int x,int y);
// other function declarations
#ifdef __cplusplus
}
#endif
Second, you must add your import library ( concerning your DLL ) to the project.