Hi,
in a program i declared a list and a struct as public in a CDocument.
.....
public:
CPtrlist lista;
struct Socio
{
char nome;
};
At a function in another document when i use :
.....
Socio* pSocio=(Socio*)lista.GetHeadPosition();
lista is not recognize and the struct Socio neather.
What is wrong??
Thank you!
in a program i declared a list and a struct as public in a CDocument.
.....
public:
CPtrlist lista;
struct Socio
{
char nome;
};
At a function in another document when i use :
.....
Socio* pSocio=(Socio*)lista.GetHeadPosition();
lista is not recognize and the struct Socio neather.
What is wrong??
Thank you!