X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/blobdiff_plain/fb9bc9120904f49bdba0e99d16301f922578e9b9..70b52c33c3ffd909abf13b4885f33c02c8e0d0ac:/glib/proxy.lisp diff --git a/glib/proxy.lisp b/glib/proxy.lisp index f2b193d..af7ee23 100644 --- a/glib/proxy.lisp +++ b/glib/proxy.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: proxy.lisp,v 1.37 2006/02/26 16:12:25 espen Exp $ +;; $Id: proxy.lisp,v 1.38 2006/03/03 10:01:47 espen Exp $ (in-package "GLIB") @@ -674,19 +674,25 @@ (defmethod unreference-foreign ((class static-struct-class) location) (deftype inlined (type) type) (define-type-method size-of ((type inlined)) - (let ((class (type-expand (second type)))) + (let ((class (second (type-expand-to 'inlined type)))) (foreign-size class))) (define-type-method reader-function ((type inlined)) - (let ((class (type-expand (second type)))) + (let ((class (second (type-expand-to 'inlined type)))) #'(lambda (location &optional (offset 0) weak-p) (declare (ignore weak-p)) (ensure-proxy-instance class (reference-foreign class (sap+ location offset)))))) (define-type-method writer-function ((type inlined)) - (let ((class (type-expand (second type)))) + (let ((class (second (type-expand-to 'inlined type)))) #'(lambda (instance location &optional (offset 0)) (copy-memory (foreign-location instance) (foreign-size class) (sap+ location offset))))) +(define-type-method destroy-function ((type inlined)) + (declare (ignore type)) + #'(lambda (location &optional offset) + (declare (ignore location offset)))) + + (export 'inlined)