! \ingroup function */
| 10775 | \ingroup function |
| 10776 | */ |
| 10777 | struct ConstantData : public BNRegisterValue |
| 10778 | { |
| 10779 | Ref<Function> func = nullptr; |
| 10780 | |
| 10781 | ConstantData(); |
| 10782 | ConstantData(BNRegisterValueType state, uint64_t value); |
| 10783 | ConstantData(BNRegisterValueType state, uint64_t value, size_t size, Ref<Function> func = nullptr); |
| 10784 | |
| 10785 | std::pair<DataBuffer, BNBuiltinType> ToDataBuffer() const; |
| 10786 | RegisterValue ToRegisterValue() const; |
| 10787 | }; |
| 10788 | |
| 10789 | /*! |
| 10790 | \ingroup function |
no outgoing calls
no test coverage detected