binder.h 851 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (C) 2008 Google, Inc.
  3. *
  4. * Based on, but no longer compatible with, the original
  5. * OpenBinder.org binder driver interface, which is:
  6. *
  7. * Copyright (c) 2005 Palmsource, Inc.
  8. *
  9. * This software is licensed under the terms of the GNU General Public
  10. * License version 2, as published by the Free Software Foundation, and
  11. * may be copied, distributed, and modified under those terms.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. */
  19. #ifndef _LINUX_BINDER_H
  20. #define _LINUX_BINDER_H
  21. #ifdef CONFIG_ANDROID_BINDER_IPC_32BIT
  22. #define BINDER_IPC_32BIT 1
  23. #endif
  24. #include <uapi/linux/android/binder.h>
  25. #endif /* _LINUX_BINDER_H */