Jake said:
What does SIMENTRY mean as in
ULONG SIMENTRY RemoveFolderItem( hSession, pszFolderID, pszItemID,
pAsyncCtl, pRC )
is it necessary?
There is absolutely no way to know because you do not provide
the definition. Search the definition in your source tree,
THEN see if it is necessary or not.
It could be a macro that expands to something, or could be
a macro that expands to nothing (then it would be unnecessary).
Since it comes after ULONG (what I assume that it is a definition
for unsigned long) it can't be a typedef.
If you do not know, call your preprocessor. Most compilers
support a -E option that generates the preprocessed output.
Then, you will know immediately if it is necessary or not.
jacob