// © 2016 and later: Unicode, Inc. and others.1// License & terms of use: http://www.unicode.org/copyright.html2/*3***************************************************************************4* Copyright (C) 2006 International Business Machines Corporation *5* and others. All rights reserved. *6***************************************************************************7*/89#ifndef LOCALSVC_H10#define LOCALSVC_H1112#include "unicode/utypes.h"1314#if defined(U_LOCAL_SERVICE_HOOK) && U_LOCAL_SERVICE_HOOK15/**16* Prototype for user-supplied service hook. This function is expected to return17* a type of factory object specific to the requested service.18*19* @param what service-specific string identifying the specific user hook20* @param status error status21* @return a service-specific hook, or NULL on failure.22*/23U_CAPI void* uprv_svc_hook(const char *what, UErrorCode *status);24#endif2526#endif272829