In many programs, I see statements with the identifiers FALSE and false. Is there any difference between them in the context of C++?
FALSE
false
Also in so
Important note on Windows API: some WIndows library functions return arbitrary integer values although the return type is defined as BOOL. It is best never to compare a BOOL to TRUE. use
BOOL
TRUE
bSomeVal != FALSE instead.