Newer
Older
Import / research / XPlat / import / runtime.cpp
@John Ryland John Ryland on 22 Dec 2020 156 bytes import NUC files
#include <stdio.h>


class Runtime
{
public:
    Runtime() { }
    ~Runtime() { }
    void native_call() {
	printf("doing linux native call\n");
    }
};