All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.vulkan.VkVideoDecodeH264SessionParametersAddInfoEXT Maven / Gradle / Ivy

Go to download

A new generation graphics and compute API that provides high-efficiency, cross-platform access to modern GPUs used in a wide variety of devices from PCs and consoles to mobile phones and embedded platforms.

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.vulkan;

import javax.annotation.*;

import java.nio.*;

import org.lwjgl.*;
import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;
import static org.lwjgl.system.MemoryStack.*;

import org.lwjgl.vulkan.video.*;

/**
 * Structure specifies H.264 decoder parameter set information.
 * 
 * 
Valid Usage
* *
    *
  • The values of {@code spsStdCount} and {@code ppsStdCount} must be less than or equal to the values of {@code maxSpsStdCount} and {@code maxPpsStdCount}, respectively
  • *
  • When the {@code maxSpsStdCount} number of parameters of type StdVideoH264SequenceParameterSet in the Video Session Parameters object is reached, no additional parameters of that type can be added to this object. {@link VK10#VK_ERROR_TOO_MANY_OBJECTS ERROR_TOO_MANY_OBJECTS} will be returned if an attempt is made to add additional data to this object at this point
  • *
  • When the {@code maxPpsStdCount} number of parameters of type StdVideoH264PictureParameterSet in the Video Session Parameters object is reached, no additional parameters of that type can be added to this object. {@link VK10#VK_ERROR_TOO_MANY_OBJECTS ERROR_TOO_MANY_OBJECTS} will be returned if an attempt is made to add additional data to this object at this point
  • *
  • Each entry to be added must have a unique, to the rest of the parameter array entries and the existing parameters in the Video Session Parameters Object that is being updated, SPS-PPS IDs
  • *
  • Parameter entries that already exist in Video Session Parameters object with a particular SPS-PPS IDs cannot be replaced nor updated
  • *
  • When creating a new object using a Video Session Parameters as a template, the array’s parameters with the same SPS-PPS IDs as the ones from the template take precedence
  • *
  • SPS/PPS parameters must comply with the limits specified in {@link VkVideoSessionCreateInfoKHR} during Video Session creation
  • *
* *
Valid Usage (Implicit)
* *
    *
  • {@code sType} must be {@link EXTVideoDecodeH264#VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT}
  • *
  • If {@code pSpsStd} is not {@code NULL}, {@code pSpsStd} must be a valid pointer to an array of {@code spsStdCount} {@code StdVideoH264SequenceParameterSet} values
  • *
  • If {@code pPpsStd} is not {@code NULL}, {@code pPpsStd} must be a valid pointer to an array of {@code ppsStdCount} {@code StdVideoH264PictureParameterSet} values
  • *
  • {@code spsStdCount} must be greater than 0
  • *
  • {@code ppsStdCount} must be greater than 0
  • *
* *
See Also
* *

{@link VkVideoDecodeH264SessionParametersCreateInfoEXT}

* *

Layout

* *

 * struct VkVideoDecodeH264SessionParametersAddInfoEXT {
 *     VkStructureType {@link #sType};
 *     void const * {@link #pNext};
 *     uint32_t {@link #spsStdCount};
 *     {@link StdVideoH264SequenceParameterSet StdVideoH264SequenceParameterSet} const * {@link #pSpsStd};
 *     uint32_t {@link #ppsStdCount};
 *     {@link StdVideoH264PictureParameterSet StdVideoH264PictureParameterSet} const * {@link #pPpsStd};
 * }
*/ public class VkVideoDecodeH264SessionParametersAddInfoEXT extends Struct implements NativeResource { /** The struct size in bytes. */ public static final int SIZEOF; /** The struct alignment in bytes. */ public static final int ALIGNOF; /** The struct member offsets. */ public static final int STYPE, PNEXT, SPSSTDCOUNT, PSPSSTD, PPSSTDCOUNT, PPPSSTD; static { Layout layout = __struct( __member(4), __member(POINTER_SIZE), __member(4), __member(POINTER_SIZE), __member(4), __member(POINTER_SIZE) ); SIZEOF = layout.getSize(); ALIGNOF = layout.getAlignment(); STYPE = layout.offsetof(0); PNEXT = layout.offsetof(1); SPSSTDCOUNT = layout.offsetof(2); PSPSSTD = layout.offsetof(3); PPSSTDCOUNT = layout.offsetof(4); PPPSSTD = layout.offsetof(5); } /** * Creates a {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance at the current position of the specified {@link ByteBuffer} container. Changes to the buffer's content will be * visible to the struct instance and vice versa. * *

The created instance holds a strong reference to the container object.

*/ public VkVideoDecodeH264SessionParametersAddInfoEXT(ByteBuffer container) { super(memAddress(container), __checkContainer(container, SIZEOF)); } @Override public int sizeof() { return SIZEOF; } /** the type of this structure. */ @NativeType("VkStructureType") public int sType() { return nsType(address()); } /** {@code NULL} or a pointer to a structure extending this structure. */ @NativeType("void const *") public long pNext() { return npNext(address()); } /** the number of SPS elements in {@code pSpsStd}. Its value must be less than or equal to the value of {@code maxSpsStdCount}. */ @NativeType("uint32_t") public int spsStdCount() { return nspsStdCount(address()); } /** a pointer to an array of {@code StdVideoH264SequenceParameterSet} structures representing H.264 sequence parameter sets. Each element of the array must have a unique H.264 SPS ID. */ @Nullable @NativeType("StdVideoH264SequenceParameterSet const *") public StdVideoH264SequenceParameterSet.Buffer pSpsStd() { return npSpsStd(address()); } /** the number of PPS provided in {@code pPpsStd}. Its value must be less than or equal to the value of {@code maxPpsStdCount}. */ @NativeType("uint32_t") public int ppsStdCount() { return nppsStdCount(address()); } /** a pointer to an array of {@code StdVideoH264PictureParameterSet} structures representing H.264 picture parameter sets. Each element of the array must have a unique H.264 SPS-PPS ID pair. */ @Nullable @NativeType("StdVideoH264PictureParameterSet const *") public StdVideoH264PictureParameterSet.Buffer pPpsStd() { return npPpsStd(address()); } /** Sets the specified value to the {@link #sType} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT sType(@NativeType("VkStructureType") int value) { nsType(address(), value); return this; } /** Sets the {@link EXTVideoDecodeH264#VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT} value to the {@link #sType} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT sType$Default() { return sType(EXTVideoDecodeH264.VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT); } /** Sets the specified value to the {@link #pNext} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT pNext(@NativeType("void const *") long value) { npNext(address(), value); return this; } /** Sets the specified value to the {@link #spsStdCount} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT spsStdCount(@NativeType("uint32_t") int value) { nspsStdCount(address(), value); return this; } /** Sets the address of the specified {@link StdVideoH264SequenceParameterSet.Buffer} to the {@link #pSpsStd} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT pSpsStd(@Nullable @NativeType("StdVideoH264SequenceParameterSet const *") StdVideoH264SequenceParameterSet.Buffer value) { npSpsStd(address(), value); return this; } /** Sets the specified value to the {@link #ppsStdCount} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT ppsStdCount(@NativeType("uint32_t") int value) { nppsStdCount(address(), value); return this; } /** Sets the address of the specified {@link StdVideoH264PictureParameterSet.Buffer} to the {@link #pPpsStd} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT pPpsStd(@Nullable @NativeType("StdVideoH264PictureParameterSet const *") StdVideoH264PictureParameterSet.Buffer value) { npPpsStd(address(), value); return this; } /** Initializes this struct with the specified values. */ public VkVideoDecodeH264SessionParametersAddInfoEXT set( int sType, long pNext, int spsStdCount, @Nullable StdVideoH264SequenceParameterSet.Buffer pSpsStd, int ppsStdCount, @Nullable StdVideoH264PictureParameterSet.Buffer pPpsStd ) { sType(sType); pNext(pNext); spsStdCount(spsStdCount); pSpsStd(pSpsStd); ppsStdCount(ppsStdCount); pPpsStd(pPpsStd); return this; } /** * Copies the specified struct data to this struct. * * @param src the source struct * * @return this struct */ public VkVideoDecodeH264SessionParametersAddInfoEXT set(VkVideoDecodeH264SessionParametersAddInfoEXT src) { memCopy(src.address(), address(), SIZEOF); return this; } // ----------------------------------- /** Returns a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. */ public static VkVideoDecodeH264SessionParametersAddInfoEXT malloc() { return wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, nmemAllocChecked(SIZEOF)); } /** Returns a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. */ public static VkVideoDecodeH264SessionParametersAddInfoEXT calloc() { return wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, nmemCallocChecked(1, SIZEOF)); } /** Returns a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance allocated with {@link BufferUtils}. */ public static VkVideoDecodeH264SessionParametersAddInfoEXT create() { ByteBuffer container = BufferUtils.createByteBuffer(SIZEOF); return wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, memAddress(container), container); } /** Returns a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance for the specified memory address. */ public static VkVideoDecodeH264SessionParametersAddInfoEXT create(long address) { return wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, address); } /** Like {@link #create(long) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static VkVideoDecodeH264SessionParametersAddInfoEXT createSafe(long address) { return address == NULL ? null : wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, address); } /** * Returns a new {@link VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance allocated with {@link MemoryUtil#memAlloc memAlloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer malloc(int capacity) { return wrap(Buffer.class, nmemAllocChecked(__checkMalloc(capacity, SIZEOF)), capacity); } /** * Returns a new {@link VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance allocated with {@link MemoryUtil#memCalloc memCalloc}. The instance must be explicitly freed. * * @param capacity the buffer capacity */ public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer calloc(int capacity) { return wrap(Buffer.class, nmemCallocChecked(capacity, SIZEOF), capacity); } /** * Returns a new {@link VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance allocated with {@link BufferUtils}. * * @param capacity the buffer capacity */ public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer create(int capacity) { ByteBuffer container = __create(capacity, SIZEOF); return wrap(Buffer.class, memAddress(container), capacity, container); } /** * Create a {@link VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance at the specified memory. * * @param address the memory address * @param capacity the buffer capacity */ public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer create(long address, int capacity) { return wrap(Buffer.class, address, capacity); } /** Like {@link #create(long, int) create}, but returns {@code null} if {@code address} is {@code NULL}. */ @Nullable public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer createSafe(long address, int capacity) { return address == NULL ? null : wrap(Buffer.class, address, capacity); } /** * Returns a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate */ public static VkVideoDecodeH264SessionParametersAddInfoEXT malloc(MemoryStack stack) { return wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, stack.nmalloc(ALIGNOF, SIZEOF)); } /** * Returns a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate */ public static VkVideoDecodeH264SessionParametersAddInfoEXT calloc(MemoryStack stack) { return wrap(VkVideoDecodeH264SessionParametersAddInfoEXT.class, stack.ncalloc(ALIGNOF, 1, SIZEOF)); } /** * Returns a new {@link VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance allocated on the specified {@link MemoryStack}. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer malloc(int capacity, MemoryStack stack) { return wrap(Buffer.class, stack.nmalloc(ALIGNOF, capacity * SIZEOF), capacity); } /** * Returns a new {@link VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance allocated on the specified {@link MemoryStack} and initializes all its bits to zero. * * @param stack the stack from which to allocate * @param capacity the buffer capacity */ public static VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer calloc(int capacity, MemoryStack stack) { return wrap(Buffer.class, stack.ncalloc(ALIGNOF, capacity, SIZEOF), capacity); } // ----------------------------------- /** Unsafe version of {@link #sType}. */ public static int nsType(long struct) { return UNSAFE.getInt(null, struct + VkVideoDecodeH264SessionParametersAddInfoEXT.STYPE); } /** Unsafe version of {@link #pNext}. */ public static long npNext(long struct) { return memGetAddress(struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PNEXT); } /** Unsafe version of {@link #spsStdCount}. */ public static int nspsStdCount(long struct) { return UNSAFE.getInt(null, struct + VkVideoDecodeH264SessionParametersAddInfoEXT.SPSSTDCOUNT); } /** Unsafe version of {@link #pSpsStd}. */ @Nullable public static StdVideoH264SequenceParameterSet.Buffer npSpsStd(long struct) { return StdVideoH264SequenceParameterSet.createSafe(memGetAddress(struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PSPSSTD), nspsStdCount(struct)); } /** Unsafe version of {@link #ppsStdCount}. */ public static int nppsStdCount(long struct) { return UNSAFE.getInt(null, struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PPSSTDCOUNT); } /** Unsafe version of {@link #pPpsStd}. */ @Nullable public static StdVideoH264PictureParameterSet.Buffer npPpsStd(long struct) { return StdVideoH264PictureParameterSet.createSafe(memGetAddress(struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PPPSSTD), nppsStdCount(struct)); } /** Unsafe version of {@link #sType(int) sType}. */ public static void nsType(long struct, int value) { UNSAFE.putInt(null, struct + VkVideoDecodeH264SessionParametersAddInfoEXT.STYPE, value); } /** Unsafe version of {@link #pNext(long) pNext}. */ public static void npNext(long struct, long value) { memPutAddress(struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PNEXT, value); } /** Sets the specified value to the {@code spsStdCount} field of the specified {@code struct}. */ public static void nspsStdCount(long struct, int value) { UNSAFE.putInt(null, struct + VkVideoDecodeH264SessionParametersAddInfoEXT.SPSSTDCOUNT, value); } /** Unsafe version of {@link #pSpsStd(StdVideoH264SequenceParameterSet.Buffer) pSpsStd}. */ public static void npSpsStd(long struct, @Nullable StdVideoH264SequenceParameterSet.Buffer value) { memPutAddress(struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PSPSSTD, memAddressSafe(value)); if (value != null) { nspsStdCount(struct, value.remaining()); } } /** Sets the specified value to the {@code ppsStdCount} field of the specified {@code struct}. */ public static void nppsStdCount(long struct, int value) { UNSAFE.putInt(null, struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PPSSTDCOUNT, value); } /** Unsafe version of {@link #pPpsStd(StdVideoH264PictureParameterSet.Buffer) pPpsStd}. */ public static void npPpsStd(long struct, @Nullable StdVideoH264PictureParameterSet.Buffer value) { memPutAddress(struct + VkVideoDecodeH264SessionParametersAddInfoEXT.PPPSSTD, memAddressSafe(value)); if (value != null) { nppsStdCount(struct, value.remaining()); } } // ----------------------------------- /** An array of {@link VkVideoDecodeH264SessionParametersAddInfoEXT} structs. */ public static class Buffer extends StructBuffer implements NativeResource { private static final VkVideoDecodeH264SessionParametersAddInfoEXT ELEMENT_FACTORY = VkVideoDecodeH264SessionParametersAddInfoEXT.create(-1L); /** * Creates a new {@code VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer} instance backed by the specified container. * * Changes to the container's content will be visible to the struct buffer instance and vice versa. The two buffers' position, limit, and mark values * will be independent. The new buffer's position will be zero, its capacity and its limit will be the number of bytes remaining in this buffer divided * by {@link VkVideoDecodeH264SessionParametersAddInfoEXT#SIZEOF}, and its mark will be undefined. * *

The created buffer instance holds a strong reference to the container object.

*/ public Buffer(ByteBuffer container) { super(container, container.remaining() / SIZEOF); } public Buffer(long address, int cap) { super(address, null, -1, 0, cap, cap); } Buffer(long address, @Nullable ByteBuffer container, int mark, int pos, int lim, int cap) { super(address, container, mark, pos, lim, cap); } @Override protected Buffer self() { return this; } @Override protected VkVideoDecodeH264SessionParametersAddInfoEXT getElementFactory() { return ELEMENT_FACTORY; } /** @return the value of the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#sType} field. */ @NativeType("VkStructureType") public int sType() { return VkVideoDecodeH264SessionParametersAddInfoEXT.nsType(address()); } /** @return the value of the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#pNext} field. */ @NativeType("void const *") public long pNext() { return VkVideoDecodeH264SessionParametersAddInfoEXT.npNext(address()); } /** @return the value of the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#spsStdCount} field. */ @NativeType("uint32_t") public int spsStdCount() { return VkVideoDecodeH264SessionParametersAddInfoEXT.nspsStdCount(address()); } /** @return a {@link StdVideoH264SequenceParameterSet.Buffer} view of the struct array pointed to by the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#pSpsStd} field. */ @Nullable @NativeType("StdVideoH264SequenceParameterSet const *") public StdVideoH264SequenceParameterSet.Buffer pSpsStd() { return VkVideoDecodeH264SessionParametersAddInfoEXT.npSpsStd(address()); } /** @return the value of the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#ppsStdCount} field. */ @NativeType("uint32_t") public int ppsStdCount() { return VkVideoDecodeH264SessionParametersAddInfoEXT.nppsStdCount(address()); } /** @return a {@link StdVideoH264PictureParameterSet.Buffer} view of the struct array pointed to by the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#pPpsStd} field. */ @Nullable @NativeType("StdVideoH264PictureParameterSet const *") public StdVideoH264PictureParameterSet.Buffer pPpsStd() { return VkVideoDecodeH264SessionParametersAddInfoEXT.npPpsStd(address()); } /** Sets the specified value to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#sType} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer sType(@NativeType("VkStructureType") int value) { VkVideoDecodeH264SessionParametersAddInfoEXT.nsType(address(), value); return this; } /** Sets the {@link EXTVideoDecodeH264#VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT} value to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#sType} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer sType$Default() { return sType(EXTVideoDecodeH264.VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_SESSION_PARAMETERS_ADD_INFO_EXT); } /** Sets the specified value to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#pNext} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer pNext(@NativeType("void const *") long value) { VkVideoDecodeH264SessionParametersAddInfoEXT.npNext(address(), value); return this; } /** Sets the specified value to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#spsStdCount} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer spsStdCount(@NativeType("uint32_t") int value) { VkVideoDecodeH264SessionParametersAddInfoEXT.nspsStdCount(address(), value); return this; } /** Sets the address of the specified {@link StdVideoH264SequenceParameterSet.Buffer} to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#pSpsStd} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer pSpsStd(@Nullable @NativeType("StdVideoH264SequenceParameterSet const *") StdVideoH264SequenceParameterSet.Buffer value) { VkVideoDecodeH264SessionParametersAddInfoEXT.npSpsStd(address(), value); return this; } /** Sets the specified value to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#ppsStdCount} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer ppsStdCount(@NativeType("uint32_t") int value) { VkVideoDecodeH264SessionParametersAddInfoEXT.nppsStdCount(address(), value); return this; } /** Sets the address of the specified {@link StdVideoH264PictureParameterSet.Buffer} to the {@link VkVideoDecodeH264SessionParametersAddInfoEXT#pPpsStd} field. */ public VkVideoDecodeH264SessionParametersAddInfoEXT.Buffer pPpsStd(@Nullable @NativeType("StdVideoH264PictureParameterSet const *") StdVideoH264PictureParameterSet.Buffer value) { VkVideoDecodeH264SessionParametersAddInfoEXT.npPpsStd(address(), value); return this; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy