If you are new to Symbian programming, you may have notice that it is quite common to have functions name with trailing L, LC or LD. These letters have an important meaning:
- L indicates a function that may Leave. We will talk about this below.
- C indicates a function that add something on the Cleanup Stack (we will talk about this in a future article).
- D indicates a function that takes ownership of a heap allocated object (and that will be responsible for its Deletion).
.....
