> FYI...
>
> The Sun version of lint is complaining about:
>
> typedef jint (JNICALL *jvmtiReservedCallback)();
>
> being an old-style declaration, wants it to be:
>
> typedef jint (JNICALL *jvmtiReservedCallback)(void);
>
Or since it is never called, you could change it to typedef jint (JNICALL *jvmtiReservedCallback)(void*);
and both C++ and C would be happy.
>
> The Sun version of lint is complaining about:
>
> typedef jint (JNICALL *jvmtiReservedCallback)();
>
> being an old-style declaration, wants it to be:
>
> typedef jint (JNICALL *jvmtiReservedCallback)(void);
>
Or since it is never called, you could change it to typedef jint (JNICALL *jvmtiReservedCallback)(void*);
and both C++ and C would be happy.