Commit 583641bc authored by Jay Yang's avatar Jay Yang Committed by Alexandre Julliard

shell32: Implement ILIsEmpty.

parent a0afd4cb
...@@ -1696,6 +1696,11 @@ HRESULT WINAPI ILLoadFromStream(LPSTREAM,LPITEMIDLIST*); ...@@ -1696,6 +1696,11 @@ HRESULT WINAPI ILLoadFromStream(LPSTREAM,LPITEMIDLIST*);
BOOL WINAPI ILRemoveLastID(LPITEMIDLIST); BOOL WINAPI ILRemoveLastID(LPITEMIDLIST);
HRESULT WINAPI ILSaveToStream(LPSTREAM,LPCITEMIDLIST); HRESULT WINAPI ILSaveToStream(LPSTREAM,LPCITEMIDLIST);
static inline BOOL ILIsEmpty(LPCITEMIDLIST pidl)
{
return !(pidl && pidl->mkid.cb);
}
#include <poppack.h> #include <poppack.h>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment