Files
android_development/ndk/samples/module-exports/jni/bar/bar.h
David 'Digit' Turner fcefaf88ab Add a sample to demonstrate module exports in the NDK.
+ add .gitignore

Change-Id: Ifa160316e37cf201099ab0d8d89fdd375ee3eb59
2010-06-10 16:56:16 -07:00

16 lines
272 B
C

#ifndef BAR_H
#define BAR_H
/* FOO should be defined to '1' here with the magic of LOCAL_EXPORT_CFLAGS */
#ifndef FOO
#error FOO should be defined here !
#endif
#if FOO != 1
#error FOO is not correctly defined here !
#endif
extern int bar(int x);
#endif /* BAR_H */