// MQUE.cpp : Defines the initialization routines for the DLL. // #include "stdafx.h" #include "MQUE.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CMQUEApp BEGIN_MESSAGE_MAP(CMQUEApp, CWinApp) //{{AFX_MSG_MAP(CMQUEApp) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMQUEApp construction CMQUEApp::CMQUEApp() { // TODO: add construction code here, // Place all significant initialization in InitInstance } ///////////////////////////////////////////////////////////////////////////// // The one and only CMQUEApp object CMQUEApp theApp; char *_fstrcpy( char *string1, const char *string2 ); char *_fstrcpy( char *string1, const char *string2 ) { return strcpy(string1, string2); }; char *_fstrupr( char *string ); char *_fstrupr( char *string) { return _strupr(string); }; #define DLLTYPE_NT #include "mque2.cpp"