Hi,
First of all, i have a Resources.h file, which has the following statement:
#include <iostream>
#include <string>
#define string Greeting "Hi"
So i also have Prompt.cpp;
#include <iostream>
#include <string>
#include "Resources.h"
int main()
{
cout << Greeting << endl;
system("pause");
}
But, i have a problem: It won't recognize Greeting...
How do i "make" him to recognize Greeting which i have defined..?