hi,
i am still a newbee and i am lost... maybe smb has a idea why my function "storage" is ill-designed (in main, line: storage (entryCOUNTmain, entry.name);
does not work. here is my code (x-code platform);
thx a lot,
m
Line 13: You're declaring a templated function which requires two structs by value.
Line 18: You can't declare an array with a non-const bounds.
Line 38: You're try to call an untemplated function. You're also trying to pass different parameter types than the templated function was declared with. (int and string vs. two contactDATA structs).
Suggestion: Get your code working first without using templates, then add templates.
PLEASE USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post. http://www.cplusplus.com/articles/jEywvCM9/