this repo has no description
1
fork

Configure Feed

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

Merge pull request #1631 from jlucfarias/add-symbols-bibdesk

Add symbols for BibDesk

authored by

CuriousTommy and committed by
GitHub
066cf397 3a4da4b7

+61
+33
src/frameworks/CoreServices/include/SearchKit/SKIndex.h
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 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 SKINDEX_H_ 21 + #define SKINDEX_H_ 22 + 23 + #ifdef __cplusplus 24 + extern "C" { 25 + #endif 26 + 27 + extern void SKLoadDefaultExtractorPlugIns(void); 28 + 29 + #ifdef __cplusplus 30 + } 31 + #endif 32 + 33 + #endif
+2
src/frameworks/CoreServices/src/LaunchServices/constants.c
··· 28 28 29 29 const CFStringRef _kLSASNKey = CFSTR("LSASN"); 30 30 31 + const CFStringRef kLSItemContentType = CFSTR("LSItemContentType"); 32 + 31 33 const CFStringRef kLSSharedFileListFavoriteItems = CFSTR("com.apple.LSSharedFileList.FavoriteItems"); 32 34 const CFStringRef kLSSharedFileListFavoriteVolumes = CFSTR("com.apple.LSSharedFileList.FavoriteVolumes"); 33 35 const CFStringRef kLSSharedFileListGlobalLoginItems = CFSTR("com.apple.LSSharedFileList.GlobalLoginItems");
+1
src/frameworks/CoreServices/src/SearchKit/CMakeLists.txt
··· 14 14 15 15 SOURCES 16 16 Analysis.m 17 + SKIndex.c 17 18 18 19 DEPENDENCIES 19 20 CoreFoundation
+25
src/frameworks/CoreServices/src/SearchKit/SKIndex.c
··· 1 + /* 2 + This file is part of Darling. 3 + 4 + Copyright (C) 2025 Darling Developers 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 <SearchKit/SKIndex.h> 21 + #include <stdio.h> 22 + 23 + void SKLoadDefaultExtractorPlugIns(void) { 24 + printf("STUB %s\n", __PRETTY_FUNCTION__); 25 + }