2020-03-22 16:40:18 +01:00
|
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# Copyright (C) 2020 Daniel Thompson
|
|
|
|
|
2020-02-08 08:49:38 +01:00
|
|
|
def const(fn):
|
|
|
|
return fn
|
|
|
|
|
|
|
|
def native(fn):
|
|
|
|
return fn
|
|
|
|
|
|
|
|
def viper(fn):
|
|
|
|
def ptr8(buf):
|
|
|
|
return buf
|
|
|
|
|
|
|
|
# This is a bit of a hack since the scope for ptr8 won't be right
|
|
|
|
# but it does mean no changes to the client
|
|
|
|
fn.__globals__['ptr8'] = ptr8
|
|
|
|
|
|
|
|
return fn
|
2020-01-31 20:36:55 +01:00
|
|
|
|