Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mcclim
clim-tos
Commits
e704fc7b
Commit
e704fc7b
authored
19 years ago
by
layer
Browse files
Options
Downloads
Patches
Plain Diff
2006-03-28 <layer@HOBART>
parent
cec2a6e0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog.n
+7
-1
7 additions, 1 deletion
ChangeLog.n
aclpc/acl-class.lisp
+17
-5
17 additions, 5 deletions
aclpc/acl-class.lisp
with
24 additions
and
6 deletions
ChangeLog.n
+
7
−
1
View file @
e704fc7b
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.1
3
$
$Revision: 2.1
4
$
This diff is collapsed.
Click to expand it.
aclpc/acl-class.lisp
+
17
−
5
View file @
e704fc7b
...
@@ -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
200
5/12/08 21:25:41
layer Exp $
;; $Id: acl-class.lisp,v 2.
10
200
6/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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment