this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: move TextInputSources.h to proper location

+13 -27
+12
src/frameworks/Carbon/HIToolbox/include/HIToolbox/TextInputSources.h
··· 1 1 #ifndef _Carbon_TextInputSources_H_ 2 2 #define _Carbon_TextInputSources_H_ 3 + #include <CoreFoundation/CFString.h> 3 4 4 5 #ifdef __cplusplus 5 6 extern "C" { ··· 11 12 extern const CFStringRef kTISPropertyInputSourceCategory; 12 13 extern const CFStringRef kTISPropertyInputSourceType; 13 14 extern const CFStringRef kTISTypeKeyboardLayout; 15 + extern const CFStringRef kTISPropertyInputSourceLanguages; 16 + extern const CFStringRef kTISPropertyLocalizedName; 17 + 18 + typedef struct __TISInputSource* TISInputSourceRef; 19 + 20 + extern TISInputSourceRef TISCopyCurrentKeyboardLayoutInputSource(void); 21 + extern TISInputSourceRef TISCopyCurrentKeyboardInputSource(void); 22 + 23 + extern void* TISGetInputSourceProperty(TISInputSourceRef inputSourceRef, CFStringRef key); 24 + 25 + extern TISInputSourceRef TISCopyCurrentASCIICapableKeyboardLayoutInputSource(void); 14 26 15 27 #ifdef __cplusplus 16 28 }
-26
src/frameworks/Carbon/HIToolbox/src/TextInputSources.h
··· 1 - #ifndef _TEXTINPUTSOURCES_H 2 - #define _TEXTINPUTSOURCES_H 3 - #include <CoreFoundation/CFString.h> 4 - 5 - #ifdef __cplusplus 6 - extern "C" { 7 - #endif 8 - 9 - typedef struct __TISInputSource* TISInputSourceRef; 10 - 11 - extern const CFStringRef kTISPropertyUnicodeKeyLayoutData; 12 - extern const CFStringRef kTISPropertyInputSourceLanguages; 13 - extern const CFStringRef kTISPropertyLocalizedName; 14 - 15 - extern TISInputSourceRef TISCopyCurrentKeyboardLayoutInputSource(void); 16 - extern TISInputSourceRef TISCopyCurrentKeyboardInputSource(void); 17 - 18 - extern void* TISGetInputSourceProperty(TISInputSourceRef inputSourceRef, CFStringRef key); 19 - 20 - extern TISInputSourceRef TISCopyCurrentASCIICapableKeyboardLayoutInputSource(void); 21 - 22 - #ifdef __cplusplus 23 - } 24 - #endif 25 - 26 - #endif
+1 -1
src/frameworks/Carbon/HIToolbox/src/TextInputSources.mm
··· 1 - #include "TextInputSources.h" 1 + #include <HIToolbox/TextInputSources.h> 2 2 #include <CoreFoundation/CFDictionary.h> 3 3 #include <CoreFoundation/CFData.h> 4 4 #include <os/lock.h>