Hello, I'm trying to build a DLL in Embedded Visual c++ that uses CFile:: object. I think that I'm missing something. A header file maybe?
Any sugestions? Plese let me know.
Printable View
Hello, I'm trying to build a DLL in Embedded Visual c++ that uses CFile:: object. I think that I'm missing something. A header file maybe?
Any sugestions? Plese let me know.
what's embedded vc++?
CFile is part of the microsoft foundation classes. If you aren't using MFC you can't use CFile. If you created a MFC dll project, the headers should already be included. I think the header for CFile is <afx.h>, the same file as CObject. So, if you are using anything of MFC and it works, CFile must work too.
if you program for handhelds, you should not use MFC as it takes much space...
or do you just use the IDE?