B_OPEN
app_verb verb = B_OPEN) const;
app_verb verb = B_OPEN);
status_t GetPreferredApp(char* signature, app_verb verb = B_OPEN) const;
status_t SetPreferredApp(const char* signature, app_verb verb = B_OPEN);
app_verb verb = B_OPEN) const;
app_verb verb = B_OPEN);
status_t DeletePreferredApp(const char *type, app_verb verb = B_OPEN);
app_verb verb = B_OPEN);
if (GetPreferredApp(buffer, B_OPEN) == B_OK)
status_t error = (signature && verb == B_OPEN ? B_OK : B_BAD_VALUE);
status_t error = (verb == B_OPEN ? B_OK : B_BAD_VALUE);
status_t result = (signature && verb == B_OPEN ? B_OK : B_BAD_VALUE);
status_t result = (verb == B_OPEN ? B_OK : B_BAD_VALUE);
case B_OPEN:
SetPreferredApp(supportedType, type, B_OPEN);