this repo has no description
1
fork

Configure Feed

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

Add InternationalSupport Stubs

Thomas A 126750fa 6bbbefeb

+223
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/InternationalSupport.framework/Headers
··· 1 + Versions/A/Headers
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/A/Headers
··· 1 + ../../../../../../../../../../../../src/private-frameworks/InternationalSupport/include/InternationalSupport
+1
Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/InternationalSupport.framework/Versions/Current
··· 1 + A
+1
framework-private-include/InternationalSupport
··· 1 + ../Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/PrivateFrameworks/InternationalSupport.framework/Headers
+1
src/private-frameworks/CMakeLists.txt
··· 23 23 add_subdirectory(DiskImages) 24 24 add_subdirectory(DiskManagement) 25 25 add_subdirectory(Espresso) 26 + add_subdirectory(InternationalSupport) 26 27 add_subdirectory(IOPlatformPluginFamily) 27 28 add_subdirectory(kperf) 28 29 add_subdirectory(LoggingSupport)
+34
src/private-frameworks/InternationalSupport/CMakeLists.txt
··· 1 + project(InternationalSupport) 2 + 3 + remove_sdk_framework(InternationalSupport 4 + PRIVATE 5 + ) 6 + 7 + set(DYLIB_COMPAT_VERSION "1.0.0") 8 + set(DYLIB_CURRENT_VERSION "69.1.0") 9 + 10 + set(FRAMEWORK_VERSION "A") 11 + 12 + generate_sdk_framework(InternationalSupport 13 + PRIVATE 14 + VERSION ${FRAMEWORK_VERSION} 15 + HEADER "include/InternationalSupport" 16 + ) 17 + 18 + 19 + add_framework(InternationalSupport 20 + PRIVATE 21 + FAT 22 + CURRENT_VERSION 23 + VERSION ${FRAMEWORK_VERSION} 24 + 25 + SOURCES 26 + src/ISUtilities.m 27 + src/NSLocale+InternationalSupportExtensions.m 28 + src/NSBundle+InternationalSupportExtensions.m 29 + 30 + DEPENDENCIES 31 + system 32 + objc 33 + Foundation 34 + )
+24
src/private-frameworks/InternationalSupport/include/InternationalSupport/ISUtilities.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface ISUtilities : NSObject 23 + 24 + @end
+30
src/private-frameworks/InternationalSupport/include/InternationalSupport/InternationalSupport.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #ifndef _INTERNATIONALSUPPORT_H_ 21 + #define _INTERNATIONALSUPPORT_H_ 22 + 23 + #import <Foundation/Foundation.h> 24 + 25 + #import <InternationalSupport/ISUtilities.h> 26 + #import <InternationalSupport/NSBundle+InternationalSupportExtensions.h> 27 + #import <InternationalSupport/NSLocale+InternationalSupportExtensions.h> 28 + 29 + #endif 30 +
+24
src/private-frameworks/InternationalSupport/include/InternationalSupport/NSBundle+InternationalSupportExtensions.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSBundle (InternationalSupportExtensions) 23 + 24 + @end
+24
src/private-frameworks/InternationalSupport/include/InternationalSupport/NSLocale+InternationalSupportExtensions.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #include <Foundation/Foundation.h> 21 + 22 + @interface NSLocale (InternationalSupportExtensions) 23 + 24 + @end
+34
src/private-frameworks/InternationalSupport/src/ISUtilities.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <InternationalSupport/ISUtilities.h> 21 + 22 + @implementation ISUtilities 23 + 24 + - (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector 25 + { 26 + return [NSMethodSignature signatureWithObjCTypes: "v@:"]; 27 + } 28 + 29 + - (void)forwardInvocation:(NSInvocation *)anInvocation 30 + { 31 + NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 32 + } 33 + 34 + @end
+24
src/private-frameworks/InternationalSupport/src/NSBundle+InternationalSupportExtensions.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <InternationalSupport/NSBundle+InternationalSupportExtensions.h> 21 + 22 + @implementation NSBundle (InternationalSupportExtensions) 23 + 24 + @end
+24
src/private-frameworks/InternationalSupport/src/NSLocale+InternationalSupportExtensions.m
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2022 Darling Team 5 + 6 + Darling is free software: you can redistribute it and/or modify 7 + it under the terms of the GNU General Public License as published by 8 + the Free Software Foundation, either version 3 of the License, or 9 + (at your option) any later version. 10 + 11 + Darling is distributed in the hope that it will be useful, 12 + but WITHOUT ANY WARRANTY; without even the implied warranty of 13 + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 + GNU General Public License for more details. 15 + 16 + You should have received a copy of the GNU General Public License 17 + along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 + */ 19 + 20 + #import <InternationalSupport/NSLocale+InternationalSupportExtensions.h> 21 + 22 + @implementation NSLocale (InternationalSupportExtensions) 23 + 24 + @end