this repo has no description
1
fork

Configure Feed

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

Update CoreServices headers so they can be used from C

+4 -1
+2 -1
src/CoreServices/Components.h
··· 6 6 class CarbonComponent; 7 7 #else 8 8 struct __CarbonComponent; 9 - typedef CarbonComponent struct __CarbonComponent; 9 + typedef struct __CarbonComponent CarbonComponent; 10 10 #endif 11 11 struct ComponentDescription; 12 + typedef struct ComponentDescription ComponentDescription; 12 13 13 14 typedef CarbonComponent* ComponentInstance; 14 15 typedef void* Component;
+1
src/CoreServices/FileManager.h
··· 48 48 }; 49 49 }; 50 50 typedef struct FSRef* FSRefPtr; 51 + typedef struct FSRef FSRef; 51 52 52 53 struct HFSUniStr255 53 54 {
+1
src/CoreServices/LaunchServices.h
··· 47 47 CFArrayRef argv; 48 48 AppleEvent * initialEvent; 49 49 }; 50 + typedef struct LSApplicationParameters LSApplicationParameters; 50 51 51 52 OSStatus LSInit(LSInitializeFlags flags); 52 53 OSStatus LSTerm(void);