• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

An Objective-C wrapper for Mac OS X’s FSEvents C API.


Commit MetaInfo

Révision2a0814394982b35f1f9ab1045edf6526622c6e7d (tree)
l'heure2010-04-04 02:58:12
AuteurAron Cedercrantz <aron@cede...>
CommiterAron Cedercrantz

Message de Log

Added private API; create and dispose of an event stream and a callback function.

Change Summary

Modification

--- a/CDEvents.m
+++ b/CDEvents.m
@@ -13,6 +13,20 @@
1313 // Private API
1414 @interface CDEvents ()
1515
16+// The FSEvents callback function
17+static void CDEventsCallback(
18+ ConstFSEventStreamRef streamRef,
19+ void *callbackCtxInfo,
20+ size_t numEvents,
21+ void *eventPaths,
22+ const FSEventStreamEventFlags eventFlags[],
23+ const FSEventStreamEventId eventIds[]);
24+
25+// Creates and initiates the event stream.
26+- (void)createEventsStream;
27+// Disposes of the event stream.
28+- (void)disposeEventsStream;
29+
1630 @end
1731
1832