// Dll Resources.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "Dll Resources.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#define IDS_STRING3000 3000
// The one and only application object
CWinApp theApp;
using namespace std;
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int nRetCode = 0;
HMODULE hModule = ::GetModuleHandle(NULL);
if (hModule != NULL)
{
// initialize MFC and print and error on failure
if (!AfxWinInit(hModule, NULL, ::GetCommandLine(), 0))
{
// TODO: change error code to suit your needs
_tprintf(_T("Fatal Error: MFC initialization failed\n"));
nRetCode = 1;
}
else
{
// TODO: code your application's behavior here.
HINSTANCE dll = AfxLoadLibrary(_T("C:\\Users\\Константин\\Documents\\Visual Studio 2012\\Projects\\MFC\\Dll Resources\\Debug\\Dll.dll"));
CString StrRes;
StrRes.LoadStringW(IDS_STRING3000);
AfxMessageBox(StrRes);
AfxFreeLibrary(dll);
}
}
else
{
// TODO: change error code to suit your needs
_tprintf(_T("Fatal Error: GetModuleHandle failed\n"));
nRetCode = 1;
}
return nRetCode;
}