1// bindgen-flags: --raw-line "#![cfg(not(test))]" -- --target=i686-pc-win32
2// bindgen-unstable
3//
4// We can only check that this builds, but not that it actually passes, because
5// we have no CI on the target platform.
6
7struct JNINativeInterface_ {
8  int (__stdcall *GetVersion)(void *env);
9  unsigned long long __hack; // A hack so the field alignment is the same than
10                             // for 64-bit, where we run CI.
11};
12
13__stdcall void bar();
14