---
title: "CFBundleGetDataPointersForNames(_:_:_:)"
framework: corefoundation
role: symbol
role_heading: Function
path: "corefoundation/cfbundlegetdatapointersfornames(_:_:_:)"
---

# CFBundleGetDataPointersForNames(_:_:_:)

Returns a C array of data pointer to symbols of the given names.

## Declaration

```swift
func CFBundleGetDataPointersForNames(_ bundle: CFBundle!, _ symbolNames: CFArray!, _ stbl: UnsafeMutablePointer<UnsafeMutableRawPointer?>!)
```

## Parameters

- `bundle`: The bundle to examine.
- `symbolNames`: A CFArray object containing CFString objects representing the symbol names to search for.
- `stbl`: A C array into which this function stores the data pointers for the symbols specified in symbolNames. The array contains NULL for any names in symbolNames that cannot be found.

## See Also

### Managing Executable Code

- [CFBundleGetDataPointerForName(_:_:)](corefoundation/cfbundlegetdatapointerforname(_:_:).md)
- [CFBundleGetFunctionPointerForName(_:_:)](corefoundation/cfbundlegetfunctionpointerforname(_:_:).md)
- [CFBundleGetFunctionPointersForNames(_:_:_:)](corefoundation/cfbundlegetfunctionpointersfornames(_:_:_:).md)
- [CFBundleGetPlugIn(_:)](corefoundation/cfbundlegetplugin(_:).md)
