how to create a watcher using fsevents in mac osx 10.6
Posted
by mathan
on Stack Overflow
See other posts from Stack Overflow
or by mathan
Published on 2010-05-04T09:53:32Z
Indexed on
2010/05/04
9:58 UTC
Read the original article
Hit count: 355
I m trying to get file event notifications using fsevents.h file.
I m working with Mac OS X 10.6 and XCode 3.1.4 in which i found fsevents.h in four following locations
- /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/FSEvents.h
- /Xcode3.1.4/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers
- /Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers
- /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers
I have following issues in accessing fsevents.h
1) Out of above four locations which one should be included since fsevents is not getting included unless i put following include syntax include<../../../../Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/fsevents.h>
2) Where could I find the function definition whose prototypes are declared in fsevents.h using "extern" keyword
© Stack Overflow or respective owner