I am new to palm programming and have a question regarding accessing data
from low memory.  I am trying to write a selected item from a list object to
a record.  The record is a structure of the following type

Typedef struct {
        Const char *data;
} StructTest;

I am trying to do the following:
(listptr holds the ptr to the list I am trying to access.  I am hardcoding
that I want the first item from the list)

StructTest  Thestructure;
 Thestructure.data = LstGetSelectionText(listptr, 0);

Before I even get to write this structure to the record,  POSE states I am
trying to access data from low memory.  What does this mean?  Do I need to
save the char ptr as a handle and lock it before I access it?  

Any incite would be greatly appreciated.  Thanks to all for reading!!
James

Reply via email to