this repo has no description
1
fork

Configure Feed

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

Add symbols for SubEthaEdit app

jlucfarias 050a2da4 f1673369

+42 -30
+28 -30
src/frameworks/SystemConfiguration/SCSchemaDefinitions.c
··· 1 1 #include <SystemConfiguration/SCSchemaDefinitions.h> 2 2 #include <CoreFoundation/CFString.h> 3 3 4 - #ifndef CONST_STRING_DECL 5 - # define CONST_STRING_DECL(name, value) const CFStringRef name = CFSTR(value) 6 - #endif 7 - 8 - CONST_STRING_DECL(kSCPropNetProxiesExceptionsList, "ExceptionsList"); 9 - CONST_STRING_DECL(kSCPropNetProxiesExcludeSimpleHostnames, "ExcludeSimpleHostnames"); 10 - CONST_STRING_DECL(kSCPropNetProxiesFTPEnable, "FTPEnable"); 11 - CONST_STRING_DECL(kSCPropNetProxiesFTPPassive, "FTPPassive"); 12 - CONST_STRING_DECL(kSCPropNetProxiesFTPPort, "FTPPort"); 13 - CONST_STRING_DECL(kSCPropNetProxiesFTPProxy, "FTPProxy"); 14 - CONST_STRING_DECL(kSCPropNetProxiesGopherEnable, "GopherEnable"); 15 - CONST_STRING_DECL(kSCPropNetProxiesGopherPort, "GopherPort"); 16 - CONST_STRING_DECL(kSCPropNetProxiesGopherProxy, "GopherProxy"); 17 - CONST_STRING_DECL(kSCPropNetProxiesHTTPEnable, "HTTPEnable"); 18 - CONST_STRING_DECL(kSCPropNetProxiesHTTPPort, "HTTPPort"); 19 - CONST_STRING_DECL(kSCPropNetProxiesHTTPProxy, "HTTPProxy"); 20 - CONST_STRING_DECL(kSCPropNetProxiesHTTPSEnable, "HTTPSEnable"); 21 - CONST_STRING_DECL(kSCPropNetProxiesHTTPSPort, "HTTPSPort"); 22 - CONST_STRING_DECL(kSCPropNetProxiesHTTPSProxy, "HTTPSProxy"); 23 - CONST_STRING_DECL(kSCPropNetProxiesRTSPEnable, "RTSPEnable"); 24 - CONST_STRING_DECL(kSCPropNetProxiesRTSPPort, "RTSPPort"); 25 - CONST_STRING_DECL(kSCPropNetProxiesRTSPProxy, "RTSPProxy"); 26 - CONST_STRING_DECL(kSCPropNetProxiesSOCKSEnable, "SOCKSEnable"); 27 - CONST_STRING_DECL(kSCPropNetProxiesSOCKSPort, "SOCKSPort"); 28 - CONST_STRING_DECL(kSCPropNetProxiesSOCKSProxy, "SOCKSProxy"); 29 - CONST_STRING_DECL(kSCPropNetProxiesProxyAutoConfigEnable, "ProxyAutoConfigEnable"); 30 - CONST_STRING_DECL(kSCPropNetProxiesProxyAutoConfigJavaScript, "ProxyAutoConfigJavaScript"); 31 - CONST_STRING_DECL(kSCPropNetProxiesProxyAutoConfigURLString, "ProxyAutoConfigURLString"); 32 - CONST_STRING_DECL(kSCPropNetProxiesProxyAutoDiscoveryEnable, "ProxyAutoDiscoveryEnable"); 33 - 4 + const CFStringRef kSCPropNetIPv4Addresses = CFSTR("Addresses"); 5 + const CFStringRef kSCPropNetIPv4SubnetMasks = CFSTR("SubnetMasks"); 6 + const CFStringRef kSCPropNetProxiesExceptionsList = CFSTR("ExceptionsList"); 7 + const CFStringRef kSCPropNetProxiesExcludeSimpleHostnames = CFSTR("ExcludeSimpleHostnames"); 8 + const CFStringRef kSCPropNetProxiesFTPEnable = CFSTR("FTPEnable"); 9 + const CFStringRef kSCPropNetProxiesFTPPassive = CFSTR("FTPPassive"); 10 + const CFStringRef kSCPropNetProxiesFTPPort = CFSTR("FTPPort"); 11 + const CFStringRef kSCPropNetProxiesFTPProxy = CFSTR("FTPProxy"); 12 + const CFStringRef kSCPropNetProxiesGopherEnable = CFSTR("GopherEnable"); 13 + const CFStringRef kSCPropNetProxiesGopherPort = CFSTR("GopherPort"); 14 + const CFStringRef kSCPropNetProxiesGopherProxy = CFSTR("GopherProxy"); 15 + const CFStringRef kSCPropNetProxiesHTTPEnable = CFSTR("HTTPEnable"); 16 + const CFStringRef kSCPropNetProxiesHTTPPort = CFSTR("HTTPPort"); 17 + const CFStringRef kSCPropNetProxiesHTTPProxy = CFSTR("HTTPProxy"); 18 + const CFStringRef kSCPropNetProxiesHTTPSEnable = CFSTR("HTTPSEnable"); 19 + const CFStringRef kSCPropNetProxiesHTTPSPort = CFSTR("HTTPSPort"); 20 + const CFStringRef kSCPropNetProxiesHTTPSProxy = CFSTR("HTTPSProxy"); 21 + const CFStringRef kSCPropNetProxiesRTSPEnable = CFSTR("RTSPEnable"); 22 + const CFStringRef kSCPropNetProxiesRTSPPort = CFSTR("RTSPPort"); 23 + const CFStringRef kSCPropNetProxiesRTSPProxy = CFSTR("RTSPProxy"); 24 + const CFStringRef kSCPropNetProxiesSOCKSEnable = CFSTR("SOCKSEnable"); 25 + const CFStringRef kSCPropNetProxiesSOCKSPort = CFSTR("SOCKSPort"); 26 + const CFStringRef kSCPropNetProxiesSOCKSProxy = CFSTR("SOCKSProxy"); 27 + const CFStringRef kSCPropNetProxiesProxyAutoConfigEnable = CFSTR("ProxyAutoConfigEnable"); 28 + const CFStringRef kSCPropNetProxiesProxyAutoConfigJavaScript = CFSTR("ProxyAutoConfigJavaScript"); 29 + const CFStringRef kSCPropNetProxiesProxyAutoConfigURLString = CFSTR("ProxyAutoConfigURLString"); 30 + const CFStringRef kSCPropNetProxiesProxyAutoDiscoveryEnable = CFSTR("ProxyAutoDiscoveryEnable"); 31 + const CFStringRef kSCDynamicStorePropNetPrimaryInterface = CFSTR("PrimaryInterface");
+1
src/frameworks/WebKit/CMakeLists.txt
··· 47 47 src/_WKWebsiteDataStore.m 48 48 src/_WKWebsiteDataStoreConfiguration.m 49 49 src/_WKWebsitePolicies.m 50 + src/WebView.m 50 51 src/WKCustomProtocolLoader.m 51 52 src/WKCustomProtocol.m 52 53 src/WKNetworkSessionDelegate.m
+1
src/frameworks/WebKit/include/WebKit/WebKit.h
··· 188 188 #import <WebKit/WKWebView.h> 189 189 #import <WebKit/WKWebViewConfiguration.h> 190 190 #import <WebKit/WKWindowFeatures.h> 191 + #import <WebKit/WebView.h> 191 192 192 193 @protocol DOMEventListener 193 194 @end
+6
src/frameworks/WebKit/include/WebKit/WebView.h
··· 1 + #import <Cocoa/Cocoa.h> 2 + 3 + extern NSString *WebElementImageKey; 4 + extern NSString *WebElementLinkURLKey; 5 + extern NSString *WebElementLinkTargetFrameKey; 6 + extern NSString *WebElementLinkTitleKey;
+6
src/frameworks/WebKit/src/WebView.m
··· 1 + #import <WebKit/WebView.h> 2 + 3 + NSString *WebElementImageKey = @"WebElementImage"; 4 + NSString *WebElementLinkURLKey = @"WebElementLinkURL"; 5 + NSString *WebElementLinkTargetFrameKey = @"WebElementTargetFrame"; 6 + NSString *WebElementLinkTitleKey = @"WebElementLinkTitle";