I have the following struct:
typedef struct IPHWNDTAB
{
HWND hWnd;
char IP[30];
}IPHANDLE;
typedef IPHANDLE FAR IpHandle[5];
I want to use the var "IpHandle" in different files in my visual c++ project. some of the files are *.c files that create a dll and some are *.cpp files which are com interface files.
what is the best way to implement this so that I can use this "IpHandle" from different files in my project?
thanks,
Aviv.