From 29797ba0fe84e314e51b994df04140c8621602dd Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Fri, 25 Jan 2013 22:25:29 +0000 Subject: Move the flex parsing function definitions to their own file so they're not duplicated in multiple places. --- Source/GenerateThumbnailForURL.m | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) (limited to 'Source/GenerateThumbnailForURL.m') diff --git a/Source/GenerateThumbnailForURL.m b/Source/GenerateThumbnailForURL.m index 3b7d3151..84a0ceea 100644 --- a/Source/GenerateThumbnailForURL.m +++ b/Source/GenerateThumbnailForURL.m @@ -37,19 +37,17 @@ void CancelThumbnailGeneration(void* thisInterface, QLThumbnailRequestRef thumbnail); OSStatus GenerateThumbnailForURL(void *thisInterface, QLThumbnailRequestRef thumbnail, CFURLRef url, CFStringRef contentTypeUTI, CFDictionaryRef options, CGSize maximumSize); -/* ----------------------------------------------------------------------------- -Generate a thumbnail for file - -This function's job is to create thumbnail for designated file as fast as possible ------------------------------------------------------------------------------ */ - +/** + * Generate a thumbnail for file. + * + * This function's job is to create thumbnail for designated file as fast as possible. + */ void CancelThumbnailGeneration(void* thisInterface, QLThumbnailRequestRef thumbnail) { - // implement only if supported + // Implement only if supported } OSStatus GenerateThumbnailForURL(void *thisInterface, QLThumbnailRequestRef thumbnail, CFURLRef url, CFStringRef contentTypeUTI, CFDictionaryRef options, CGSize maximumSize) - { return noErr; -- cgit v1.2.3