Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 191 of file playsound.c.
Referenced by PlaySound_Alloc().
{ /* SND_RESOURCE is 0x40004 while * SND_MEMORY is 0x00004 */ switch (fdwSound & (SND_RESOURCE|SND_ALIAS_ID|SND_FILENAME)) { case SND_RESOURCE: return HIWORD(psz) != 0; /* by name or by ID ? */ case SND_ALIAS_ID: case SND_MEMORY: return FALSE; case SND_ALIAS: case SND_FILENAME: case 0: return TRUE; default: FIXME("WTF\n"); return FALSE; } }