Skip to content
Snippets Groups Projects
Commit e704fc7b authored by layer's avatar layer
Browse files

2006-03-28 <layer@HOBART>

parent cec2a6e0
No related branches found
No related tags found
No related merge requests found
2006-03-28 <layer@HOBART>
* aclpc/acl-class.lisp: update arglist for wproc-clim-wrapper,
tooltip-relay, clim-wind-proc, and clim-ctrl-proc to use winapi
types.
2006-02-03 <layer@HOBART64> 2006-02-03 <layer@HOBART64>
for 64-bit windows (changing all microsft-32's to microsoft's) for 64-bit windows (changing all microsft-32's to microsoft's)
...@@ -6005,4 +6011,4 @@ IGNORE JDI SPECIFIC CHANGES TO Makefile ...@@ -6005,4 +6011,4 @@ IGNORE JDI SPECIFIC CHANGES TO Makefile
Lots of other stuff Lots of other stuff
******************************************************************************* *******************************************************************************
$Revision: 2.13 $ $Revision: 2.14 $
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
;; Commercial Software developed at private expense as specified in ;; Commercial Software developed at private expense as specified in
;; DOD FAR Supplement 52.227-7013 (c) (1) (ii), as applicable. ;; DOD FAR Supplement 52.227-7013 (c) (1) (ii), as applicable.
;; ;;
;; $Id: acl-class.lisp,v 2.9 2005/12/08 21:25:41 layer Exp $ ;; $Id: acl-class.lisp,v 2.10 2006/03/29 00:32:30 layer Exp $
#|**************************************************************************** #|****************************************************************************
* * * *
...@@ -160,7 +160,10 @@ ...@@ -160,7 +160,10 @@
:signed-long)) :signed-long))
;; [rfe4951]: ;; [rfe4951]:
(ff:defun-foreign-callable wproc-clim-wrapper (hwnd message wparam lparam) (ff:defun-foreign-callable wproc-clim-wrapper ((hwnd win:hwnd)
(message win:uint)
(wparam win:wparam)
(lparam win:lparam))
(let* ((s *clim-wproc-arg-struct*) (let* ((s *clim-wproc-arg-struct*)
(d (pccstructure-data-pointer s))) (d (pccstructure-data-pointer s)))
(setf (long-ref d 0) hwnd (setf (long-ref d 0) hwnd
...@@ -890,7 +893,10 @@ ...@@ -890,7 +893,10 @@
;; The message stream needs to be relayed to the tooltip ;; The message stream needs to be relayed to the tooltip
;; control for it to know when and where to display tool tips. ;; control for it to know when and where to display tool tips.
;; [rfe4951]: ;; [rfe4951]:
(ff:defun-foreign-callable tooltip-relay (window msg wparam lparam) (ff:defun-foreign-callable tooltip-relay ((window win:hwnd)
(msg win:uint)
(wparam win:wparam)
(lparam win:lparam))
(declare (:convention :stdcall) (:unwind 0) (declare (:convention :stdcall) (:unwind 0)
(optimize (safety 0) (speed 3))) (optimize (safety 0) (speed 3)))
(case msg (case msg
...@@ -931,7 +937,10 @@ ...@@ -931,7 +937,10 @@
;; a 32-bit "LRESULT" value to the caller. The nature of the ;; a 32-bit "LRESULT" value to the caller. The nature of the
;; return value depends on the message. ;; return value depends on the message.
;; [rfe4951]: ;; [rfe4951]:
(ff:defun-foreign-callable clim-wind-proc (window msg wparam lparam) (ff:defun-foreign-callable clim-wind-proc ((window win:hwnd)
(msg win:uint)
(wparam win:wparam)
(lparam win:lparam))
(declare (:convention :stdcall) (:unwind 0) (declare (:convention :stdcall) (:unwind 0)
(optimize (safety 0) (speed 3))) (optimize (safety 0) (speed 3)))
(let ((result 0) (let ((result 0)
...@@ -1031,7 +1040,10 @@ ...@@ -1031,7 +1040,10 @@
;;; only the edit control). ;;; only the edit control).
;; [rfe4951] ;; [rfe4951]
(ff:defun-foreign-callable clim-ctrl-proc (window msg wparam lparam) (ff:defun-foreign-callable clim-ctrl-proc ((window win:hwnd)
(msg win:uint)
(wparam win:wparam)
(lparam win:lparam))
(declare (:convention :stdcall) (:unwind 0)) (declare (:convention :stdcall) (:unwind 0))
(mp:without-scheduling (mp:without-scheduling
(setf *hwnd* window) (setf *hwnd* window)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment