Guest User

Untitled

a guest
Mar 12th, 2011
941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  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.  
  12. native heapspace();
  13.  
  14. native funcidx(const name[]);
  15.  
  16. native numargs();
  17. native getarg(arg, index=0);
  18. native setarg(arg, index=0, value);
  19.  
  20. native tolower(c);
  21. native toupper(c);
  22. native swapchars(c);
  23.  
  24. native random(max);
  25.  
  26. native min(value1, value2);
  27. native max(value1, value2);
  28. native clamp(value, min=cellmin, max=cellmax);
  29.  
  30. native getproperty(id=0, const name[]="", value=cellmin, string[]="");
  31. native setproperty(id=0, const name[]="", value=cellmin, const string[]="");
  32. native deleteproperty(id=0, const name[]="", value=cellmin);
  33. native existproperty(id=0, const name[]="", value=cellmin);
Advertisement
Add Comment
Please, Sign In to add comment