comparison src/select-msw.c @ 231:557eaa0339bf r20-5b14

Import from CVS: tag r20-5b14
author cvs
date Mon, 13 Aug 2007 10:13:48 +0200
parents 6c0ae1f9357f
children 83b3d10dcba9
comparison
equal deleted inserted replaced
230:39ed1d2bdd9d 231:557eaa0339bf
39 { 39 {
40 int rawsize, size, i; 40 int rawsize, size, i;
41 unsigned char *src, *dst, *next; 41 unsigned char *src, *dst, *next;
42 HGLOBAL h = NULL; 42 HGLOBAL h = NULL;
43 43
44 CHECK_STRING (string, 0); 44 CHECK_STRING (string);
45 45
46 /* Calculate size with LFs converted to CRLFs because 46 /* Calculate size with LFs converted to CRLFs because
47 * CF_TEXT format uses CRLF delimited ASCIIZ */ 47 * CF_TEXT format uses CRLF delimited ASCIIZ */
48 src = XSTRING_DATA (string); 48 src = XSTRING_DATA (string);
49 size = rawsize = XSTRING_LENGTH (string) + 1; 49 size = rawsize = XSTRING_LENGTH (string) + 1;