Mercurial > hg > xemacs-beta
comparison src/device.h @ 5133:444a448b2f53
Merge branch ben-lisp-object into default branch
author | Ben Wing <ben@xemacs.org> |
---|---|
date | Sun, 07 Mar 2010 06:47:37 -0600 |
parents | e0db3c197671 |
children | 308d34e9f07d |
comparison
equal
deleted
inserted
replaced
5113:b2dcf6a6d8ab | 5133:444a448b2f53 |
---|---|
29 | 29 |
30 #include "console.h" | 30 #include "console.h" |
31 | 31 |
32 struct device; | 32 struct device; |
33 | 33 |
34 DECLARE_LRECORD (device, struct device); | 34 DECLARE_LISP_OBJECT (device, struct device); |
35 #define XDEVICE(x) XRECORD (x, device, struct device) | 35 #define XDEVICE(x) XRECORD (x, device, struct device) |
36 #define wrap_device(p) wrap_record (p, device) | 36 #define wrap_device(p) wrap_record (p, device) |
37 #define DEVICEP(x) RECORDP (x, device) | 37 #define DEVICEP(x) RECORDP (x, device) |
38 #define CHECK_DEVICE(x) CHECK_RECORD (x, device) | 38 #define CHECK_DEVICE(x) CHECK_RECORD (x, device) |
39 #define CONCHECK_DEVICE(x) CONCHECK_RECORD (x, device) | 39 #define CONCHECK_DEVICE(x) CONCHECK_RECORD (x, device) |