hid-roccat-lua.h 558 B

1234567891011121314151617181920212223242526272829
  1. #ifndef __HID_ROCCAT_LUA_H
  2. #define __HID_ROCCAT_LUA_H
  3. /*
  4. * Copyright (c) 2012 Stefan Achatz <erazor_de@users.sourceforge.net>
  5. */
  6. /*
  7. * This program is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. */
  12. #include <linux/types.h>
  13. enum {
  14. LUA_SIZE_CONTROL = 8,
  15. };
  16. enum lua_commands {
  17. LUA_COMMAND_CONTROL = 3,
  18. };
  19. struct lua_device {
  20. struct mutex lua_lock;
  21. };
  22. #endif