aboutsummaryrefslogtreecommitdiffstats
path: root/Source/GenerateThumbnailForURL.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2013-01-25 22:25:29 +0000
committerstuconnolly <stuart02@gmail.com>2013-01-25 22:25:29 +0000
commit29797ba0fe84e314e51b994df04140c8621602dd (patch)
tree55df1b95e4025e3a1df3b698b9979dafaadd2c1c /Source/GenerateThumbnailForURL.m
parent4faf9d57efd88123216f78b292886a5ee086e421 (diff)
downloadsequelpro-29797ba0fe84e314e51b994df04140c8621602dd.tar.gz
sequelpro-29797ba0fe84e314e51b994df04140c8621602dd.tar.bz2
sequelpro-29797ba0fe84e314e51b994df04140c8621602dd.zip
Move the flex parsing function definitions to their own file so they're not duplicated in multiple places.
Diffstat (limited to 'Source/GenerateThumbnailForURL.m')
-rw-r--r--Source/GenerateThumbnailForURL.m14
1 files changed, 6 insertions, 8 deletions
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;