Changeset 2025
- Timestamp:
- Jun 10, 2007, 4:10:28 PM (15 years ago)
- Location:
- branches/file_selection/macosx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/file_selection/macosx/Torrent.h
r2023 r2025 25 25 #import <Cocoa/Cocoa.h> 26 26 #import <transmission.h> 27 28 #define PRIORITY_LOW -1 29 #define PRIORITY_NORMAL 0 30 #define PRIORITY_HIGH 1 27 31 28 32 #define INVALID -99 -
branches/file_selection/macosx/Torrent.m
r2023 r2025 30 30 #define MAX_PIECES 324 31 31 #define BLANK_PIECE -99 32 33 #define PRIORITY_LOW -134 #define PRIORITY_NORMAL 035 #define PRIORITY_HIGH 136 32 37 33 static int static_lastid = 0; … … 1606 1602 path = @""; 1607 1603 1608 priority = filePriorities ? [[file sShouldDownloadobjectAtIndex: i] intValue] : PRIORITY_NORMAL;1604 priority = filePriorities ? [[filePriorities objectAtIndex: i] intValue] : PRIORITY_NORMAL; 1609 1605 [self insertPath: pathComponents forSiblings: fileList withParent: nil previousPath: path 1610 1606 fileSize: file->length index: i priority: priority];
Note: See TracChangeset
for help on using the changeset viewer.