Changeset 25 for Trunk/AILoggerPlugin.h
- Timestamp:
- 05/31/09 22:12:47 (14 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Trunk/AILoggerPlugin.h
r4 r25 15 15 */ 16 16 17 #import <Adium/AIPlugin.h>18 17 19 18 #define PATH_LOGS @"/Logs" … … 46 45 NSMenuItem *viewContactLogsMenuItem; 47 46 NSMenuItem *viewContactLogsContextMenuItem; 47 NSMenuItem *viewGroupLogsContextMenuItem; 48 48 49 49 //Log content search index … … 67 67 68 68 //Indexing progress 69 intlogsToIndex;70 intlogsIndexed;71 intlogIndexingPauses;69 NSInteger logsToIndex; 70 NSInteger logsIndexed; 71 NSInteger logIndexingPauses; 72 72 73 73 } … … 81 81 82 82 //Log viewer 83 - (void)showLogViewerAndReindex:(id)sender; 83 84 - (void)showLogViewerToSelectedContact:(id)sender; 84 85 - (void)showLogViewerToSelectedContextContact:(id)sender; … … 91 92 - (void)markLogDirtyAtPath:(NSString *)path forChat:(AIChat *)chat; 92 93 - (void)markLogDirtyAtPath:(NSString *)path; 93 - (BOOL)getIndexingProgress:( int *)complete outOf:(int*)total;94 - (BOOL)getIndexingProgress:(NSUInteger *)complete outOf:(NSUInteger *)total; 94 95 95 //96 96 - (void)stopIndexingThreads; 97 97 - (void)dirtyAllLogs;