[Python-checkins] CVS: python/dist/src/Mac/Modules/cf cfscan.py,1.5,1.6

Jack Jansen jackjansen@users.sourceforge.net
Tue, 01 Jan 2002 14:42:53 -0800


Update of /cvsroot/python/python/dist/src/Mac/Modules/cf
In directory usw-pr-cvs1:/tmp/cvs-serv10268/Python/Mac/Modules/cf

Modified Files:
	cfscan.py 
Log Message:
Added some support for unicode arguments.

Index: cfscan.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/cf/cfscan.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** cfscan.py	2001/07/17 20:47:08	1.5
--- cfscan.py	2002/01/01 22:42:51	1.6
***************
*** 93,96 ****
--- 93,99 ----
  			"CFStringGetCharacters",
  			"CFURLCreateStringWithFileSystemPath", # Gone in later releases
+ 			"CFStringCreateMutableWithExternalCharactersNoCopy", # Not a clue...
+ 			"CFStringSetExternalCharactersNoCopy",
+ 			"CFStringGetCharacterAtIndex", # No format for single unichars yet.
  			]
  
***************
*** 106,112 ****
  			"CFArrayApplierFunction", # Callback function pointer
  			"CFDictionaryApplierFunction", # Callback function pointer
- 			"UniChar_ptr", # XXXX To be done
- 			"const_UniChar_ptr", # XXXX To be done
- 			"UniChar", # XXXX To be done
  			"va_list", # For printf-to-a-cfstring. Use Python.
  			"const_CFStringEncoding_ptr", # To be done, I guess
--- 109,112 ----
***************
*** 119,122 ****
--- 119,125 ----
  			 [("UcharInBuffer", "*", "*")]),
  			 
+ 			([("UniChar_ptr", "*", "InMode"), ("CFIndex", "*", "InMode")],
+ 			 [("UnicodeInBuffer", "*", "*")]),
+ 
  			# Some functions return a const char *. Don't worry, we won't modify it.
  			([("const_char_ptr", "*", "ReturnMode")],