M
MH
Hi,
I want to convert a C++ program from windows to Mac. I have solved now many bugs, but I still need to kill one more. The code needs MFC-headerfiles.. For as far as I know, I don't have them, or I don't know the right names. I have searched on google, but I could not find it. This is the piece of code:
Only these 2 are giving no errors:
Thanks alot!
I want to convert a C++ program from windows to Mac. I have solved now many bugs, but I still need to kill one more. The code needs MFC-headerfiles.. For as far as I know, I don't have them, or I don't know the right names. I have searched on google, but I could not find it. This is the piece of code:
Code:
#include <afxwin.h> // MFC core and standard components
#include <afxext.h> // MFC extensions
#include <afxcview.h>
#include <afxdisp.h> // MFC Automation classes
#include <afxdtctl.h> // MFC support for Internet Explorer 4 Common Controls
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC support for Windows Common Controls
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <afxsock.h> // MFC socket extensions
#include <afxole.h> // Drag & Drop Support
#include <afxmt.h> // CriticalSection support
#include <stdio.h>
#include <string.h>
#include <mmsystem.h>
Code:
#include <stdio.h>
#include <string.h>
Thanks alot!