Guest User

Untitled

a guest
Oct 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. type
  2. tbuf = array [0..1999] of byte;
  3. pbuf = ^tbuf;
  4. ...
  5. getmem(buf, 2000);
  6. ...
  7. freemem(buf, 2000);
  8.  
  9. type
  10. pbuf = ^TidBytes; //динамический массив байт
  11.  
  12. ...
  13. new(buf);
  14. ...
  15. dispose(buf);
Add Comment
Please, Sign In to add comment