
May 5th, 2002, 01:30 PM
|
|
Junior Member
|
|
Join Date: Mar 2002
Posts: 0
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
Best way to memory alloc/display?
Hi,
Ive got a linked list structure which contains a command structure.
Oviously internally my program stores it in its own datastructure but externally it takes the form of english looking commands such as
Mouse(x,y,button).
I need to walk this list and display the contents into a Edit control to enable the user to view it. I have a function which returns the command as a char * (english style).
However I dont know how many commands are present and I cant seem to append items to the edit control (WIN32/c only no mfc). So I thought why not read it all into a string and then send it in one go. However since I dont know the total size before hand it will prob mean assigning memory on the fly. I know about malloc/free but how can I repeatdly do this in a loop or is there a way to append to a edit control instead of adding it in one big char chunk?
Thanks your views and ideas would be welcomed.
Ta
|