SAMP Gitlab CI Test
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
832 B

  1. /* Core functions
  2. *
  3. * (c) Copyright 1998-2005, ITB CompuPhase
  4. * This file is provided as is (no warranties).
  5. */
  6. #if defined _core_included
  7. #endinput
  8. #endif
  9. #define _core_included
  10. #pragma library Core
  11. native heapspace();
  12. native funcidx(const name[]);
  13. native numargs();
  14. native getarg(arg, index=0);
  15. native setarg(arg, index=0, value);
  16. native tolower(c);
  17. native toupper(c);
  18. native swapchars(c);
  19. native random(max);
  20. native min(value1, value2);
  21. native max(value1, value2);
  22. native clamp(value, min=cellmin, max=cellmax);
  23. native getproperty(id=0, const name[]="", value=cellmin, string[]="");
  24. native setproperty(id=0, const name[]="", value=cellmin, const string[]="");
  25. native deleteproperty(id=0, const name[]="", value=cellmin);
  26. native existproperty(id=0, const name[]="", value=cellmin);