Advertisement
Guest User

BytesTestmod

a guest
Jan 29th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.31 KB | None | 0 0
  1. Tweak.xm:63:14: error: unknown type name 'Item$initItems'
  2. MSHook(void, Item$initItems) {
  3. ^
  4. Tweak.xm:63:1: error: C++ requires a type specifier for all declarations
  5. MSHook(void, Item$initItems) {
  6. ^~~~~~
  7. Tweak.xm:63:7: error: 'void' must be the first and only parameter if specified
  8. MSHook(void, Item$initItems) {
  9. ^
  10. Tweak.xm:64:5: error: use of undeclared identifier '_Item$initItems'
  11. _Item$initItems();
  12. ^
  13. Tweak.xm:68:16: error: C++ requires a type specifier for all declarations
  14. MSHook(string, I18n$get, string const& key) {
  15. ^~~~~~~~
  16. Tweak.xm:68:1: error: C++ requires a type specifier for all declarations
  17. MSHook(string, I18n$get, string const& key) {
  18. ^~~~~~
  19. Tweak.xm:69:47: error: cannot initialize return object of type 'int' with an
  20. lvalue of type 'const char [7]'
  21. if(key == "item.hopper_item.name") return "Hopper";
  22. ^~~~~~~~
  23. Tweak.xm:70:45: error: cannot initialize return object of type 'int' with an
  24. lvalue of type 'const char [10]'
  25. if(key == "item.fireworks.name") return "Fireworks";
  26. ^~~~~~~~~~~
  27. Tweak.xm:71:39: error: cannot initialize return object of type 'int' with an
  28. lvalue of type 'const char [12]'
  29. if(key == "item.rod.name") return "Fishing rod";
  30. ^~~~~~~~~~~~~
  31. Tweak.xm:72:41: error: cannot initialize return object of type 'int' with an
  32. lvalue of type 'const char [12]'
  33. if(key == "item.cream.name") return "Magma Cream";
  34. ^~~~~~~~~~~~~
  35. Tweak.xm:73:47: error: cannot initialize return object of type 'int' with an
  36. lvalue of type 'const char [16]'
  37. if(key == "item.shiny_melon.name") return "Sparkling Melon";
  38. ^~~~~~~~~~~~~~~~~
  39. Tweak.xm:74:12: error: use of undeclared identifier '_I18n$get'
  40. return _I18n$get(key);
  41. ^
  42. Tweak.xm:78:1: error: C++ requires a type specifier for all declarations
  43. MSInitialize {
  44. ^~~~~~~~~~~~
  45. Tweak.xm:78:13: error: expected ';' after top level declarator
  46. MSInitialize {
  47. ^
  48. ;
  49. 14 errors generated.
  50. make[2]: *** [obj/Tweak.xm.b95ea6bf.o] Error 1
  51. make[1]: *** [internal-library-all_] Error 2
  52. make: *** [test.all.tweak.variables] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement