I'm trying to find a description of the naming conventions used in StarterWare, particularly the prefixes that are used.
Here are examples of what I mean:
g_pucUSBRxBuffer ("g_puc" ? I guess the "puc" means "pointer to an unsigned character", but what is the "g"?)
tUSBBuffer ("t" ? What is the t? )
g_sTxBuffer ( "g" I guess "s" is a string, but what is g?)
pfnTransfer ( "pfn" = pointer to a function?)
pvHandle ( "pv" = pointer to a value?)
pcBuffer ( "pc" = pointer to a char?)
ulBufferSize ( "ul" = unsigned long?)
Is there a description somewhere of this naming convention?
Thanks for your help.
-- Walter