Frida Docs Unified
    Preparing search index...

    Interface SystemFunctionConstructor

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

    Constructors

    Properties

    Constructors

    Properties

    prototype: SystemFunction<void, []>