Header

  1. View current page

    아겔-_-의 봄공책!

Profile_image?t=1267251289&type=small
아겔-_-의 봄공책입니다. 나름 비밀의 화원.
0

CFFI로 Hello MsgBox

  1. (defpackage :cffi-user
      (:use :common-lisp :cffi))

    (in-package :cffi-user)

    (require :asdf)
    (asdf:oos 'asdf:load-op :cffi)

    (define-foreign-library lib-user32
      (t (:default "user32")))

    (use-foreign-library lib-user32)

    (defctype hwnd :unsigned-int)

    (defcfun "MessageBoxA"
      :int
      (wnd     hwnd)
      (text    :string)
      (caption :string)
      (type    :unsigned-int))

    (MessageBoxA 0
      "OH HAI!"
      "THIS IS MESSAGE FROM OUTER SPACE"
      0)

  2. ;;; EOF

 

참고:

 

 

ps. 하악하악... ccl 하악하악...

 

 

 

 

 

History

Last edited on 03/27/2010 23:24 by 아겔-_-

Comments (0)

You must log in to leave a comment. Please sign in.