- Timestamp:
- Mar 12, 2011, 5:43:12 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/mac_osx/src/external/ois/mac/MacKeyboard.cpp
r7767 r8060 199 199 char macChar; 200 200 201 // TODO clean this up 201 202 if (mTextMode == Unicode) 202 203 { 203 204 //get string size 204 205 UInt32 stringsize; 206 //status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, 0, &stringsize, NULL); 207 //status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, sizeof(UniChar)*10, NULL, &text ); 205 208 status = GetEventParameter( theEvent, 'kuni', typeUnicodeText, NULL, sizeof(UniChar) * 10, &stringsize, &text ); 209 std::cout << "String length: " << stringsize << std::endl; 210 211 //wstring unitext; 212 //for (int i=0;i<10;i++) unitext += (wchar_t)text[i]; 213 //wcout << "Unicode out: " << unitext << endl; 206 214 207 215 if(stringsize > 0)
Note: See TracChangeset
for help on using the changeset viewer.