Hard keys character values.

2003-12-05 Thread Vytautas Leonavicius
Hello,

Where can I find constants corresponding to each of hard keys on the device?

Thanks,

Vytautas



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


Re: CW 9.2 STL memory question.

2003-11-06 Thread Vytautas Leonavicius
VecP p = new Vec[64k]  in this case push_back elements will be allocated on
the heap.

Vec v = Vec[64k] in this case, on the stack, right?

Thanks,

Vytautas

it works, when allocating in this way - Vec v =
> >Vec[64k]. Why?
>
> The vector implementation in MSL doesn't allocate memory until an element
> has been modified or accessed.  This is for efficiency -- you can create a
> vector and if you don't use it, you don't have the allocation overhead.
>
> -- 
> Ben Combee <[EMAIL PROTECTED]>
> CodeWarrior for Palm OS technical lead
> Palm OS programming help @ www.palmoswerks.com
>
>



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/


CW 9.2 STL memory question.

2003-11-05 Thread Vytautas Leonavicius
Hello,

Well, MemPtrNew allocates a maximum of ~64Kb. But when I allocate
std::vector on the stack, I got bad_alloc if I try to allocate more than
~30Kb. But if I use new on vector, that is:

VecP p = new Vec[64k] it works, when allocating in this way - Vec v =
Vec[64k]. Why?

Thanks,

-- 
Sincerily,

Vytautas Leonavicius

http://sc-filip.vtu.lt/~vyts/



-- 
For information on using the Palm Developer Forums, or to unsubscribe, please see 
http://www.palmos.com/dev/support/forums/