2008-02-19 11:06:52 -07:00
|
|
|
/* Copyright (c) 2008, Avian Contributors
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and/or distribute this software
|
|
|
|
for any purpose with or without fee is hereby granted, provided
|
|
|
|
that the above copyright notice and this permission notice appear
|
|
|
|
in all copies.
|
|
|
|
|
|
|
|
There is NO WARRANTY for this software. See license.txt for
|
|
|
|
details. */
|
|
|
|
|
2007-07-06 17:50:26 -06:00
|
|
|
#ifndef JNIENV_H
|
|
|
|
#define JNIENV_H
|
2007-07-06 09:24:06 -06:00
|
|
|
|
2007-07-06 17:50:26 -06:00
|
|
|
#include "machine.h"
|
2007-07-06 09:24:06 -06:00
|
|
|
|
|
|
|
namespace vm {
|
2007-07-20 08:36:31 -06:00
|
|
|
|
2007-07-06 09:24:06 -06:00
|
|
|
void
|
2007-09-10 17:33:58 -06:00
|
|
|
populateJNITables(JavaVMVTable* vmTable, JNIEnvVTable* envTable);
|
2007-07-20 08:36:31 -06:00
|
|
|
|
2007-07-06 09:24:06 -06:00
|
|
|
} // namespace vm
|
|
|
|
|
2007-07-06 17:50:26 -06:00
|
|
|
#endif//JNIENV_H
|