github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/exttinygo/internal/impl_go.go (about)

     1  //go:build !tinygo
     2  
     3  /*
     4  * Copyright (c) 2023-present unTill Pro, Ltd.
     5  *  @author Michael Saigachenko
     6   */
     7  
     8  package internal
     9  
    10  func hostRowWriterPutString(id uint64, typ uint32, namePtr, nameSize, valuePtr, valueSize uint32) {
    11  }
    12  
    13  func hostRowWriterPutBytes(id uint64, typ uint32, namePtr, nameSize, valuePtr, valueSize uint32) {
    14  }
    15  
    16  func hostRowWriterPutQName(id uint64, typ uint32, namePtr, nameSize, pkgPtr, pkgSize, entityPtr, entitySize uint32) {
    17  }
    18  
    19  func hostRowWriterPutBool(id uint64, typ uint32, namePtr, nameSize, value uint32) {
    20  }
    21  
    22  func hostRowWriterPutInt32(id uint64, typ uint32, namePtr, nameSize, value uint32) {
    23  }
    24  
    25  func hostRowWriterPutInt64(id uint64, typ uint32, namePtr, nameSize uint32, value uint64) {
    26  }
    27  
    28  func hostRowWriterPutFloat32(id uint64, typ uint32, namePtr, nameSize uint32, value float32) {
    29  }
    30  
    31  func hostRowWriterPutFloat64(id uint64, typ uint32, namePtr, nameSize uint32, value float64) {
    32  }
    33  
    34  func hostGetKey(storagePtr, storageSize, entityPtr, entitySize uint32) uint64 {
    35  	return 0
    36  }
    37  
    38  func hostQueryValue(keyId uint64) (result uint64) {
    39  	return 0
    40  }
    41  
    42  func hostNewValue(keyId uint64) uint64 {
    43  	return 0
    44  }
    45  
    46  func hostUpdateValue(keyId uint64, existingValueId uint64) uint64 {
    47  	return 0
    48  }
    49  
    50  func hostValueLength(id uint64) uint32 {
    51  	return 0
    52  }
    53  
    54  func hostValueAsBytes(id uint64, namePtr, nameSize uint32) uint64 {
    55  	return 0
    56  }
    57  
    58  func hostValueAsString(id uint64, namePtr, nameSize uint32) uint64 {
    59  	return 0
    60  }
    61  
    62  func hostValueAsInt32(id uint64, namePtr, nameSize uint32) uint32 {
    63  	return 0
    64  }
    65  
    66  func hostValueAsInt64(id uint64, namePtr, nameSize uint32) uint64 {
    67  	return 0
    68  }
    69  
    70  func hostValueAsFloat32(id uint64, namePtr, nameSize uint32) float32 {
    71  	return 0
    72  }
    73  
    74  func hostValueAsFloat64(id uint64, namePtr, nameSize uint32) float64 {
    75  	return 0
    76  }
    77  
    78  func hostValueAsValue(id uint64, namePtr, nameSize uint32) uint64 {
    79  	return 0
    80  }
    81  
    82  func hostValueAsQNamePkg(id uint64, namePtr, nameSize uint32) uint64 {
    83  	return 0
    84  }
    85  
    86  func hostValueAsQNameEntity(id uint64, namePtr, nameSize uint32) uint64 {
    87  	return 0
    88  }
    89  
    90  func hostValueAsBool(id uint64, namePtr, nameSize uint32) uint64 {
    91  	return 0
    92  }
    93  
    94  func hostValueGetAsBytes(id uint64, index uint32) uint64 {
    95  	return 0
    96  }
    97  
    98  func hostValueGetAsString(id uint64, index uint32) uint64 {
    99  	return 0
   100  }
   101  
   102  func hostValueGetAsInt32(id uint64, index uint32) uint32 {
   103  	return 0
   104  }
   105  
   106  func hostValueGetAsInt64(id uint64, index uint32) uint64 {
   107  	return 0
   108  }
   109  
   110  func hostValueGetAsFloat32(id uint64, index uint32) float32 {
   111  	return 0
   112  }
   113  
   114  func hostValueGetAsFloat64(id uint64, index uint32) float64 {
   115  	return 0
   116  }
   117  
   118  func hostValueGetAsValue(id uint64, index uint32) uint64 {
   119  	return 0
   120  }
   121  
   122  func hostValueGetAsQNamePkg(id uint64, index uint32) uint64 {
   123  	return 0
   124  }
   125  
   126  func hostValueGetAsQNameEntity(id uint64, index uint32) uint64 {
   127  	return 0
   128  }
   129  
   130  func hostValueGetAsBool(id uint64, index uint32) uint64 {
   131  	return 0
   132  }
   133  
   134  func hostKeyAsString(id uint64, namePtr, nameSize uint32) uint64 {
   135  	return 0
   136  }
   137  
   138  func hostKeyAsBytes(id uint64, namePtr, nameSize uint32) uint64 {
   139  	return 0
   140  }
   141  
   142  func hostKeyAsQNamePkg(id uint64, namePtr, nameSize uint32) uint64 {
   143  	return 0
   144  }
   145  
   146  func hostKeyAsQNameEntity(id uint64, namePtr, nameSize uint32) uint64 {
   147  	return 0
   148  }
   149  
   150  func hostKeyAsBool(id uint64, namePtr, nameSize uint32) uint64 {
   151  	return 0
   152  }
   153  
   154  func hostKeyAsInt32(id uint64, namePtr, nameSize uint32) uint32 {
   155  	return 0
   156  }
   157  
   158  func hostKeyAsInt64(id uint64, namePtr, nameSize uint32) uint64 {
   159  	return 0
   160  }
   161  
   162  func hostKeyAsFloat32(id uint64, namePtr, nameSize uint32) float32 {
   163  	return 0
   164  }
   165  
   166  func hostKeyAsFloat64(id uint64, namePtr, nameSize uint32) float64 {
   167  	return 0
   168  }
   169  
   170  func hostReadValues(keyId uint64) {
   171  }
   172  
   173  func hostGetValue(keyId uint64) (result uint64) {
   174  	return 0
   175  }