Frida Docs Unified
    Preparing search index...

    Interface NativeFunctionConstructor

    interface NativeFunctionConstructor {
        new NativeFunctionConstructor<
            RetType extends NativeFunctionReturnType,
            ArgTypes extends [] | NativeFunctionArgumentType[],
        >(
            address: NativePointerValue,
            retType: RetType,
            argTypes: ArgTypes,
            abiOrOptions?: NativeABI | NativeFunctionOptions,
        ): NativeFunction<
            GetValue<
                NativeFunctionReturnTypeMap,
                NativeFunctionReturnValue,
                NativeFunctionReturnType,
                RetType,
            >,
            ResolveVariadic<
                Extract<
                    GetValue<
                        NativeFunctionArgumentTypeMap,
                        NativeFunctionArgumentValue,
                        NativeFunctionArgumentType,
                        ArgTypes,
                    >,
                    unknown[],
                >,
            >,
        >;
        prototype: NativeFunction<void, []>;
    }
    Index

    Constructors

    Properties

    Constructors

    Properties

    prototype: NativeFunction<void, []>