Next Previous Up Top Contents Index

5 Function and Macro Reference

with-foreign-string

Macro

Summary

Converts a Lisp string to a foreign string, binds variables to a pointer to the foreign string, the number of elements in the string, and the number of bytes taken up by the string, then executes a list of forms, and finally de-allocates the foreign string and pointer.
Package

fli

Signature

with-foreign-string (pointer element-count byte-count 
                    &key external-format null-terminated-p)
                          string
                    &body body => last

body::= form*

Arguments

pointer

A symbol bound to a pointer to the foreign string.

element-count

A symbol bound to the number of elements in the foreign string.

byte-count

A symbol bound to the number of bytes occupied by the foreign string. If the element size of the string is equal to one byte, then byte-count will be the same as element-count.

external-format

A keyword specifying the format to be used for the foreign string.

null-terminated-p

Ift, the foreign string is terminated by a null character. The null character is included in the element-count of the string.

string

The Lisp string to convert.

body

A list of forms to be executed.

form

A form to be executed.

Values

last

The value of the last form in body.

Description

The macrowith-foreign-string is used to dynamically convert a Lisp string to a foreign string and execute a list of forms using the foreign string. The macro first converts string, a Lisp string, into a foreign string. The symbol pointer is bound to a pointer to the start of the string, the symbol element-count is set equal to the number of elements in the string, and the symbol byte-count is set equal to the number of bytes the string occupies. Then the list of forms specified by body is executed. Finally, the memory allocated for the foreign string and pointer is de-allocated.
The external-format keyword is used to specify the format of the foreign string. It defaults to a format appropriate for C string of typechar*. For Unicode encoded strings, specify:unicode. If you want to pass a string to the Win32 API, known asSTR in the Win32 API terminology, specify *multibyte-code-page-ef*, which is a variable holding the external format corresponding to the current Windows multi-byte code page.
The null-terminated-p keyword specifies whether the foreign string is terminated with a null character. It defaults tot. If the string terminates in a null character, it is included in the element-count.
Example

See "Passing a string to a Windows function" on page 27 for an example of the use offli:with-foreign-string.
See Also

convert-to-dynamic-foreign-string
with-dynamic-foreign-objects


LispWorks Foreign Language Interface - 12 Oct 1998

Next Previous Up Top Contents Index

Generated with Harlequin WebMaker