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


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