On Mon, Jun 9, 2008 at 2:32 AM, Michael Stefaniuc mstefani@redhat.com wrote:
- ok(lstrlenW(V_BSTR(&vValue)) == 0, "Expected empty value\n");
- ok(V_BSTR(&vValue) == (void *)0, "Expected null value\n");
Is there a problem with using NULL instead of (void *)0?
NULL would probably be fine. (I come from an era where NULL had to be defined by hand, so sometimes I slip and don't use it.) - Dan