---
title: TECPluginGetPluginDispatchTablePtr
framework: Core Services
role: symbol
role_heading: Type Alias
platforms: [Mac Catalyst 17.0+, macOS 10.1+]
path: coreservices/tecplugingetplugindispatchtableptr
---

# TECPluginGetPluginDispatchTablePtr

Defines a pointer to a function that returnsa pointer to a plug-in dispatch table.

## Declaration

```occ
typedef TECPluginDispatchTable *(*TECPluginGetPluginDispatchTablePtr)(void);
```

## Return Value

Return Value A pointer to the functiondispatch table for the plug-in.

## Discussion

Discussion You need this callback only for OS X plug-ins. When youcreate a TEC plug-in in OS X you must export a function named ConverterPluginGetPluginDispatchTable withthe following prototype: extern TECPluginDispatchTable *ConverterPluginGetPluginDispatchTable(void) This function must return a pointer to the function dispatchtable for the plug-in. It is important you name the function ConverterPluginGetPluginDispatchTable because TECPluginGetPluginDispatchTablePtr isa function pointer to a function of this exact name.

## See Also

### Callbacks

- [UnicodeToTextFallbackProcPtr](coreservices/unicodetotextfallbackprocptr.md)
- [TECPluginNewEncodingConverterPtr](coreservices/tecpluginnewencodingconverterptr.md)
- [TECPluginClearContextInfoPtr](coreservices/tecpluginclearcontextinfoptr.md)
- [TECPluginConvertTextEncodingPtr](coreservices/tecpluginconverttextencodingptr.md)
- [TECPluginFlushConversionPtr](coreservices/tecpluginflushconversionptr.md)
- [TECPluginDisposeEncodingConverterPtr](coreservices/tecplugindisposeencodingconverterptr.md)
- [TECPluginNewEncodingSnifferPtr](coreservices/tecpluginnewencodingsnifferptr.md)
- [TECPluginClearSnifferContextInfoPtr](coreservices/tecpluginclearsniffercontextinfoptr.md)
- [TECPluginSniffTextEncodingPtr](coreservices/tecpluginsnifftextencodingptr.md)
- [TECPluginDisposeEncodingSnifferPtr](coreservices/tecplugindisposeencodingsnifferptr.md)
- [TECPluginGetCountAvailableTextEncodingsPtr](coreservices/tecplugingetcountavailabletextencodingsptr.md)
- [TECPluginGetCountAvailableTextEncodingPairsPtr](coreservices/tecplugingetcountavailabletextencodingpairsptr.md)
- [TECPluginGetCountDestinationTextEncodingsPtr](coreservices/tecplugingetcountdestinationtextencodingsptr.md)
- [TECPluginGetCountSubTextEncodingsPtr](coreservices/tecplugingetcountsubtextencodingsptr.md)
- [TECPluginGetCountAvailableSniffersPtr](coreservices/tecplugingetcountavailablesniffersptr.md)
- [TECPluginGetCountWebEncodingsPtr](coreservices/tecplugingetcountwebencodingsptr.md)
- [TECPluginGetCountMailEncodingsPtr](coreservices/tecplugingetcountmailencodingsptr.md)
- [TECPluginGetTextEncodingInternetNamePtr](coreservices/tecplugingettextencodinginternetnameptr.md)
- [TECPluginGetTextEncodingFromInternetNamePtr](coreservices/tecplugingettextencodingfrominternetnameptr.md)
