Hey Guys/Girls
I'm creating a C++ application. So far I have created 2 projects, under one solution. The first is a native win32 project and the other is a DLL. Now my problem. How do I include this DLL I create, in my win32 application? So far I have tried:
#include "esystem.h"
...
#include "../esystem.h"
...
#include "../esystem/esystem.h"
no of those worked. I am doing this correctly?
Thanks