QuickLook.m
1 /* 2 This file is part of Darling. 3 4 Copyright (C) 2017 Lubos Dolezel 5 6 Darling is free software: you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation, either version 3 of the License, or 9 (at your option) any later version. 10 11 Darling is distributed in the hope that it will be useful, 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License 17 along with Darling. If not, see <http://www.gnu.org/licenses/>. 18 */ 19 20 21 #include <QuickLook/QuickLook.h> 22 #include <stdlib.h> 23 #include <stdio.h> 24 25 static int verbose = 0; 26 27 __attribute__((constructor)) 28 static void initme(void) { 29 verbose = getenv("STUB_VERBOSE") != NULL; 30 } 31 32 void* QLAdaptContextCTMToFitRectInRect(void) { 33 if (verbose) puts("STUB: QLAdaptContextCTMToFitRectInRect called"); 34 return NULL; 35 } 36 37 void* QLAdaptContextCTMToScaleRectToRect(void) { 38 if (verbose) puts("STUB: QLAdaptContextCTMToScaleRectToRect called"); 39 return NULL; 40 } 41 42 void* QLAdaptSizeInSize(void) { 43 if (verbose) puts("STUB: QLAdaptSizeInSize called"); 44 return NULL; 45 } 46 47 void* QLAdaptSizeOutSize(void) { 48 if (verbose) puts("STUB: QLAdaptSizeOutSize called"); 49 return NULL; 50 } 51 52 void* QLAdaptSizeToRect(void) { 53 if (verbose) puts("STUB: QLAdaptSizeToRect called"); 54 return NULL; 55 } 56 57 void* QLAdaptSizeToRectWithRounding(void) { 58 if (verbose) puts("STUB: QLAdaptSizeToRectWithRounding called"); 59 return NULL; 60 } 61 62 void* QLAdjustRectInRect(void) { 63 if (verbose) puts("STUB: QLAdjustRectInRect called"); 64 return NULL; 65 } 66 67 void* QLBitmapContextLengthWithSize(void) { 68 if (verbose) puts("STUB: QLBitmapContextLengthWithSize called"); 69 return NULL; 70 } 71 72 void* QLBitmapGetPixelSizeForPointSize(void) { 73 if (verbose) puts("STUB: QLBitmapGetPixelSizeForPointSize called"); 74 return NULL; 75 } 76 77 void* QLCacheObserverCancel(void) { 78 if (verbose) puts("STUB: QLCacheObserverCancel called"); 79 return NULL; 80 } 81 82 void* QLCacheObserverCreate(void) { 83 if (verbose) puts("STUB: QLCacheObserverCreate called"); 84 return NULL; 85 } 86 87 void* QLCacheObserverGetTypeID(void) { 88 if (verbose) puts("STUB: QLCacheObserverGetTypeID called"); 89 return NULL; 90 } 91 92 void* QLCacheObserverResume(void) { 93 if (verbose) puts("STUB: QLCacheObserverResume called"); 94 return NULL; 95 } 96 97 void* QLCacheObserverSetInvalidationBlock(void) { 98 if (verbose) puts("STUB: QLCacheObserverSetInvalidationBlock called"); 99 return NULL; 100 } 101 102 void* QLCacheObserverSuspend(void) { 103 if (verbose) puts("STUB: QLCacheObserverSuspend called"); 104 return NULL; 105 } 106 107 void* QLCachedDrawingCreate(void) { 108 if (verbose) puts("STUB: QLCachedDrawingCreate called"); 109 return NULL; 110 } 111 112 void* QLCachedDrawingDispose(void) { 113 if (verbose) puts("STUB: QLCachedDrawingDispose called"); 114 return NULL; 115 } 116 117 void* QLCachedDrawingDraw(void) { 118 if (verbose) puts("STUB: QLCachedDrawingDraw called"); 119 return NULL; 120 } 121 122 void* QLCheckAccessForURL(void) { 123 if (verbose) puts("STUB: QLCheckAccessForURL called"); 124 return NULL; 125 } 126 127 void* QLCheckAppleSignature(void) { 128 if (verbose) puts("STUB: QLCheckAppleSignature called"); 129 return NULL; 130 } 131 132 void* QLCompareVersion(void) { 133 if (verbose) puts("STUB: QLCompareVersion called"); 134 return NULL; 135 } 136 137 void* QLContextCreateGrayColorSpace(void) { 138 if (verbose) puts("STUB: QLContextCreateGrayColorSpace called"); 139 return NULL; 140 } 141 142 void* QLContextCreateRGBColorSpace(void) { 143 if (verbose) puts("STUB: QLContextCreateRGBColorSpace called"); 144 return NULL; 145 } 146 147 void* QLContextSetGrayFillColor(void) { 148 if (verbose) puts("STUB: QLContextSetGrayFillColor called"); 149 return NULL; 150 } 151 152 void* QLContextSetGrayStrokeColor(void) { 153 if (verbose) puts("STUB: QLContextSetGrayStrokeColor called"); 154 return NULL; 155 } 156 157 void* QLContextSetRGBFillColor(void) { 158 if (verbose) puts("STUB: QLContextSetRGBFillColor called"); 159 return NULL; 160 } 161 162 void* QLContextSetRGBStrokeColor(void) { 163 if (verbose) puts("STUB: QLContextSetRGBStrokeColor called"); 164 return NULL; 165 } 166 167 void* QLCopyIconImageFromURL(void) { 168 if (verbose) puts("STUB: QLCopyIconImageFromURL called"); 169 return NULL; 170 } 171 172 void* QLCopyURLQueryDictionary(void) { 173 if (verbose) puts("STUB: QLCopyURLQueryDictionary called"); 174 return NULL; 175 } 176 177 void* QLCreateImageWithBitmapContext(void) { 178 if (verbose) puts("STUB: QLCreateImageWithBitmapContext called"); 179 return NULL; 180 } 181 182 void* QLCreateImageWithBlock(void) { 183 if (verbose) puts("STUB: QLCreateImageWithBlock called"); 184 return NULL; 185 } 186 187 void* QLCreateImageWithMallocedBitmapContextTransferData(void) { 188 if (verbose) puts("STUB: QLCreateImageWithMallocedBitmapContextTransferData called"); 189 return NULL; 190 } 191 192 void* QLCreateMallocedBitmapContextWithSize(void) { 193 if (verbose) puts("STUB: QLCreateMallocedBitmapContextWithSize called"); 194 return NULL; 195 } 196 197 void* QLCreateMallocedBitmapContextWithSizeSupportingSubPixelAntialiasing(void) { 198 if (verbose) puts("STUB: QLCreateMallocedBitmapContextWithSizeSupportingSubPixelAntialiasing called"); 199 return NULL; 200 } 201 202 void* QLCreateMallocedGrayscaleContextWithSize(void) { 203 if (verbose) puts("STUB: QLCreateMallocedGrayscaleContextWithSize called"); 204 return NULL; 205 } 206 207 void* QLCreateReservedBitmapContextWithSize(void) { 208 if (verbose) puts("STUB: QLCreateReservedBitmapContextWithSize called"); 209 return NULL; 210 } 211 212 void* QLCreateURLByResolvingAlias(void) { 213 if (verbose) puts("STUB: QLCreateURLByResolvingAlias called"); 214 return NULL; 215 } 216 217 void* QLCreateURLByResolvingSymlink(void) { 218 if (verbose) puts("STUB: QLCreateURLByResolvingSymlink called"); 219 return NULL; 220 } 221 222 void* QLCreateVMBitmapContextWithSize(void) { 223 if (verbose) puts("STUB: QLCreateVMBitmapContextWithSize called"); 224 return NULL; 225 } 226 227 void* QLDeletePaths(void) { 228 if (verbose) puts("STUB: QLDeletePaths called"); 229 return NULL; 230 } 231 232 void* QLDiskStoreAcceptsThumbnails(void) { 233 if (verbose) puts("STUB: QLDiskStoreAcceptsThumbnails called"); 234 return NULL; 235 } 236 237 void* QLDiskStoreCopyDiskStoreForURL(void) { 238 if (verbose) puts("STUB: QLDiskStoreCopyDiskStoreForURL called"); 239 return NULL; 240 } 241 242 void* QLDiskStoreCopyDiskStores(void) { 243 if (verbose) puts("STUB: QLDiskStoreCopyDiskStores called"); 244 return NULL; 245 } 246 247 void* QLDiskStoreExecuteBlock(void) { 248 if (verbose) puts("STUB: QLDiskStoreExecuteBlock called"); 249 return NULL; 250 } 251 252 void* QLDiskStoreGetAvailableDiskSpace(void) { 253 if (verbose) puts("STUB: QLDiskStoreGetAvailableDiskSpace called"); 254 return NULL; 255 } 256 257 void* QLDiskStoreGetMountPath(void) { 258 if (verbose) puts("STUB: QLDiskStoreGetMountPath called"); 259 return NULL; 260 } 261 262 void* QLDiskStoreGetTypeID(void) { 263 if (verbose) puts("STUB: QLDiskStoreGetTypeID called"); 264 return NULL; 265 } 266 267 void* QLDiskStoreHasThumbnailCache(void) { 268 if (verbose) puts("STUB: QLDiskStoreHasThumbnailCache called"); 269 return NULL; 270 } 271 272 void* QLDiskStoreIsDistant(void) { 273 if (verbose) puts("STUB: QLDiskStoreIsDistant called"); 274 return NULL; 275 } 276 277 void* QLDiskStoreIsEncrypted(void) { 278 if (verbose) puts("STUB: QLDiskStoreIsEncrypted called"); 279 return NULL; 280 } 281 282 void* QLDrawCGPDFPage(void) { 283 if (verbose) puts("STUB: QLDrawCGPDFPage called"); 284 return NULL; 285 } 286 287 void* QLDrawCGPDFPageInRect(void) { 288 if (verbose) puts("STUB: QLDrawCGPDFPageInRect called"); 289 return NULL; 290 } 291 292 void* QLDrawDebugRect(void) { 293 if (verbose) puts("STUB: QLDrawDebugRect called"); 294 return NULL; 295 } 296 297 void* QLDrawGrayLinearGradient(void) { 298 if (verbose) puts("STUB: QLDrawGrayLinearGradient called"); 299 return NULL; 300 } 301 302 void* QLDrawIconImageForURL(void) { 303 if (verbose) puts("STUB: QLDrawIconImageForURL called"); 304 return NULL; 305 } 306 307 void* QLDrawLinearGradient(void) { 308 if (verbose) puts("STUB: QLDrawLinearGradient called"); 309 return NULL; 310 } 311 312 void* QLDrawPDFPage(void) { 313 if (verbose) puts("STUB: QLDrawPDFPage called"); 314 return NULL; 315 } 316 317 void* QLDrawPDFPageInRect(void) { 318 if (verbose) puts("STUB: QLDrawPDFPageInRect called"); 319 return NULL; 320 } 321 322 void* QLError(void) { 323 if (verbose) puts("STUB: QLError called"); 324 return NULL; 325 } 326 327 void* QLGeneratorDispatchBlock(void) { 328 if (verbose) puts("STUB: QLGeneratorDispatchBlock called"); 329 return NULL; 330 } 331 332 void* QLGeneratorGetTypeID(void) { 333 if (verbose) puts("STUB: QLGeneratorGetTypeID called"); 334 return NULL; 335 } 336 337 void* QLGetCGPDFDrawRect(void) { 338 if (verbose) puts("STUB: QLGetCGPDFDrawRect called"); 339 return NULL; 340 } 341 342 void* QLGetCGPDFDrawingTransform(void) { 343 if (verbose) puts("STUB: QLGetCGPDFDrawingTransform called"); 344 return NULL; 345 } 346 347 void* QLGetCGPDFPageRect(void) { 348 if (verbose) puts("STUB: QLGetCGPDFPageRect called"); 349 return NULL; 350 } 351 352 void* QLGetPDFDrawRect(void) { 353 if (verbose) puts("STUB: QLGetPDFDrawRect called"); 354 return NULL; 355 } 356 357 void* QLGetPDFDrawingTransform(void) { 358 if (verbose) puts("STUB: QLGetPDFDrawingTransform called"); 359 return NULL; 360 } 361 362 void* QLGetPDFPageRect(void) { 363 if (verbose) puts("STUB: QLGetPDFPageRect called"); 364 return NULL; 365 } 366 367 void* QLGetRealPath(void) { 368 if (verbose) puts("STUB: QLGetRealPath called"); 369 return NULL; 370 } 371 372 void* QLIconContextFinish(void) { 373 if (verbose) puts("STUB: QLIconContextFinish called"); 374 return NULL; 375 } 376 377 void* QLIconContextNextPage(void) { 378 if (verbose) puts("STUB: QLIconContextNextPage called"); 379 return NULL; 380 } 381 382 void* QLIconContextStart(void) { 383 if (verbose) puts("STUB: QLIconContextStart called"); 384 return NULL; 385 } 386 387 void* QLIconCreateBackAndFrontLayerImages(void) { 388 if (verbose) puts("STUB: QLIconCreateBackAndFrontLayerImages called"); 389 return NULL; 390 } 391 392 void* QLIconCreateMaskImage(void) { 393 if (verbose) puts("STUB: QLIconCreateMaskImage called"); 394 return NULL; 395 } 396 397 void* QLIconCreateMaskImageNoFlavor(void) { 398 if (verbose) puts("STUB: QLIconCreateMaskImageNoFlavor called"); 399 return NULL; 400 } 401 402 void* QLIconCreateWithImage(void) { 403 if (verbose) puts("STUB: QLIconCreateWithImage called"); 404 return NULL; 405 } 406 407 void* QLIconCreateWithImageAndOptions(void) { 408 if (verbose) puts("STUB: QLIconCreateWithImageAndOptions called"); 409 return NULL; 410 } 411 412 void* QLIconDrawWithOptions(void) { 413 if (verbose) puts("STUB: QLIconDrawWithOptions called"); 414 return NULL; 415 } 416 417 void* QLIconGetMaxImageSize(void) { 418 if (verbose) puts("STUB: QLIconGetMaxImageSize called"); 419 return NULL; 420 } 421 422 void* QLIconSetCopyImageURLForSize(void) { 423 if (verbose) puts("STUB: QLIconSetCopyImageURLForSize called"); 424 return NULL; 425 } 426 427 void* QLIconSetIsValid(void) { 428 if (verbose) puts("STUB: QLIconSetIsValid called"); 429 return NULL; 430 } 431 432 void* QLImageCopySampleColors(void) { 433 if (verbose) puts("STUB: QLImageCopySampleColors called"); 434 return NULL; 435 } 436 437 void* QLImageIOCleanupContext(void) { 438 if (verbose) puts("STUB: QLImageIOCleanupContext called"); 439 return NULL; 440 } 441 442 void* QLImageIOCreateThumbnailFromData(void) { 443 if (verbose) puts("STUB: QLImageIOCreateThumbnailFromData called"); 444 return NULL; 445 } 446 447 void* QLImageIOCreateThumbnailFromURL(void) { 448 if (verbose) puts("STUB: QLImageIOCreateThumbnailFromURL called"); 449 return NULL; 450 } 451 452 void* QLImageIOCreateThumbnailWithImageSource(void) { 453 if (verbose) puts("STUB: QLImageIOCreateThumbnailWithImageSource called"); 454 return NULL; 455 } 456 457 void* QLImageIODrawImageInContext(void) { 458 if (verbose) puts("STUB: QLImageIODrawImageInContext called"); 459 return NULL; 460 } 461 462 void* QLImageIOFillContextForData(void) { 463 if (verbose) puts("STUB: QLImageIOFillContextForData called"); 464 return NULL; 465 } 466 467 void* QLImageIOFillContextForURL(void) { 468 if (verbose) puts("STUB: QLImageIOFillContextForURL called"); 469 return NULL; 470 } 471 472 void* QLImageIOGetAffineTransformFromCGImage(void) { 473 if (verbose) puts("STUB: QLImageIOGetAffineTransformFromCGImage called"); 474 return NULL; 475 } 476 477 void* QLInitLogging(void) { 478 if (verbose) puts("STUB: QLInitLogging called"); 479 return NULL; 480 } 481 482 void* QLIsDiskCacheEnabled(void) { 483 if (verbose) puts("STUB: QLIsDiskCacheEnabled called"); 484 return NULL; 485 } 486 487 void* QLIsFileURL(void) { 488 if (verbose) puts("STUB: QLIsFileURL called"); 489 return NULL; 490 } 491 492 void* QLLoadImageAtPath(void) { 493 if (verbose) puts("STUB: QLLoadImageAtPath called"); 494 return NULL; 495 } 496 497 void* QLLoadImageFromBundle(void) { 498 if (verbose) puts("STUB: QLLoadImageFromBundle called"); 499 return NULL; 500 } 501 502 void* QLLoadImageFromBundleWithID(void) { 503 if (verbose) puts("STUB: QLLoadImageFromBundleWithID called"); 504 return NULL; 505 } 506 507 void* QLLoadQuickLookUISymbol(void) { 508 if (verbose) puts("STUB: QLLoadQuickLookUISymbol called"); 509 return NULL; 510 } 511 512 void* QLLogSetLoggingFunction(void) { 513 if (verbose) puts("STUB: QLLogSetLoggingFunction called"); 514 return NULL; 515 } 516 517 void* QLMiniCacheGetSizeInBytes(void) { 518 if (verbose) puts("STUB: QLMiniCacheGetSizeInBytes called"); 519 return NULL; 520 } 521 522 void* QLMiniCachePurgeEntriesBySize(void) { 523 if (verbose) puts("STUB: QLMiniCachePurgeEntriesBySize called"); 524 return NULL; 525 } 526 527 void* QLMiniCachePurgeLeastRecentlyUsedEntries(void) { 528 if (verbose) puts("STUB: QLMiniCachePurgeLeastRecentlyUsedEntries called"); 529 return NULL; 530 } 531 532 void* QLMiniCachePurgeURL(void) { 533 if (verbose) puts("STUB: QLMiniCachePurgeURL called"); 534 return NULL; 535 } 536 537 void* QLMiniCachePurgeURLs(void) { 538 if (verbose) puts("STUB: QLMiniCachePurgeURLs called"); 539 return NULL; 540 } 541 542 void* QLMiniCacheRegisterCache(void) { 543 if (verbose) puts("STUB: QLMiniCacheRegisterCache called"); 544 return NULL; 545 } 546 547 void* QLMiniCacheUnregisterCache(void) { 548 if (verbose) puts("STUB: QLMiniCacheUnregisterCache called"); 549 return NULL; 550 } 551 552 void* QLPreviewBubbleCopyDocumentURL(void) { 553 if (verbose) puts("STUB: QLPreviewBubbleCopyDocumentURL called"); 554 return NULL; 555 } 556 557 void* QLPreviewBubbleCopyLaunchURL(void) { 558 if (verbose) puts("STUB: QLPreviewBubbleCopyLaunchURL called"); 559 return NULL; 560 } 561 562 void* QLPreviewBubbleCopySeamlessOpeningInformation(void) { 563 if (verbose) puts("STUB: QLPreviewBubbleCopySeamlessOpeningInformation called"); 564 return NULL; 565 } 566 567 void* QLPreviewBubbleCreate(void) { 568 if (verbose) puts("STUB: QLPreviewBubbleCreate called"); 569 return NULL; 570 } 571 572 void* QLPreviewBubbleGetTypeID(void) { 573 if (verbose) puts("STUB: QLPreviewBubbleGetTypeID called"); 574 return NULL; 575 } 576 577 void* QLPreviewBubbleGetUsedEdge(void) { 578 if (verbose) puts("STUB: QLPreviewBubbleGetUsedEdge called"); 579 return NULL; 580 } 581 582 void* QLPreviewBubbleGetWindowID(void) { 583 if (verbose) puts("STUB: QLPreviewBubbleGetWindowID called"); 584 return NULL; 585 } 586 587 void* QLPreviewBubbleHide(void) { 588 if (verbose) puts("STUB: QLPreviewBubbleHide called"); 589 return NULL; 590 } 591 592 void* QLPreviewBubbleInvalidate(void) { 593 if (verbose) puts("STUB: QLPreviewBubbleInvalidate called"); 594 return NULL; 595 } 596 597 void* QLPreviewBubbleInvertShowBubbleEffect(void) { 598 if (verbose) puts("STUB: QLPreviewBubbleInvertShowBubbleEffect called"); 599 return NULL; 600 } 601 602 void* QLPreviewBubbleInvokeShowBubbleEffect(void) { 603 if (verbose) puts("STUB: QLPreviewBubbleInvokeShowBubbleEffect called"); 604 return NULL; 605 } 606 607 void* QLPreviewBubbleIsVisible(void) { 608 if (verbose) puts("STUB: QLPreviewBubbleIsVisible called"); 609 return NULL; 610 } 611 612 void* QLPreviewBubbleSetAnimationProgress(void) { 613 if (verbose) puts("STUB: QLPreviewBubbleSetAnimationProgress called"); 614 return NULL; 615 } 616 617 void* QLPreviewBubbleSetButtonClickHandler(void) { 618 if (verbose) puts("STUB: QLPreviewBubbleSetButtonClickHandler called"); 619 return NULL; 620 } 621 622 void* QLPreviewBubbleSetDispatchQueue(void) { 623 if (verbose) puts("STUB: QLPreviewBubbleSetDispatchQueue called"); 624 return NULL; 625 } 626 627 void* QLPreviewBubbleSetDisplayPathAndAdditionalString(void) { 628 if (verbose) puts("STUB: QLPreviewBubbleSetDisplayPathAndAdditionalString called"); 629 return NULL; 630 } 631 632 void* QLPreviewBubbleSetDoubleClickHandler(void) { 633 if (verbose) puts("STUB: QLPreviewBubbleSetDoubleClickHandler called"); 634 return NULL; 635 } 636 637 void* QLPreviewBubbleSetEventCallbacks(void) { 638 if (verbose) puts("STUB: QLPreviewBubbleSetEventCallbacks called"); 639 return NULL; 640 } 641 642 void* QLPreviewBubbleSetLoadedHandler(void) { 643 if (verbose) puts("STUB: QLPreviewBubbleSetLoadedHandler called"); 644 return NULL; 645 } 646 647 void* QLPreviewBubbleSetWillOpenURLHandler(void) { 648 if (verbose) puts("STUB: QLPreviewBubbleSetWillOpenURLHandler called"); 649 return NULL; 650 } 651 652 void* QLPreviewBubbleShow(void) { 653 if (verbose) puts("STUB: QLPreviewBubbleShow called"); 654 return NULL; 655 } 656 657 void* QLPreviewCancel(void) { 658 if (verbose) puts("STUB: QLPreviewCancel called"); 659 return NULL; 660 } 661 662 void* QLPreviewClose(void) { 663 if (verbose) puts("STUB: QLPreviewClose called"); 664 return NULL; 665 } 666 667 void* QLPreviewCopyBitmapImage(void) { 668 if (verbose) puts("STUB: QLPreviewCopyBitmapImage called"); 669 return NULL; 670 } 671 672 void* QLPreviewCopyData(void) { 673 if (verbose) puts("STUB: QLPreviewCopyData called"); 674 return NULL; 675 } 676 677 void* QLPreviewCopyDictionaryRepresentation(void) { 678 if (verbose) puts("STUB: QLPreviewCopyDictionaryRepresentation called"); 679 return NULL; 680 } 681 682 void* QLPreviewCopyDocumentURL(void) { 683 if (verbose) puts("STUB: QLPreviewCopyDocumentURL called"); 684 return NULL; 685 } 686 687 void* QLPreviewCopyNextData(void) { 688 if (verbose) puts("STUB: QLPreviewCopyNextData called"); 689 return NULL; 690 } 691 692 void* QLPreviewCopyOptions(void) { 693 if (verbose) puts("STUB: QLPreviewCopyOptions called"); 694 return NULL; 695 } 696 697 void* QLPreviewCopyPreviewContentType(void) { 698 if (verbose) puts("STUB: QLPreviewCopyPreviewContentType called"); 699 return NULL; 700 } 701 702 void* QLPreviewCopyProperties(void) { 703 if (verbose) puts("STUB: QLPreviewCopyProperties called"); 704 return NULL; 705 } 706 707 void* QLPreviewCopyURLRepresentation(void) { 708 if (verbose) puts("STUB: QLPreviewCopyURLRepresentation called"); 709 return NULL; 710 } 711 712 void* QLPreviewCreate(void) { 713 if (verbose) puts("STUB: QLPreviewCreate called"); 714 return NULL; 715 } 716 717 void* QLPreviewCreateFromSearchItem(void) { 718 if (verbose) puts("STUB: QLPreviewCreateFromSearchItem called"); 719 return NULL; 720 } 721 722 void* QLPreviewCreateUniqueAttachmentURL(void) { 723 if (verbose) puts("STUB: QLPreviewCreateUniqueAttachmentURL called"); 724 return NULL; 725 } 726 727 void* QLPreviewDiscardAllPendingActions(void) { 728 if (verbose) puts("STUB: QLPreviewDiscardAllPendingActions called"); 729 return NULL; 730 } 731 732 void* QLPreviewDocumentComputePreview(void) { 733 if (verbose) puts("STUB: QLPreviewDocumentComputePreview called"); 734 return NULL; 735 } 736 737 void* QLPreviewDocumentCopyContentType(void) { 738 if (verbose) puts("STUB: QLPreviewDocumentCopyContentType called"); 739 return NULL; 740 } 741 742 void* QLPreviewDocumentCopyData(void) { 743 if (verbose) puts("STUB: QLPreviewDocumentCopyData called"); 744 return NULL; 745 } 746 747 void* QLPreviewDocumentCopyPageAsImage(void) { 748 if (verbose) puts("STUB: QLPreviewDocumentCopyPageAsImage called"); 749 return NULL; 750 } 751 752 void* QLPreviewDocumentCopyPageText(void) { 753 if (verbose) puts("STUB: QLPreviewDocumentCopyPageText called"); 754 return NULL; 755 } 756 757 void* QLPreviewDocumentCopyProperties(void) { 758 if (verbose) puts("STUB: QLPreviewDocumentCopyProperties called"); 759 return NULL; 760 } 761 762 void* QLPreviewDocumentCopySuggestedFilename(void) { 763 if (verbose) puts("STUB: QLPreviewDocumentCopySuggestedFilename called"); 764 return NULL; 765 } 766 767 void* QLPreviewDocumentCopyURL(void) { 768 if (verbose) puts("STUB: QLPreviewDocumentCopyURL called"); 769 return NULL; 770 } 771 772 void* QLPreviewDocumentCreateWithURL(void) { 773 if (verbose) puts("STUB: QLPreviewDocumentCreateWithURL called"); 774 return NULL; 775 } 776 777 void* QLPreviewDocumentDrawPage(void) { 778 if (verbose) puts("STUB: QLPreviewDocumentDrawPage called"); 779 return NULL; 780 } 781 782 void* QLPreviewDocumentGetPageCount(void) { 783 if (verbose) puts("STUB: QLPreviewDocumentGetPageCount called"); 784 return NULL; 785 } 786 787 void* QLPreviewDocumentGetPageSize(void) { 788 if (verbose) puts("STUB: QLPreviewDocumentGetPageSize called"); 789 return NULL; 790 } 791 792 void* QLPreviewDocumentGetTypeID(void) { 793 if (verbose) puts("STUB: QLPreviewDocumentGetTypeID called"); 794 return NULL; 795 } 796 797 void* QLPreviewDocumentIsPaginated(void) { 798 if (verbose) puts("STUB: QLPreviewDocumentIsPaginated called"); 799 return NULL; 800 } 801 802 void* QLPreviewDocumentSetServer(void) { 803 if (verbose) puts("STUB: QLPreviewDocumentSetServer called"); 804 return NULL; 805 } 806 807 void* QLPreviewFreePreviewData(void) { 808 if (verbose) puts("STUB: QLPreviewFreePreviewData called"); 809 return NULL; 810 } 811 812 void* QLPreviewGetDisplayBundleID(void) { 813 if (verbose) puts("STUB: QLPreviewGetDisplayBundleID called"); 814 return NULL; 815 } 816 817 void* QLPreviewGetInlinePreviewSupportedContentTypes(void) { 818 if (verbose) puts("STUB: QLPreviewGetInlinePreviewSupportedContentTypes called"); 819 return NULL; 820 } 821 822 void* QLPreviewGetLastError(void) { 823 if (verbose) puts("STUB: QLPreviewGetLastError called"); 824 return NULL; 825 } 826 827 void* QLPreviewGetLoadingPlaceholder(void) { 828 if (verbose) puts("STUB: QLPreviewGetLoadingPlaceholder called"); 829 return NULL; 830 } 831 832 void* QLPreviewGetPreviewSizeHint(void) { 833 if (verbose) puts("STUB: QLPreviewGetPreviewSizeHint called"); 834 return NULL; 835 } 836 837 void* QLPreviewGetRepresentedObject(void) { 838 if (verbose) puts("STUB: QLPreviewGetRepresentedObject called"); 839 return NULL; 840 } 841 842 void* QLPreviewGetTypeID(void) { 843 if (verbose) puts("STUB: QLPreviewGetTypeID called"); 844 return NULL; 845 } 846 847 void* QLPreviewIsCancelled(void) { 848 if (verbose) puts("STUB: QLPreviewIsCancelled called"); 849 return NULL; 850 } 851 852 void* QLPreviewIsGenericFolder(void) { 853 if (verbose) puts("STUB: QLPreviewIsGenericFolder called"); 854 return NULL; 855 } 856 857 void* QLPreviewIsPreferringDarkLoading(void) { 858 if (verbose) puts("STUB: QLPreviewIsPreferringDarkLoading called"); 859 return NULL; 860 } 861 862 void* QLPreviewIsProgressive(void) { 863 if (verbose) puts("STUB: QLPreviewIsProgressive called"); 864 return NULL; 865 } 866 867 void* QLPreviewIsRawImage(void) { 868 if (verbose) puts("STUB: QLPreviewIsRawImage called"); 869 return NULL; 870 } 871 872 void* QLPreviewIsWithinContentTypeLimit(void) { 873 if (verbose) puts("STUB: QLPreviewIsWithinContentTypeLimit called"); 874 return NULL; 875 } 876 877 void* QLPreviewProcessProgressiveRendering(void) { 878 if (verbose) puts("STUB: QLPreviewProcessProgressiveRendering called"); 879 return NULL; 880 } 881 882 void* QLPreviewRequestAppendDataToAttachment(void) { 883 if (verbose) puts("STUB: QLPreviewRequestAppendDataToAttachment called"); 884 return NULL; 885 } 886 887 void* QLPreviewRequestCopyContentUTI(void) { 888 if (verbose) puts("STUB: QLPreviewRequestCopyContentUTI called"); 889 return NULL; 890 } 891 892 void* QLPreviewRequestCopyOptions(void) { 893 if (verbose) puts("STUB: QLPreviewRequestCopyOptions called"); 894 return NULL; 895 } 896 897 void* QLPreviewRequestCopyURL(void) { 898 if (verbose) puts("STUB: QLPreviewRequestCopyURL called"); 899 return NULL; 900 } 901 902 void* QLPreviewRequestCreateAttachmentURL(void) { 903 if (verbose) puts("STUB: QLPreviewRequestCreateAttachmentURL called"); 904 return NULL; 905 } 906 907 void* QLPreviewRequestCreateContext(void) { 908 if (verbose) puts("STUB: QLPreviewRequestCreateContext called"); 909 return NULL; 910 } 911 912 void* QLPreviewRequestCreatePDFContext(void) { 913 if (verbose) puts("STUB: QLPreviewRequestCreatePDFContext called"); 914 return NULL; 915 } 916 917 void* QLPreviewRequestFlushContext(void) { 918 if (verbose) puts("STUB: QLPreviewRequestFlushContext called"); 919 return NULL; 920 } 921 922 void* QLPreviewRequestGetDocumentObject(void) { 923 if (verbose) puts("STUB: QLPreviewRequestGetDocumentObject called"); 924 return NULL; 925 } 926 927 void* QLPreviewRequestGetGeneratorBundle(void) { 928 if (verbose) puts("STUB: QLPreviewRequestGetGeneratorBundle called"); 929 return NULL; 930 } 931 932 void* QLPreviewRequestGetTypeID(void) { 933 if (verbose) puts("STUB: QLPreviewRequestGetTypeID called"); 934 return NULL; 935 } 936 937 void* QLPreviewRequestIsCancelled(void) { 938 if (verbose) puts("STUB: QLPreviewRequestIsCancelled called"); 939 return NULL; 940 } 941 942 void* QLPreviewRequestSetData(void) { 943 if (verbose) puts("STUB: QLPreviewRequestSetData called"); 944 return NULL; 945 } 946 947 void* QLPreviewRequestSetDataRepresentation(void) { 948 if (verbose) puts("STUB: QLPreviewRequestSetDataRepresentation called"); 949 return NULL; 950 } 951 952 void* QLPreviewRequestSetDocumentObject(void) { 953 if (verbose) puts("STUB: QLPreviewRequestSetDocumentObject called"); 954 return NULL; 955 } 956 957 void* QLPreviewRequestSetPreviewType(void) { 958 if (verbose) puts("STUB: QLPreviewRequestSetPreviewType called"); 959 return NULL; 960 } 961 962 void* QLPreviewRequestSetURLRepresentation(void) { 963 if (verbose) puts("STUB: QLPreviewRequestSetURLRepresentation called"); 964 return NULL; 965 } 966 967 void* QLPreviewRequestSetWebContent(void) { 968 if (verbose) puts("STUB: QLPreviewRequestSetWebContent called"); 969 return NULL; 970 } 971 972 void* QLPreviewRequestStartDataRepresentation(void) { 973 if (verbose) puts("STUB: QLPreviewRequestStartDataRepresentation called"); 974 return NULL; 975 } 976 977 void* QLPreviewSetApplicationBundleIdentifier(void) { 978 if (verbose) puts("STUB: QLPreviewSetApplicationBundleIdentifier called"); 979 return NULL; 980 } 981 982 void* QLPreviewSetContentTypeLimits(void) { 983 if (verbose) puts("STUB: QLPreviewSetContentTypeLimits called"); 984 return NULL; 985 } 986 987 void* QLPreviewSetDisplayBundleID(void) { 988 if (verbose) puts("STUB: QLPreviewSetDisplayBundleID called"); 989 return NULL; 990 } 991 992 void* QLPreviewSetExtensionPath(void) { 993 if (verbose) puts("STUB: QLPreviewSetExtensionPath called"); 994 return NULL; 995 } 996 997 void* QLPreviewSetForceContentTypeUTI(void) { 998 if (verbose) puts("STUB: QLPreviewSetForceContentTypeUTI called"); 999 return NULL; 1000 } 1001 1002 void* QLPreviewSetPreviewURL(void) { 1003 if (verbose) puts("STUB: QLPreviewSetPreviewURL called"); 1004 return NULL; 1005 } 1006 1007 void* QLPreviewSetProperties(void) { 1008 if (verbose) puts("STUB: QLPreviewSetProperties called"); 1009 return NULL; 1010 } 1011 1012 void* QLPreviewSetRepresentedObject(void) { 1013 if (verbose) puts("STUB: QLPreviewSetRepresentedObject called"); 1014 return NULL; 1015 } 1016 1017 void* QLPreviewSetSearchableItemUniqueIdentifier(void) { 1018 if (verbose) puts("STUB: QLPreviewSetSearchableItemUniqueIdentifier called"); 1019 return NULL; 1020 } 1021 1022 void* QLPreviewSetServer(void) { 1023 if (verbose) puts("STUB: QLPreviewSetServer called"); 1024 return NULL; 1025 } 1026 1027 void* QLPreviewSupportsContentUTI(void) { 1028 if (verbose) puts("STUB: QLPreviewSupportsContentUTI called"); 1029 return NULL; 1030 } 1031 1032 void* QLPreviewSupportsFileAtURL(void) { 1033 if (verbose) puts("STUB: QLPreviewSupportsFileAtURL called"); 1034 return NULL; 1035 } 1036 1037 void* QLPreviewTypeConfigureGenerator(void) { 1038 if (verbose) puts("STUB: QLPreviewTypeConfigureGenerator called"); 1039 return NULL; 1040 } 1041 1042 void* QLPreviewTypeDisplayBundleWantsToBeResized(void) { 1043 if (verbose) puts("STUB: QLPreviewTypeDisplayBundleWantsToBeResized called"); 1044 return NULL; 1045 } 1046 1047 void* QLPreviewTypeGetDisplayBundleCount(void) { 1048 if (verbose) puts("STUB: QLPreviewTypeGetDisplayBundleCount called"); 1049 return NULL; 1050 } 1051 1052 void* QLPreviewTypeGetDisplayBundleIDForUTI(void) { 1053 if (verbose) puts("STUB: QLPreviewTypeGetDisplayBundleIDForUTI called"); 1054 return NULL; 1055 } 1056 1057 void* QLPreviewTypeGetDisplayBundleIDsAndNames(void) { 1058 if (verbose) puts("STUB: QLPreviewTypeGetDisplayBundleIDsAndNames called"); 1059 return NULL; 1060 } 1061 1062 void* QLPreviewTypeGetRawImageContentType(void) { 1063 if (verbose) puts("STUB: QLPreviewTypeGetRawImageContentType called"); 1064 return NULL; 1065 } 1066 1067 void* QLPreviewTypeGetRawImageDisplayBundleID(void) { 1068 if (verbose) puts("STUB: QLPreviewTypeGetRawImageDisplayBundleID called"); 1069 return NULL; 1070 } 1071 1072 void* QLPreviewTypeGetStaticDisplayBundleIDForUTI(void) { 1073 if (verbose) puts("STUB: QLPreviewTypeGetStaticDisplayBundleIDForUTI called"); 1074 return NULL; 1075 } 1076 1077 void* QLPreviewTypeIsDisplayBundleIDSafe(void) { 1078 if (verbose) puts("STUB: QLPreviewTypeIsDisplayBundleIDSafe called"); 1079 return NULL; 1080 } 1081 1082 void* QLPreviewTypeProcessThirdPartyGeneratorType(void) { 1083 if (verbose) puts("STUB: QLPreviewTypeProcessThirdPartyGeneratorType called"); 1084 return NULL; 1085 } 1086 1087 void* QLPreviewUpdateWithDictionaryRepresentation(void) { 1088 if (verbose) puts("STUB: QLPreviewUpdateWithDictionaryRepresentation called"); 1089 return NULL; 1090 } 1091 1092 void* QLPushCustomRoundedRect(void) { 1093 if (verbose) puts("STUB: QLPushCustomRoundedRect called"); 1094 return NULL; 1095 } 1096 1097 void* QLPushRoundedRect(void) { 1098 if (verbose) puts("STUB: QLPushRoundedRect called"); 1099 return NULL; 1100 } 1101 1102 void* QLRequestCheckAccess(void) { 1103 if (verbose) puts("STUB: QLRequestCheckAccess called"); 1104 return NULL; 1105 } 1106 1107 void* QLRequestCopyContentUTI(void) { 1108 if (verbose) puts("STUB: QLRequestCopyContentUTI called"); 1109 return NULL; 1110 } 1111 1112 void* QLRequestCopyURL(void) { 1113 if (verbose) puts("STUB: QLRequestCopyURL called"); 1114 return NULL; 1115 } 1116 1117 void* QLRequestDispatchBlock(void) { 1118 if (verbose) puts("STUB: QLRequestDispatchBlock called"); 1119 return NULL; 1120 } 1121 1122 void* QLRequestFillUUID(void) { 1123 if (verbose) puts("STUB: QLRequestFillUUID called"); 1124 return NULL; 1125 } 1126 1127 void* QLRequestGetGeneratorBundle(void) { 1128 if (verbose) puts("STUB: QLRequestGetGeneratorBundle called"); 1129 return NULL; 1130 } 1131 1132 void* QLRequestIsCancelled(void) { 1133 if (verbose) puts("STUB: QLRequestIsCancelled called"); 1134 return NULL; 1135 } 1136 1137 void* QLRequestIsThumbnailRequest(void) { 1138 if (verbose) puts("STUB: QLRequestIsThumbnailRequest called"); 1139 return NULL; 1140 } 1141 1142 void* QLRequestMarkAsCancelled(void) { 1143 if (verbose) puts("STUB: QLRequestMarkAsCancelled called"); 1144 return NULL; 1145 } 1146 1147 void* QLRequestReplyWithDiscardError(void) { 1148 if (verbose) puts("STUB: QLRequestReplyWithDiscardError called"); 1149 return NULL; 1150 } 1151 1152 void* QLRequestSessionCopyAndNotifyPortDeathWithPort(void) { 1153 if (verbose) puts("STUB: QLRequestSessionCopyAndNotifyPortDeathWithPort called"); 1154 return NULL; 1155 } 1156 1157 void* QLRequestSessionDisableInstantOff(void) { 1158 if (verbose) puts("STUB: QLRequestSessionDisableInstantOff called"); 1159 return NULL; 1160 } 1161 1162 void* QLRequestSessionDiscardAllSessions(void) { 1163 if (verbose) puts("STUB: QLRequestSessionDiscardAllSessions called"); 1164 return NULL; 1165 } 1166 1167 void* QLRequestSessionEnableInstantOff(void) { 1168 if (verbose) puts("STUB: QLRequestSessionEnableInstantOff called"); 1169 return NULL; 1170 } 1171 1172 void* QLRequestSessionGetReplyPort(void) { 1173 if (verbose) puts("STUB: QLRequestSessionGetReplyPort called"); 1174 return NULL; 1175 } 1176 1177 void* QLRequestSessionGetRequest(void) { 1178 if (verbose) puts("STUB: QLRequestSessionGetRequest called"); 1179 return NULL; 1180 } 1181 1182 void* QLRequestSessionGetSessionCount(void) { 1183 if (verbose) puts("STUB: QLRequestSessionGetSessionCount called"); 1184 return NULL; 1185 } 1186 1187 void* QLRequestSessionGetTypeID(void) { 1188 if (verbose) puts("STUB: QLRequestSessionGetTypeID called"); 1189 return NULL; 1190 } 1191 1192 void* QLRequestSessionIsInstantOffEnabled(void) { 1193 if (verbose) puts("STUB: QLRequestSessionIsInstantOffEnabled called"); 1194 return NULL; 1195 } 1196 1197 void* QLRequestSessionPerformAsync(void) { 1198 if (verbose) puts("STUB: QLRequestSessionPerformAsync called"); 1199 return NULL; 1200 } 1201 1202 void* QLRequestSessionPerformSync(void) { 1203 if (verbose) puts("STUB: QLRequestSessionPerformSync called"); 1204 return NULL; 1205 } 1206 1207 void* QLRequestSessionSetupCrashReportMessageForRequest(void) { 1208 if (verbose) puts("STUB: QLRequestSessionSetupCrashReportMessageForRequest called"); 1209 return NULL; 1210 } 1211 1212 void* QLRequestSessionSetupSessions(void) { 1213 if (verbose) puts("STUB: QLRequestSessionSetupSessions called"); 1214 return NULL; 1215 } 1216 1217 void* QLRequestSetDiscardError(void) { 1218 if (verbose) puts("STUB: QLRequestSetDiscardError called"); 1219 return NULL; 1220 } 1221 1222 void* QLRequestSetupSession(void) { 1223 if (verbose) puts("STUB: QLRequestSetupSession called"); 1224 return NULL; 1225 } 1226 1227 void* QLRequestUnsetupSession(void) { 1228 if (verbose) puts("STUB: QLRequestUnsetupSession called"); 1229 return NULL; 1230 } 1231 1232 void* QLSandboxReleaseHandle(void) { 1233 if (verbose) puts("STUB: QLSandboxReleaseHandle called"); 1234 return NULL; 1235 } 1236 1237 void* QLSandboxTokenConsume(void) { 1238 if (verbose) puts("STUB: QLSandboxTokenConsume called"); 1239 return NULL; 1240 } 1241 1242 void* QLSandboxTokenCreateFileRead(void) { 1243 if (verbose) puts("STUB: QLSandboxTokenCreateFileRead called"); 1244 return NULL; 1245 } 1246 1247 void* QLScaleRect(void) { 1248 if (verbose) puts("STUB: QLScaleRect called"); 1249 return NULL; 1250 } 1251 1252 void* QLSeamlessClosingRequestCreate(void) { 1253 if (verbose) puts("STUB: QLSeamlessClosingRequestCreate called"); 1254 return NULL; 1255 } 1256 1257 void* QLSeamlessClosingRequestDiscard(void) { 1258 if (verbose) puts("STUB: QLSeamlessClosingRequestDiscard called"); 1259 return NULL; 1260 } 1261 1262 void* QLSeamlessClosingRequestDiscardRequestsWithAssociatedObject(void) { 1263 if (verbose) puts("STUB: QLSeamlessClosingRequestDiscardRequestsWithAssociatedObject called"); 1264 return NULL; 1265 } 1266 1267 void* QLSeamlessClosingRequestGetAssociatedObject(void) { 1268 if (verbose) puts("STUB: QLSeamlessClosingRequestGetAssociatedObject called"); 1269 return NULL; 1270 } 1271 1272 void* QLSeamlessClosingRequestGetTypeID(void) { 1273 if (verbose) puts("STUB: QLSeamlessClosingRequestGetTypeID called"); 1274 return NULL; 1275 } 1276 1277 void* QLSeamlessClosingRequestRegister(void) { 1278 if (verbose) puts("STUB: QLSeamlessClosingRequestRegister called"); 1279 return NULL; 1280 } 1281 1282 void* QLSeamlessClosingRequestSetAssociatedObject(void) { 1283 if (verbose) puts("STUB: QLSeamlessClosingRequestSetAssociatedObject called"); 1284 return NULL; 1285 } 1286 1287 void* QLSeamlessClosingRequestSetDispatchQueue(void) { 1288 if (verbose) puts("STUB: QLSeamlessClosingRequestSetDispatchQueue called"); 1289 return NULL; 1290 } 1291 1292 void* QLSeamlessClosingRequestSetHandler(void) { 1293 if (verbose) puts("STUB: QLSeamlessClosingRequestSetHandler called"); 1294 return NULL; 1295 } 1296 1297 void* QLSeamlessOpeningRequestBindToPID(void) { 1298 if (verbose) puts("STUB: QLSeamlessOpeningRequestBindToPID called"); 1299 return NULL; 1300 } 1301 1302 void* QLSeamlessOpeningRequestCreate(void) { 1303 if (verbose) puts("STUB: QLSeamlessOpeningRequestCreate called"); 1304 return NULL; 1305 } 1306 1307 void* QLSeamlessOpeningRequestDiscard(void) { 1308 if (verbose) puts("STUB: QLSeamlessOpeningRequestDiscard called"); 1309 return NULL; 1310 } 1311 1312 void* QLSeamlessOpeningRequestGetClosingRequest(void) { 1313 if (verbose) puts("STUB: QLSeamlessOpeningRequestGetClosingRequest called"); 1314 return NULL; 1315 } 1316 1317 void* QLSeamlessOpeningRequestGetTypeID(void) { 1318 if (verbose) puts("STUB: QLSeamlessOpeningRequestGetTypeID called"); 1319 return NULL; 1320 } 1321 1322 void* QLSeamlessOpeningRequestOpenItem(void) { 1323 if (verbose) puts("STUB: QLSeamlessOpeningRequestOpenItem called"); 1324 return NULL; 1325 } 1326 1327 void* QLSeamlessOpeningRequestSetCompletionHandler(void) { 1328 if (verbose) puts("STUB: QLSeamlessOpeningRequestSetCompletionHandler called"); 1329 return NULL; 1330 } 1331 1332 void* QLSeamlessOpeningRequestSetDispatchQueue(void) { 1333 if (verbose) puts("STUB: QLSeamlessOpeningRequestSetDispatchQueue called"); 1334 return NULL; 1335 } 1336 1337 void* QLServerCheckIn(void) { 1338 if (verbose) puts("STUB: QLServerCheckIn called"); 1339 return NULL; 1340 } 1341 1342 void* QLServerCheckOut(void) { 1343 if (verbose) puts("STUB: QLServerCheckOut called"); 1344 return NULL; 1345 } 1346 1347 void* QLServerCheckUsage(void) { 1348 if (verbose) puts("STUB: QLServerCheckUsage called"); 1349 return NULL; 1350 } 1351 1352 void* QLServerCopyPortToServer(void) { 1353 if (verbose) puts("STUB: QLServerCopyPortToServer called"); 1354 return NULL; 1355 } 1356 1357 void* QLServerCopyServerWithName(void) { 1358 if (verbose) puts("STUB: QLServerCopyServerWithName called"); 1359 return NULL; 1360 } 1361 1362 void* QLServerCreate(void) { 1363 if (verbose) puts("STUB: QLServerCreate called"); 1364 return NULL; 1365 } 1366 1367 void* QLServerCreateHelperServer(void) { 1368 if (verbose) puts("STUB: QLServerCreateHelperServer called"); 1369 return NULL; 1370 } 1371 1372 void* QLServerCreateHelperServerWithOptions(void) { 1373 if (verbose) puts("STUB: QLServerCreateHelperServerWithOptions called"); 1374 return NULL; 1375 } 1376 1377 void* QLServerCreateServerToMachPort(void) { 1378 if (verbose) puts("STUB: QLServerCreateServerToMachPort called"); 1379 return NULL; 1380 } 1381 1382 void* QLServerCreateWithName(void) { 1383 if (verbose) puts("STUB: QLServerCreateWithName called"); 1384 return NULL; 1385 } 1386 1387 void* QLServerGetMemoryUsage(void) { 1388 if (verbose) puts("STUB: QLServerGetMemoryUsage called"); 1389 return NULL; 1390 } 1391 1392 void* QLServerGetNumberOfAvailableFDs(void) { 1393 if (verbose) puts("STUB: QLServerGetNumberOfAvailableFDs called"); 1394 return NULL; 1395 } 1396 1397 void* QLServerGetQuickLookClient(void) { 1398 if (verbose) puts("STUB: QLServerGetQuickLookClient called"); 1399 return NULL; 1400 } 1401 1402 void* QLServerGetTimeoutForRequest(void) { 1403 if (verbose) puts("STUB: QLServerGetTimeoutForRequest called"); 1404 return NULL; 1405 } 1406 1407 void* QLServerGetTypeID(void) { 1408 if (verbose) puts("STUB: QLServerGetTypeID called"); 1409 return NULL; 1410 } 1411 1412 void* QLServerResetCachedPort(void) { 1413 if (verbose) puts("STUB: QLServerResetCachedPort called"); 1414 return NULL; 1415 } 1416 1417 void* QLServerSetDefaultServer(void) { 1418 if (verbose) puts("STUB: QLServerSetDefaultServer called"); 1419 return NULL; 1420 } 1421 1422 void* QLServerSetup32bitServerWithName(void) { 1423 if (verbose) puts("STUB: QLServerSetup32bitServerWithName called"); 1424 return NULL; 1425 } 1426 1427 void* QLServerShutDownServer(void) { 1428 if (verbose) puts("STUB: QLServerShutDownServer called"); 1429 return NULL; 1430 } 1431 1432 void* QLThumbnailCancel(void) { 1433 if (verbose) puts("STUB: QLThumbnailCancel called"); 1434 return NULL; 1435 } 1436 1437 void* QLThumbnailComputeAsync(void) { 1438 if (verbose) puts("STUB: QLThumbnailComputeAsync called"); 1439 return NULL; 1440 } 1441 1442 void* QLThumbnailCopyCacheIDForURL(void) { 1443 if (verbose) puts("STUB: QLThumbnailCopyCacheIDForURL called"); 1444 return NULL; 1445 } 1446 1447 void* QLThumbnailCopyClientProperties(void) { 1448 if (verbose) puts("STUB: QLThumbnailCopyClientProperties called"); 1449 return NULL; 1450 } 1451 1452 void* QLThumbnailCopyDocumentURL(void) { 1453 if (verbose) puts("STUB: QLThumbnailCopyDocumentURL called"); 1454 return NULL; 1455 } 1456 1457 void* QLThumbnailCopyImage(void) { 1458 if (verbose) puts("STUB: QLThumbnailCopyImage called"); 1459 return NULL; 1460 } 1461 1462 void* QLThumbnailCopyImageMask(void) { 1463 if (verbose) puts("STUB: QLThumbnailCopyImageMask called"); 1464 return NULL; 1465 } 1466 1467 void* QLThumbnailCopyOptions(void) { 1468 if (verbose) puts("STUB: QLThumbnailCopyOptions called"); 1469 return NULL; 1470 } 1471 1472 void* QLThumbnailCopyProperties(void) { 1473 if (verbose) puts("STUB: QLThumbnailCopyProperties called"); 1474 return NULL; 1475 } 1476 1477 void* QLThumbnailCopySpecialGenericImage(void) { 1478 if (verbose) puts("STUB: QLThumbnailCopySpecialGenericImage called"); 1479 return NULL; 1480 } 1481 1482 void* QLThumbnailCreate(void) { 1483 if (verbose) puts("STUB: QLThumbnailCreate called"); 1484 return NULL; 1485 } 1486 1487 void* QLThumbnailCreateSpecialGenericIcon(void) { 1488 if (verbose) puts("STUB: QLThumbnailCreateSpecialGenericIcon called"); 1489 return NULL; 1490 } 1491 1492 void* QLThumbnailDeleteCacheForVolume(void) { 1493 if (verbose) puts("STUB: QLThumbnailDeleteCacheForVolume called"); 1494 return NULL; 1495 } 1496 1497 void* QLThumbnailDispatchAsync(void) { 1498 if (verbose) puts("STUB: QLThumbnailDispatchAsync called"); 1499 return NULL; 1500 } 1501 1502 void* QLThumbnailGetContentRect(void) { 1503 if (verbose) puts("STUB: QLThumbnailGetContentRect called"); 1504 return NULL; 1505 } 1506 1507 void* QLThumbnailGetMaximumSize(void) { 1508 if (verbose) puts("STUB: QLThumbnailGetMaximumSize called"); 1509 return NULL; 1510 } 1511 1512 void* QLThumbnailGetRepresentedObject(void) { 1513 if (verbose) puts("STUB: QLThumbnailGetRepresentedObject called"); 1514 return NULL; 1515 } 1516 1517 void* QLThumbnailGetTypeID(void) { 1518 if (verbose) puts("STUB: QLThumbnailGetTypeID called"); 1519 return NULL; 1520 } 1521 1522 void* QLThumbnailImageCreate(void) { 1523 if (verbose) puts("STUB: QLThumbnailImageCreate called"); 1524 return NULL; 1525 } 1526 1527 void* QLThumbnailInvalidateCacheForURL(void) { 1528 if (verbose) puts("STUB: QLThumbnailInvalidateCacheForURL called"); 1529 return NULL; 1530 } 1531 1532 void* QLThumbnailInvalidateCacheForURLs(void) { 1533 if (verbose) puts("STUB: QLThumbnailInvalidateCacheForURLs called"); 1534 return NULL; 1535 } 1536 1537 void* QLThumbnailIsCancelled(void) { 1538 if (verbose) puts("STUB: QLThumbnailIsCancelled called"); 1539 return NULL; 1540 } 1541 1542 void* QLThumbnailIsGenericFolder(void) { 1543 if (verbose) puts("STUB: QLThumbnailIsGenericFolder called"); 1544 return NULL; 1545 } 1546 1547 void* QLThumbnailIsLowQuality(void) { 1548 if (verbose) puts("STUB: QLThumbnailIsLowQuality called"); 1549 return NULL; 1550 } 1551 1552 void* QLThumbnailNotifyWhenAdditionIsAvailable(void) { 1553 if (verbose) puts("STUB: QLThumbnailNotifyWhenAdditionIsAvailable called"); 1554 return NULL; 1555 } 1556 1557 void* QLThumbnailQueueAddThumbnail(void) { 1558 if (verbose) puts("STUB: QLThumbnailQueueAddThumbnail called"); 1559 return NULL; 1560 } 1561 1562 void* QLThumbnailQueueAddThumbnailsFromArray(void) { 1563 if (verbose) puts("STUB: QLThumbnailQueueAddThumbnailsFromArray called"); 1564 return NULL; 1565 } 1566 1567 void* QLThumbnailQueueCancelAll(void) { 1568 if (verbose) puts("STUB: QLThumbnailQueueCancelAll called"); 1569 return NULL; 1570 } 1571 1572 void* QLThumbnailQueueCancelThumbnails(void) { 1573 if (verbose) puts("STUB: QLThumbnailQueueCancelThumbnails called"); 1574 return NULL; 1575 } 1576 1577 void* QLThumbnailQueueCreate(void) { 1578 if (verbose) puts("STUB: QLThumbnailQueueCreate called"); 1579 return NULL; 1580 } 1581 1582 void* QLThumbnailQueueGetTypeID(void) { 1583 if (verbose) puts("STUB: QLThumbnailQueueGetTypeID called"); 1584 return NULL; 1585 } 1586 1587 void* QLThumbnailQueueInvalidate(void) { 1588 if (verbose) puts("STUB: QLThumbnailQueueInvalidate called"); 1589 return NULL; 1590 } 1591 1592 void* QLThumbnailQueueIsProcessing(void) { 1593 if (verbose) puts("STUB: QLThumbnailQueueIsProcessing called"); 1594 return NULL; 1595 } 1596 1597 void* QLThumbnailQueueRun(void) { 1598 if (verbose) puts("STUB: QLThumbnailQueueRun called"); 1599 return NULL; 1600 } 1601 1602 void* QLThumbnailQueueSetClient(void) { 1603 if (verbose) puts("STUB: QLThumbnailQueueSetClient called"); 1604 return NULL; 1605 } 1606 1607 void* QLThumbnailQueueSetCompletionBlock(void) { 1608 if (verbose) puts("STUB: QLThumbnailQueueSetCompletionBlock called"); 1609 return NULL; 1610 } 1611 1612 void* QLThumbnailQueueSetMaximumQueuePushCount(void) { 1613 if (verbose) puts("STUB: QLThumbnailQueueSetMaximumQueuePushCount called"); 1614 return NULL; 1615 } 1616 1617 void* QLThumbnailQueueSetMinimumQueuePushCount(void) { 1618 if (verbose) puts("STUB: QLThumbnailQueueSetMinimumQueuePushCount called"); 1619 return NULL; 1620 } 1621 1622 void* QLThumbnailQueueWakeUp(void) { 1623 if (verbose) puts("STUB: QLThumbnailQueueWakeUp called"); 1624 return NULL; 1625 } 1626 1627 void* QLThumbnailRequestCopyBackPageContext(void) { 1628 if (verbose) puts("STUB: QLThumbnailRequestCopyBackPageContext called"); 1629 return NULL; 1630 } 1631 1632 void* QLThumbnailRequestCopyContentUTI(void) { 1633 if (verbose) puts("STUB: QLThumbnailRequestCopyContentUTI called"); 1634 return NULL; 1635 } 1636 1637 void* QLThumbnailRequestCopyOptions(void) { 1638 if (verbose) puts("STUB: QLThumbnailRequestCopyOptions called"); 1639 return NULL; 1640 } 1641 1642 void* QLThumbnailRequestCopyURL(void) { 1643 if (verbose) puts("STUB: QLThumbnailRequestCopyURL called"); 1644 return NULL; 1645 } 1646 1647 void* QLThumbnailRequestCreateContext(void) { 1648 if (verbose) puts("STUB: QLThumbnailRequestCreateContext called"); 1649 return NULL; 1650 } 1651 1652 void* QLThumbnailRequestFlushContext(void) { 1653 if (verbose) puts("STUB: QLThumbnailRequestFlushContext called"); 1654 return NULL; 1655 } 1656 1657 void* QLThumbnailRequestGetBitmapMaximumSize(void) { 1658 if (verbose) puts("STUB: QLThumbnailRequestGetBitmapMaximumSize called"); 1659 return NULL; 1660 } 1661 1662 void* QLThumbnailRequestGetDimension(void) { 1663 if (verbose) puts("STUB: QLThumbnailRequestGetDimension called"); 1664 return NULL; 1665 } 1666 1667 void* QLThumbnailRequestGetDocumentObject(void) { 1668 if (verbose) puts("STUB: QLThumbnailRequestGetDocumentObject called"); 1669 return NULL; 1670 } 1671 1672 void* QLThumbnailRequestGetGeneratorBundle(void) { 1673 if (verbose) puts("STUB: QLThumbnailRequestGetGeneratorBundle called"); 1674 return NULL; 1675 } 1676 1677 void* QLThumbnailRequestGetMaximumSize(void) { 1678 if (verbose) puts("STUB: QLThumbnailRequestGetMaximumSize called"); 1679 return NULL; 1680 } 1681 1682 void* QLThumbnailRequestGetTypeID(void) { 1683 if (verbose) puts("STUB: QLThumbnailRequestGetTypeID called"); 1684 return NULL; 1685 } 1686 1687 void* QLThumbnailRequestIsCancelled(void) { 1688 if (verbose) puts("STUB: QLThumbnailRequestIsCancelled called"); 1689 return NULL; 1690 } 1691 1692 void* QLThumbnailRequestSetDocumentObject(void) { 1693 if (verbose) puts("STUB: QLThumbnailRequestSetDocumentObject called"); 1694 return NULL; 1695 } 1696 1697 void* QLThumbnailRequestSetImage(void) { 1698 if (verbose) puts("STUB: QLThumbnailRequestSetImage called"); 1699 return NULL; 1700 } 1701 1702 void* QLThumbnailRequestSetImageAtURL(void) { 1703 if (verbose) puts("STUB: QLThumbnailRequestSetImageAtURL called"); 1704 return NULL; 1705 } 1706 1707 void* QLThumbnailRequestSetImageWithData(void) { 1708 if (verbose) puts("STUB: QLThumbnailRequestSetImageWithData called"); 1709 return NULL; 1710 } 1711 1712 void* QLThumbnailRequestSetThumbnailWithDataRepresentation(void) { 1713 if (verbose) puts("STUB: QLThumbnailRequestSetThumbnailWithDataRepresentation called"); 1714 return NULL; 1715 } 1716 1717 void* QLThumbnailRequestSetThumbnailWithURLRepresentation(void) { 1718 if (verbose) puts("STUB: QLThumbnailRequestSetThumbnailWithURLRepresentation called"); 1719 return NULL; 1720 } 1721 1722 void* QLThumbnailSetForceContentTypeUTI(void) { 1723 if (verbose) puts("STUB: QLThumbnailSetForceContentTypeUTI called"); 1724 return NULL; 1725 } 1726 1727 void* QLThumbnailSetRepresentedObject(void) { 1728 if (verbose) puts("STUB: QLThumbnailSetRepresentedObject called"); 1729 return NULL; 1730 } 1731 1732 void* QLThumbnailSetServer(void) { 1733 if (verbose) puts("STUB: QLThumbnailSetServer called"); 1734 return NULL; 1735 } 1736 1737 void* QLThumbnailSupportsContentUTIAtSize(void) { 1738 if (verbose) puts("STUB: QLThumbnailSupportsContentUTIAtSize called"); 1739 return NULL; 1740 } 1741 1742 void* QLUIHelperCreateCallbackSource(void) { 1743 if (verbose) puts("STUB: QLUIHelperCreateCallbackSource called"); 1744 return NULL; 1745 } 1746 1747 void* QLUIHelperExecuteMachBlock(void) { 1748 if (verbose) puts("STUB: QLUIHelperExecuteMachBlock called"); 1749 return NULL; 1750 } 1751 1752 void* QLUIHelperIsAvailable(void) { 1753 if (verbose) puts("STUB: QLUIHelperIsAvailable called"); 1754 return NULL; 1755 } 1756 1757 void* QLUIHelperRegisterForHelperDeath(void) { 1758 if (verbose) puts("STUB: QLUIHelperRegisterForHelperDeath called"); 1759 return NULL; 1760 } 1761 1762 void* QLUIHelperServerDemux(void) { 1763 if (verbose) puts("STUB: QLUIHelperServerDemux called"); 1764 return NULL; 1765 } 1766 1767 void* QLUIHelperServerPort(void) { 1768 if (verbose) puts("STUB: QLUIHelperServerPort called"); 1769 return NULL; 1770 } 1771 1772 void* QLUIHelperUnregisterFromHelperDeath(void) { 1773 if (verbose) puts("STUB: QLUIHelperUnregisterFromHelperDeath called"); 1774 return NULL; 1775 } 1776 1777 void* QLUTIIsGenericFolder(void) { 1778 if (verbose) puts("STUB: QLUTIIsGenericFolder called"); 1779 return NULL; 1780 } 1781 1782 void* _DrawPSDGradient(void) { 1783 if (verbose) puts("STUB: _DrawPSDGradient called"); 1784 return NULL; 1785 } 1786 1787 void* _QLAppPreferencesBooleanValueForKey(void) { 1788 if (verbose) puts("STUB: _QLAppPreferencesBooleanValueForKey called"); 1789 return NULL; 1790 } 1791 1792 void* _QLAppPreferencesCFIndexValueForKey(void) { 1793 if (verbose) puts("STUB: _QLAppPreferencesCFIndexValueForKey called"); 1794 return NULL; 1795 } 1796 1797 void* _QLAppPreferencesFloatValueForKey(void) { 1798 if (verbose) puts("STUB: _QLAppPreferencesFloatValueForKey called"); 1799 return NULL; 1800 } 1801 1802 void* _QLAppPreferencesIntValueForKey(void) { 1803 if (verbose) puts("STUB: _QLAppPreferencesIntValueForKey called"); 1804 return NULL; 1805 } 1806 1807 void* _QLAttributedStringCopyPlistRepresentation(void) { 1808 if (verbose) puts("STUB: _QLAttributedStringCopyPlistRepresentation called"); 1809 return NULL; 1810 } 1811 1812 void* _QLBubbleFromPort(void) { 1813 if (verbose) puts("STUB: _QLBubbleFromPort called"); 1814 return NULL; 1815 } 1816 1817 void* _QLBubbleRegister(void) { 1818 if (verbose) puts("STUB: _QLBubbleRegister called"); 1819 return NULL; 1820 } 1821 1822 void* _QLBubbleUnregister(void) { 1823 if (verbose) puts("STUB: _QLBubbleUnregister called"); 1824 return NULL; 1825 } 1826 1827 void* _QLCFDataGetBytes(void) { 1828 if (verbose) puts("STUB: _QLCFDataGetBytes called"); 1829 return NULL; 1830 } 1831 1832 void* _QLCacheDidInvalidate(void) { 1833 if (verbose) puts("STUB: _QLCacheDidInvalidate called"); 1834 return NULL; 1835 } 1836 1837 void* _QLCacheInvalidationNotificationCopyURLs(void) { 1838 if (verbose) puts("STUB: _QLCacheInvalidationNotificationCopyURLs called"); 1839 return NULL; 1840 } 1841 1842 void* _QLCacheVersionCopyDescription(void) { 1843 if (verbose) puts("STUB: _QLCacheVersionCopyDescription called"); 1844 return NULL; 1845 } 1846 1847 void* _QLCacheVersionCopySerializedData(void) { 1848 if (verbose) puts("STUB: _QLCacheVersionCopySerializedData called"); 1849 return NULL; 1850 } 1851 1852 void* _QLCacheVersionCreateFromURL(void) { 1853 if (verbose) puts("STUB: _QLCacheVersionCreateFromURL called"); 1854 return NULL; 1855 } 1856 1857 void* _QLCacheVersionCreateFromURLWithGenerator(void) { 1858 if (verbose) puts("STUB: _QLCacheVersionCreateFromURLWithGenerator called"); 1859 return NULL; 1860 } 1861 1862 void* _QLCacheVersionCreateWithBytes(void) { 1863 if (verbose) puts("STUB: _QLCacheVersionCreateWithBytes called"); 1864 return NULL; 1865 } 1866 1867 void* _QLCacheVersionCreateWithData(void) { 1868 if (verbose) puts("STUB: _QLCacheVersionCreateWithData called"); 1869 return NULL; 1870 } 1871 1872 void* _QLCacheVersionIsEqual(void) { 1873 if (verbose) puts("STUB: _QLCacheVersionIsEqual called"); 1874 return NULL; 1875 } 1876 1877 void* _QLCacheVersionIsEqualIncludingGeneratorVersion(void) { 1878 if (verbose) puts("STUB: _QLCacheVersionIsEqualIncludingGeneratorVersion called"); 1879 return NULL; 1880 } 1881 1882 void* _QLCopyAllThumbnailInfo(void) { 1883 if (verbose) puts("STUB: _QLCopyAllThumbnailInfo called"); 1884 return NULL; 1885 } 1886 1887 void* _QLCopyCacheInfo(void) { 1888 if (verbose) puts("STUB: _QLCopyCacheInfo called"); 1889 return NULL; 1890 } 1891 1892 void* _QLCopyCachedThumbnailsForURL(void) { 1893 if (verbose) puts("STUB: _QLCopyCachedThumbnailsForURL called"); 1894 return NULL; 1895 } 1896 1897 void* _QLCopyPluginMapping(void) { 1898 if (verbose) puts("STUB: _QLCopyPluginMapping called"); 1899 return NULL; 1900 } 1901 1902 void* _QLCopyServerStatistics(void) { 1903 if (verbose) puts("STUB: _QLCopyServerStatistics called"); 1904 return NULL; 1905 } 1906 1907 void* _QLCopyUTITypeForFileAtURL(void) { 1908 if (verbose) puts("STUB: _QLCopyUTITypeForFileAtURL called"); 1909 return NULL; 1910 } 1911 1912 void* _QLCrash(void) { 1913 if (verbose) puts("STUB: _QLCrash called"); 1914 return NULL; 1915 } 1916 1917 void* _QLCrashForGoodReason(void) { 1918 if (verbose) puts("STUB: _QLCrashForGoodReason called"); 1919 return NULL; 1920 } 1921 1922 void* _QLCreateArrayFromPlistBytesFromMIG(void) { 1923 if (verbose) puts("STUB: _QLCreateArrayFromPlistBytesFromMIG called"); 1924 return NULL; 1925 } 1926 1927 void* _QLCreateAttributedStringFromPlistRepresentation(void) { 1928 if (verbose) puts("STUB: _QLCreateAttributedStringFromPlistRepresentation called"); 1929 return NULL; 1930 } 1931 1932 void* _QLCreateCFStringFromQLStringFromMIG(void) { 1933 if (verbose) puts("STUB: _QLCreateCFStringFromQLStringFromMIG called"); 1934 return NULL; 1935 } 1936 1937 void* _QLCreateCFURLFromQLPathFromMIG(void) { 1938 if (verbose) puts("STUB: _QLCreateCFURLFromQLPathFromMIG called"); 1939 return NULL; 1940 } 1941 1942 void* _QLCreateCFURLFromQLURLFromMIG(void) { 1943 if (verbose) puts("STUB: _QLCreateCFURLFromQLURLFromMIG called"); 1944 return NULL; 1945 } 1946 1947 void* _QLCreateDictionaryFromPlistBytesFromMIG(void) { 1948 if (verbose) puts("STUB: _QLCreateDictionaryFromPlistBytesFromMIG called"); 1949 return NULL; 1950 } 1951 1952 void* _QLCreateImageDataFromCGImageForXPC(void) { 1953 if (verbose) puts("STUB: _QLCreateImageDataFromCGImageForXPC called"); 1954 return NULL; 1955 } 1956 1957 void* _QLCreateImageFromBitmapDataFromMIG(void) { 1958 if (verbose) puts("STUB: _QLCreateImageFromBitmapDataFromMIG called"); 1959 return NULL; 1960 } 1961 1962 void* _QLCreateImageFromBitmapDataFromXPC(void) { 1963 if (verbose) puts("STUB: _QLCreateImageFromBitmapDataFromXPC called"); 1964 return NULL; 1965 } 1966 1967 void* _QLCreateQLImageFromCGBitmapContextForMIG(void) { 1968 if (verbose) puts("STUB: _QLCreateQLImageFromCGBitmapContextForMIG called"); 1969 return NULL; 1970 } 1971 1972 void* _QLCreateQLImageFromCGImageForMIG(void) { 1973 if (verbose) puts("STUB: _QLCreateQLImageFromCGImageForMIG called"); 1974 return NULL; 1975 } 1976 1977 void* _QLCreateQLPathFromCFURLForMIG(void) { 1978 if (verbose) puts("STUB: _QLCreateQLPathFromCFURLForMIG called"); 1979 return NULL; 1980 } 1981 1982 void* _QLCreateQLPathFromCFURLForMIGWithResolution(void) { 1983 if (verbose) puts("STUB: _QLCreateQLPathFromCFURLForMIGWithResolution called"); 1984 return NULL; 1985 } 1986 1987 void* _QLCreateQLStringFromCFStringForMIG(void) { 1988 if (verbose) puts("STUB: _QLCreateQLStringFromCFStringForMIG called"); 1989 return NULL; 1990 } 1991 1992 void* _QLCreateQLURLFromCFURLForMIG(void) { 1993 if (verbose) puts("STUB: _QLCreateQLURLFromCFURLForMIG called"); 1994 return NULL; 1995 } 1996 1997 void* _QLDebugWriteBitmapContextToDisk(void) { 1998 if (verbose) puts("STUB: _QLDebugWriteBitmapContextToDisk called"); 1999 return NULL; 2000 } 2001 2002 void* _QLDebugWriteImageToDisk(void) { 2003 if (verbose) puts("STUB: _QLDebugWriteImageToDisk called"); 2004 return NULL; 2005 } 2006 2007 void* _QLDebugWriteLayerToDisk(void) { 2008 if (verbose) puts("STUB: _QLDebugWriteLayerToDisk called"); 2009 return NULL; 2010 } 2011 2012 void* _QLDestroyMallocedBitmapContext(void) { 2013 if (verbose) puts("STUB: _QLDestroyMallocedBitmapContext called"); 2014 return NULL; 2015 } 2016 2017 void* _QLDestroyReservedBitmapContext(void) { 2018 if (verbose) puts("STUB: _QLDestroyReservedBitmapContext called"); 2019 return NULL; 2020 } 2021 2022 void* _QLDestroyVMBitmapContext(void) { 2023 if (verbose) puts("STUB: _QLDestroyVMBitmapContext called"); 2024 return NULL; 2025 } 2026 2027 void* _QLDictionaryBooleanValueForKey(void) { 2028 if (verbose) puts("STUB: _QLDictionaryBooleanValueForKey called"); 2029 return NULL; 2030 } 2031 2032 void* _QLDictionaryCGFloatValueForKey(void) { 2033 if (verbose) puts("STUB: _QLDictionaryCGFloatValueForKey called"); 2034 return NULL; 2035 } 2036 2037 void* _QLDictionaryCopyURLForKey(void) { 2038 if (verbose) puts("STUB: _QLDictionaryCopyURLForKey called"); 2039 return NULL; 2040 } 2041 2042 void* _QLDictionaryFloatValueForKey(void) { 2043 if (verbose) puts("STUB: _QLDictionaryFloatValueForKey called"); 2044 return NULL; 2045 } 2046 2047 void* _QLDictionaryGetPointValueForKey(void) { 2048 if (verbose) puts("STUB: _QLDictionaryGetPointValueForKey called"); 2049 return NULL; 2050 } 2051 2052 void* _QLDictionaryGetRectValueForKey(void) { 2053 if (verbose) puts("STUB: _QLDictionaryGetRectValueForKey called"); 2054 return NULL; 2055 } 2056 2057 void* _QLDictionaryGetSizeValueForKey(void) { 2058 if (verbose) puts("STUB: _QLDictionaryGetSizeValueForKey called"); 2059 return NULL; 2060 } 2061 2062 void* _QLDictionaryIntValueForKey(void) { 2063 if (verbose) puts("STUB: _QLDictionaryIntValueForKey called"); 2064 return NULL; 2065 } 2066 2067 void* _QLDictionarySInt32ValueForKey(void) { 2068 if (verbose) puts("STUB: _QLDictionarySInt32ValueForKey called"); 2069 return NULL; 2070 } 2071 2072 void* _QLDictionarySetBooleanValueForKey(void) { 2073 if (verbose) puts("STUB: _QLDictionarySetBooleanValueForKey called"); 2074 return NULL; 2075 } 2076 2077 void* _QLDictionarySetCGFloatValueForKey(void) { 2078 if (verbose) puts("STUB: _QLDictionarySetCGFloatValueForKey called"); 2079 return NULL; 2080 } 2081 2082 void* _QLDictionarySetFloatValueForKey(void) { 2083 if (verbose) puts("STUB: _QLDictionarySetFloatValueForKey called"); 2084 return NULL; 2085 } 2086 2087 void* _QLDictionarySetIntValueForKey(void) { 2088 if (verbose) puts("STUB: _QLDictionarySetIntValueForKey called"); 2089 return NULL; 2090 } 2091 2092 void* _QLDictionarySetPointValueForKey(void) { 2093 if (verbose) puts("STUB: _QLDictionarySetPointValueForKey called"); 2094 return NULL; 2095 } 2096 2097 void* _QLDictionarySetRectValueForKey(void) { 2098 if (verbose) puts("STUB: _QLDictionarySetRectValueForKey called"); 2099 return NULL; 2100 } 2101 2102 void* _QLDictionarySetSInt32ValueForKey(void) { 2103 if (verbose) puts("STUB: _QLDictionarySetSInt32ValueForKey called"); 2104 return NULL; 2105 } 2106 2107 void* _QLDictionarySetSizeValueForKey(void) { 2108 if (verbose) puts("STUB: _QLDictionarySetSizeValueForKey called"); 2109 return NULL; 2110 } 2111 2112 void* _QLDictionarySetURLForKey(void) { 2113 if (verbose) puts("STUB: _QLDictionarySetURLForKey called"); 2114 return NULL; 2115 } 2116 2117 void* _QLDictionarySetValueForKeyIfExists(void) { 2118 if (verbose) puts("STUB: _QLDictionarySetValueForKeyIfExists called"); 2119 return NULL; 2120 } 2121 2122 void* _QLDictionaryValueForContentType(void) { 2123 if (verbose) puts("STUB: _QLDictionaryValueForContentType called"); 2124 return NULL; 2125 } 2126 2127 void* _QLDictionaryValueForKey(void) { 2128 if (verbose) puts("STUB: _QLDictionaryValueForKey called"); 2129 return NULL; 2130 } 2131 2132 void* _QLDumpMachPortRights(void) { 2133 if (verbose) puts("STUB: _QLDumpMachPortRights called"); 2134 return NULL; 2135 } 2136 2137 void* _QLEnableLogs(void) { 2138 if (verbose) puts("STUB: _QLEnableLogs called"); 2139 return NULL; 2140 } 2141 2142 void* _QLFlushLogs(void) { 2143 if (verbose) puts("STUB: _QLFlushLogs called"); 2144 return NULL; 2145 } 2146 2147 void* _QLForcePluginRegistration(void) { 2148 if (verbose) puts("STUB: _QLForcePluginRegistration called"); 2149 return NULL; 2150 } 2151 2152 void* _QLFreeQLImageForMIG(void) { 2153 if (verbose) puts("STUB: _QLFreeQLImageForMIG called"); 2154 return NULL; 2155 } 2156 2157 void* _QLFreeQLPathForMIG(void) { 2158 if (verbose) puts("STUB: _QLFreeQLPathForMIG called"); 2159 return NULL; 2160 } 2161 2162 void* _QLFreeQLPathFromMIG(void) { 2163 if (verbose) puts("STUB: _QLFreeQLPathFromMIG called"); 2164 return NULL; 2165 } 2166 2167 void* _QLFreeQLStringForMIG(void) { 2168 if (verbose) puts("STUB: _QLFreeQLStringForMIG called"); 2169 return NULL; 2170 } 2171 2172 void* _QLFreeQLStringFromMIG(void) { 2173 if (verbose) puts("STUB: _QLFreeQLStringFromMIG called"); 2174 return NULL; 2175 } 2176 2177 void* _QLFreeQLURLForMIG(void) { 2178 if (verbose) puts("STUB: _QLFreeQLURLForMIG called"); 2179 return NULL; 2180 } 2181 2182 void* _QLFreeQLURLFromMIG(void) { 2183 if (verbose) puts("STUB: _QLFreeQLURLFromMIG called"); 2184 return NULL; 2185 } 2186 2187 void* _QLGeneratorAutoDisplayExtension(void) { 2188 if (verbose) puts("STUB: _QLGeneratorAutoDisplayExtension called"); 2189 return NULL; 2190 } 2191 2192 void* _QLGeneratorCopyAllIDs(void) { 2193 if (verbose) puts("STUB: _QLGeneratorCopyAllIDs called"); 2194 return NULL; 2195 } 2196 2197 void* _QLGeneratorCopyForcedGenerator(void) { 2198 if (verbose) puts("STUB: _QLGeneratorCopyForcedGenerator called"); 2199 return NULL; 2200 } 2201 2202 void* _QLGeneratorCopyGeneratorForContentType(void) { 2203 if (verbose) puts("STUB: _QLGeneratorCopyGeneratorForContentType called"); 2204 return NULL; 2205 } 2206 2207 void* _QLGeneratorCopyGeneratorForFile(void) { 2208 if (verbose) puts("STUB: _QLGeneratorCopyGeneratorForFile called"); 2209 return NULL; 2210 } 2211 2212 void* _QLGeneratorCopyGeneratorFromBundleURL(void) { 2213 if (verbose) puts("STUB: _QLGeneratorCopyGeneratorFromBundleURL called"); 2214 return NULL; 2215 } 2216 2217 void* _QLGeneratorCopyGeneratorFromID(void) { 2218 if (verbose) puts("STUB: _QLGeneratorCopyGeneratorFromID called"); 2219 return NULL; 2220 } 2221 2222 void* _QLGeneratorCopyGeneratorsLibrary(void) { 2223 if (verbose) puts("STUB: _QLGeneratorCopyGeneratorsLibrary called"); 2224 return NULL; 2225 } 2226 2227 void* _QLGeneratorCreate(void) { 2228 if (verbose) puts("STUB: _QLGeneratorCreate called"); 2229 return NULL; 2230 } 2231 2232 void* _QLGeneratorCreateBuiltin(void) { 2233 if (verbose) puts("STUB: _QLGeneratorCreateBuiltin called"); 2234 return NULL; 2235 } 2236 2237 void* _QLGeneratorDisableBaseGenerators(void) { 2238 if (verbose) puts("STUB: _QLGeneratorDisableBaseGenerators called"); 2239 return NULL; 2240 } 2241 2242 void* _QLGeneratorDisableUntrustedGenerators(void) { 2243 if (verbose) puts("STUB: _QLGeneratorDisableUntrustedGenerators called"); 2244 return NULL; 2245 } 2246 2247 void* _QLGeneratorGetDefaultFlavor(void) { 2248 if (verbose) puts("STUB: _QLGeneratorGetDefaultFlavor called"); 2249 return NULL; 2250 } 2251 2252 void* _QLGeneratorGetGeneratorID(void) { 2253 if (verbose) puts("STUB: _QLGeneratorGetGeneratorID called"); 2254 return NULL; 2255 } 2256 2257 void* _QLGeneratorGetNoGenerator(void) { 2258 if (verbose) puts("STUB: _QLGeneratorGetNoGenerator called"); 2259 return NULL; 2260 } 2261 2262 void* _QLGeneratorGetPluginURL(void) { 2263 if (verbose) puts("STUB: _QLGeneratorGetPluginURL called"); 2264 return NULL; 2265 } 2266 2267 void* _QLGeneratorGetPluginVersion(void) { 2268 if (verbose) puts("STUB: _QLGeneratorGetPluginVersion called"); 2269 return NULL; 2270 } 2271 2272 void* _QLGeneratorIsFolderGeneratorAllowed(void) { 2273 if (verbose) puts("STUB: _QLGeneratorIsFolderGeneratorAllowed called"); 2274 return NULL; 2275 } 2276 2277 void* _QLGeneratorNeedsAccessToExternalResources(void) { 2278 if (verbose) puts("STUB: _QLGeneratorNeedsAccessToExternalResources called"); 2279 return NULL; 2280 } 2281 2282 void* _QLGeneratorResetPluginCache(void) { 2283 if (verbose) puts("STUB: _QLGeneratorResetPluginCache called"); 2284 return NULL; 2285 } 2286 2287 void* _QLGeneratorScore(void) { 2288 if (verbose) puts("STUB: _QLGeneratorScore called"); 2289 return NULL; 2290 } 2291 2292 void* _QLGeneratorSetMaxGlobalWeight(void) { 2293 if (verbose) puts("STUB: _QLGeneratorSetMaxGlobalWeight called"); 2294 return NULL; 2295 } 2296 2297 void* _QLGeneratorSetPluginsWhiteList(void) { 2298 if (verbose) puts("STUB: _QLGeneratorSetPluginsWhiteList called"); 2299 return NULL; 2300 } 2301 2302 void* _QLGeneratorSupportsSandboxing(void) { 2303 if (verbose) puts("STUB: _QLGeneratorSupportsSandboxing called"); 2304 return NULL; 2305 } 2306 2307 void* _QLGlobalQuickLookPreferencesBooleanValueForKey(void) { 2308 if (verbose) puts("STUB: _QLGlobalQuickLookPreferencesBooleanValueForKey called"); 2309 return NULL; 2310 } 2311 2312 void* _QLIconCopyIconSetImageName(void) { 2313 if (verbose) puts("STUB: _QLIconCopyIconSetImageName called"); 2314 return NULL; 2315 } 2316 2317 void* _QLIsLoggingEnabled(void) { 2318 if (verbose) puts("STUB: _QLIsLoggingEnabled called"); 2319 return NULL; 2320 } 2321 2322 void* _QLLogUpdateProcName(void) { 2323 if (verbose) puts("STUB: _QLLogUpdateProcName called"); 2324 return NULL; 2325 } 2326 2327 void* _QLMachDispatchIncomingMessageAndReplyIfNecessary(void) { 2328 if (verbose) puts("STUB: _QLMachDispatchIncomingMessageAndReplyIfNecessary called"); 2329 return NULL; 2330 } 2331 2332 void* _QLMachGetMachPortCount(void) { 2333 if (verbose) puts("STUB: _QLMachGetMachPortCount called"); 2334 return NULL; 2335 } 2336 2337 void* _QLMachGetMinimumSequenceNumber(void) { 2338 if (verbose) puts("STUB: _QLMachGetMinimumSequenceNumber called"); 2339 return NULL; 2340 } 2341 2342 void* _QLMachRegisterForNoSenders(void) { 2343 if (verbose) puts("STUB: _QLMachRegisterForNoSenders called"); 2344 return NULL; 2345 } 2346 2347 void* _QLMachUnregisterForNoSenders(void) { 2348 if (verbose) puts("STUB: _QLMachUnregisterForNoSenders called"); 2349 return NULL; 2350 } 2351 2352 void* _QLMainLocalizedString(void) { 2353 if (verbose) puts("STUB: _QLMainLocalizedString called"); 2354 return NULL; 2355 } 2356 2357 void* _QLMiniCacheFolderCreateWithURL(void) { 2358 if (verbose) puts("STUB: _QLMiniCacheFolderCreateWithURL called"); 2359 return NULL; 2360 } 2361 2362 void* _QLPlugInLocalizedString(void) { 2363 if (verbose) puts("STUB: _QLPlugInLocalizedString called"); 2364 return NULL; 2365 } 2366 2367 void* _QLPostCacheInvalidationNotification(void) { 2368 if (verbose) puts("STUB: _QLPostCacheInvalidationNotification called"); 2369 return NULL; 2370 } 2371 2372 void* _QLPostGlobalChangeNotification(void) { 2373 if (verbose) puts("STUB: _QLPostGlobalChangeNotification called"); 2374 return NULL; 2375 } 2376 2377 void* _QLPrefferedParentUTI(void) { 2378 if (verbose) puts("STUB: _QLPrefferedParentUTI called"); 2379 return NULL; 2380 } 2381 2382 void* _QLPreviewCopyUTIIfPresent(void) { 2383 if (verbose) puts("STUB: _QLPreviewCopyUTIIfPresent called"); 2384 return NULL; 2385 } 2386 2387 void* _QLPreviewCreate(void) { 2388 if (verbose) puts("STUB: _QLPreviewCreate called"); 2389 return NULL; 2390 } 2391 2392 void* _QLPreviewReplyAppendData(void) { 2393 if (verbose) puts("STUB: _QLPreviewReplyAppendData called"); 2394 return NULL; 2395 } 2396 2397 void* _QLPreviewRequestCallGenerator(void) { 2398 if (verbose) puts("STUB: _QLPreviewRequestCallGenerator called"); 2399 return NULL; 2400 } 2401 2402 void* _QLPreviewRequestCreate(void) { 2403 if (verbose) puts("STUB: _QLPreviewRequestCreate called"); 2404 return NULL; 2405 } 2406 2407 void* _QLPreviewRequestCreateFromXPCRepresentation(void) { 2408 if (verbose) puts("STUB: _QLPreviewRequestCreateFromXPCRepresentation called"); 2409 return NULL; 2410 } 2411 2412 void* _QLPreviewRequestDispatch(void) { 2413 if (verbose) puts("STUB: _QLPreviewRequestDispatch called"); 2414 return NULL; 2415 } 2416 2417 void* _QLPreviewRequestFillXPCRepresentation(void) { 2418 if (verbose) puts("STUB: _QLPreviewRequestFillXPCRepresentation called"); 2419 return NULL; 2420 } 2421 2422 void* _QLPreviewRequestForward32(void) { 2423 if (verbose) puts("STUB: _QLPreviewRequestForward32 called"); 2424 return NULL; 2425 } 2426 2427 void* _QLPreviewRequestGotMoreData(void) { 2428 if (verbose) puts("STUB: _QLPreviewRequestGotMoreData called"); 2429 return NULL; 2430 } 2431 2432 void* _QLPreviewRequestReplyForInvalidRequest(void) { 2433 if (verbose) puts("STUB: _QLPreviewRequestReplyForInvalidRequest called"); 2434 return NULL; 2435 } 2436 2437 void* _QLPreviewRequestReplyWithContentTypeAndProperties(void) { 2438 if (verbose) puts("STUB: _QLPreviewRequestReplyWithContentTypeAndProperties called"); 2439 return NULL; 2440 } 2441 2442 void* _QLPreviewRequestSendMoreData(void) { 2443 if (verbose) puts("STUB: _QLPreviewRequestSendMoreData called"); 2444 return NULL; 2445 } 2446 2447 void* _QLPreviewRequestSendPendingReply(void) { 2448 if (verbose) puts("STUB: _QLPreviewRequestSendPendingReply called"); 2449 return NULL; 2450 } 2451 2452 void* _QLPreviewRequestSendReply(void) { 2453 if (verbose) puts("STUB: _QLPreviewRequestSendReply called"); 2454 return NULL; 2455 } 2456 2457 void* _QLPreviewRequestSendStartNewAttachment(void) { 2458 if (verbose) puts("STUB: _QLPreviewRequestSendStartNewAttachment called"); 2459 return NULL; 2460 } 2461 2462 void* _QLPreviewRequestSetDistantURLRepresentation(void) { 2463 if (verbose) puts("STUB: _QLPreviewRequestSetDistantURLRepresentation called"); 2464 return NULL; 2465 } 2466 2467 void* _QLPreviewRequestSetupGenerator(void) { 2468 if (verbose) puts("STUB: _QLPreviewRequestSetupGenerator called"); 2469 return NULL; 2470 } 2471 2472 void* _QLPreviewRequestStartNewAttachment(void) { 2473 if (verbose) puts("STUB: _QLPreviewRequestStartNewAttachment called"); 2474 return NULL; 2475 } 2476 2477 void* _QLPreviewRequestUpdateFromXPCRepresentation(void) { 2478 if (verbose) puts("STUB: _QLPreviewRequestUpdateFromXPCRepresentation called"); 2479 return NULL; 2480 } 2481 2482 void* _QLPreviewRequestWontCallGenerator(void) { 2483 if (verbose) puts("STUB: _QLPreviewRequestWontCallGenerator called"); 2484 return NULL; 2485 } 2486 2487 void* _QLRaiseAssert(void) { 2488 if (verbose) puts("STUB: _QLRaiseAssert called"); 2489 return NULL; 2490 } 2491 2492 void* _QLRegisterCacheInvalidationObserver(void) { 2493 if (verbose) puts("STUB: _QLRegisterCacheInvalidationObserver called"); 2494 return NULL; 2495 } 2496 2497 void* _QLRegisterForQuickLookGlobalNotification(void) { 2498 if (verbose) puts("STUB: _QLRegisterForQuickLookGlobalNotification called"); 2499 return NULL; 2500 } 2501 2502 void* _QLRegisterGlobalChangeObserver(void) { 2503 if (verbose) puts("STUB: _QLRegisterGlobalChangeObserver called"); 2504 return NULL; 2505 } 2506 2507 void* _QLRequestCancelGenerator(void) { 2508 if (verbose) puts("STUB: _QLRequestCancelGenerator called"); 2509 return NULL; 2510 } 2511 2512 void* _QLRequestCleanupAfterException(void) { 2513 if (verbose) puts("STUB: _QLRequestCleanupAfterException called"); 2514 return NULL; 2515 } 2516 2517 void* _QLRequestCreateFromXPCRepresentation(void) { 2518 if (verbose) puts("STUB: _QLRequestCreateFromXPCRepresentation called"); 2519 return NULL; 2520 } 2521 2522 void* _QLRequestFillXPCRepresentation(void) { 2523 if (verbose) puts("STUB: _QLRequestFillXPCRepresentation called"); 2524 return NULL; 2525 } 2526 2527 void* _QLRequestGeneratorShouldRunInSatellite(void) { 2528 if (verbose) puts("STUB: _QLRequestGeneratorShouldRunInSatellite called"); 2529 return NULL; 2530 } 2531 2532 void* _QLRequestHasGeneratorFunction(void) { 2533 if (verbose) puts("STUB: _QLRequestHasGeneratorFunction called"); 2534 return NULL; 2535 } 2536 2537 void* _QLRequestIsSandboxedGenerator(void) { 2538 if (verbose) puts("STUB: _QLRequestIsSandboxedGenerator called"); 2539 return NULL; 2540 } 2541 2542 void* _QLRequestNeedsAccessToExternalResources(void) { 2543 if (verbose) puts("STUB: _QLRequestNeedsAccessToExternalResources called"); 2544 return NULL; 2545 } 2546 2547 void* _QLRequestSendWillStart(void) { 2548 if (verbose) puts("STUB: _QLRequestSendWillStart called"); 2549 return NULL; 2550 } 2551 2552 void* _QLRequestUnmapData(void) { 2553 if (verbose) puts("STUB: _QLRequestUnmapData called"); 2554 return NULL; 2555 } 2556 2557 void* _QLRequestUpdateFromXPCRepresentation(void) { 2558 if (verbose) puts("STUB: _QLRequestUpdateFromXPCRepresentation called"); 2559 return NULL; 2560 } 2561 2562 void* _QLResetLogs(void) { 2563 if (verbose) puts("STUB: _QLResetLogs called"); 2564 return NULL; 2565 } 2566 2567 void* _QLResetServer(void) { 2568 if (verbose) puts("STUB: _QLResetServer called"); 2569 return NULL; 2570 } 2571 2572 void* _QLSeamlessClosingRequestFromPort(void) { 2573 if (verbose) puts("STUB: _QLSeamlessClosingRequestFromPort called"); 2574 return NULL; 2575 } 2576 2577 void* _QLSeamlessClosingRequestInvalidate(void) { 2578 if (verbose) puts("STUB: _QLSeamlessClosingRequestInvalidate called"); 2579 return NULL; 2580 } 2581 2582 void* _QLSeamlessOpeningCallCompletionHandlerAndInvalidate(void) { 2583 if (verbose) puts("STUB: _QLSeamlessOpeningCallCompletionHandlerAndInvalidate called"); 2584 return NULL; 2585 } 2586 2587 void* _QLSeamlessOpeningRequestFromPort(void) { 2588 if (verbose) puts("STUB: _QLSeamlessOpeningRequestFromPort called"); 2589 return NULL; 2590 } 2591 2592 void* _QLSeamlessOpeningRequestInvalidate(void) { 2593 if (verbose) puts("STUB: _QLSeamlessOpeningRequestInvalidate called"); 2594 return NULL; 2595 } 2596 2597 void* _QLSeamlessOpeningRequestRegister(void) { 2598 if (verbose) puts("STUB: _QLSeamlessOpeningRequestRegister called"); 2599 return NULL; 2600 } 2601 2602 void* _QLSeamlessOpeningRequestUnregister(void) { 2603 if (verbose) puts("STUB: _QLSeamlessOpeningRequestUnregister called"); 2604 return NULL; 2605 } 2606 2607 void* _QLSelectParentUTI(void) { 2608 if (verbose) puts("STUB: _QLSelectParentUTI called"); 2609 return NULL; 2610 } 2611 2612 void* _QLSetContainsContentType(void) { 2613 if (verbose) puts("STUB: _QLSetContainsContentType called"); 2614 return NULL; 2615 } 2616 2617 void* _QLSetThreadName(void) { 2618 if (verbose) puts("STUB: _QLSetThreadName called"); 2619 return NULL; 2620 } 2621 2622 void* _QLSimpleCrash(void) { 2623 if (verbose) puts("STUB: _QLSimpleCrash called"); 2624 return NULL; 2625 } 2626 2627 void* _QLStackReleaseFrame(void) { 2628 if (verbose) puts("STUB: _QLStackReleaseFrame called"); 2629 return NULL; 2630 } 2631 2632 void* _QLStopServerASAP(void) { 2633 if (verbose) puts("STUB: _QLStopServerASAP called"); 2634 return NULL; 2635 } 2636 2637 void* _QLThreadCopyName(void) { 2638 if (verbose) puts("STUB: _QLThreadCopyName called"); 2639 return NULL; 2640 } 2641 2642 void* _QLThumbnailComputeBaseline(void) { 2643 if (verbose) puts("STUB: _QLThumbnailComputeBaseline called"); 2644 return NULL; 2645 } 2646 2647 void* _QLThumbnailCopyCacheVersion(void) { 2648 if (verbose) puts("STUB: _QLThumbnailCopyCacheVersion called"); 2649 return NULL; 2650 } 2651 2652 void* _QLThumbnailCopyIDForSecureDelete(void) { 2653 if (verbose) puts("STUB: _QLThumbnailCopyIDForSecureDelete called"); 2654 return NULL; 2655 } 2656 2657 void* _QLThumbnailCopyUTIIfPresent(void) { 2658 if (verbose) puts("STUB: _QLThumbnailCopyUTIIfPresent called"); 2659 return NULL; 2660 } 2661 2662 void* _QLThumbnailGetFlavor(void) { 2663 if (verbose) puts("STUB: _QLThumbnailGetFlavor called"); 2664 return NULL; 2665 } 2666 2667 void* _QLThumbnailGetInlinePreviewMode(void) { 2668 if (verbose) puts("STUB: _QLThumbnailGetInlinePreviewMode called"); 2669 return NULL; 2670 } 2671 2672 void* _QLThumbnailImageCreateWithImageIO(void) { 2673 if (verbose) puts("STUB: _QLThumbnailImageCreateWithImageIO called"); 2674 return NULL; 2675 } 2676 2677 void* _QLThumbnailImageReplyGotContentTypeUTI(void) { 2678 if (verbose) puts("STUB: _QLThumbnailImageReplyGotContentTypeUTI called"); 2679 return NULL; 2680 } 2681 2682 void* _QLThumbnailNotifyWhenAdditionIsAvailable(void) { 2683 if (verbose) puts("STUB: _QLThumbnailNotifyWhenAdditionIsAvailable called"); 2684 return NULL; 2685 } 2686 2687 void* _QLThumbnailRequestCallGenerator(void) { 2688 if (verbose) puts("STUB: _QLThumbnailRequestCallGenerator called"); 2689 return NULL; 2690 } 2691 2692 void* _QLThumbnailRequestCleanUp(void) { 2693 if (verbose) puts("STUB: _QLThumbnailRequestCleanUp called"); 2694 return NULL; 2695 } 2696 2697 void* _QLThumbnailRequestCleanupAfterException(void) { 2698 if (verbose) puts("STUB: _QLThumbnailRequestCleanupAfterException called"); 2699 return NULL; 2700 } 2701 2702 void* _QLThumbnailRequestCreate(void) { 2703 if (verbose) puts("STUB: _QLThumbnailRequestCreate called"); 2704 return NULL; 2705 } 2706 2707 void* _QLThumbnailRequestCreateContext(void) { 2708 if (verbose) puts("STUB: _QLThumbnailRequestCreateContext called"); 2709 return NULL; 2710 } 2711 2712 void* _QLThumbnailRequestCreateFlavorNumber(void) { 2713 if (verbose) puts("STUB: _QLThumbnailRequestCreateFlavorNumber called"); 2714 return NULL; 2715 } 2716 2717 void* _QLThumbnailRequestCreateFromXPCRepresentation(void) { 2718 if (verbose) puts("STUB: _QLThumbnailRequestCreateFromXPCRepresentation called"); 2719 return NULL; 2720 } 2721 2722 void* _QLThumbnailRequestDispatch(void) { 2723 if (verbose) puts("STUB: _QLThumbnailRequestDispatch called"); 2724 return NULL; 2725 } 2726 2727 void* _QLThumbnailRequestFillXPCRepresentation(void) { 2728 if (verbose) puts("STUB: _QLThumbnailRequestFillXPCRepresentation called"); 2729 return NULL; 2730 } 2731 2732 void* _QLThumbnailRequestForward32(void) { 2733 if (verbose) puts("STUB: _QLThumbnailRequestForward32 called"); 2734 return NULL; 2735 } 2736 2737 void* _QLThumbnailRequestGetBitmapMaximumSizeForFlavor(void) { 2738 if (verbose) puts("STUB: _QLThumbnailRequestGetBitmapMaximumSizeForFlavor called"); 2739 return NULL; 2740 } 2741 2742 void* _QLThumbnailRequestGetCacheURL(void) { 2743 if (verbose) puts("STUB: _QLThumbnailRequestGetCacheURL called"); 2744 return NULL; 2745 } 2746 2747 void* _QLThumbnailRequestGetIconMode(void) { 2748 if (verbose) puts("STUB: _QLThumbnailRequestGetIconMode called"); 2749 return NULL; 2750 } 2751 2752 void* _QLThumbnailRequestGetMaximumSizeForFlavor(void) { 2753 if (verbose) puts("STUB: _QLThumbnailRequestGetMaximumSizeForFlavor called"); 2754 return NULL; 2755 } 2756 2757 void* _QLThumbnailRequestGetOptions(void) { 2758 if (verbose) puts("STUB: _QLThumbnailRequestGetOptions called"); 2759 return NULL; 2760 } 2761 2762 void* _QLThumbnailRequestGetRealMaximumBitmapDimension(void) { 2763 if (verbose) puts("STUB: _QLThumbnailRequestGetRealMaximumBitmapDimension called"); 2764 return NULL; 2765 } 2766 2767 void* _QLThumbnailRequestGetRealMaximumBitmapSize(void) { 2768 if (verbose) puts("STUB: _QLThumbnailRequestGetRealMaximumBitmapSize called"); 2769 return NULL; 2770 } 2771 2772 void* _QLThumbnailRequestGetRealMaximumSize(void) { 2773 if (verbose) puts("STUB: _QLThumbnailRequestGetRealMaximumSize called"); 2774 return NULL; 2775 } 2776 2777 void* _QLThumbnailRequestGetScaleFactorForContext(void) { 2778 if (verbose) puts("STUB: _QLThumbnailRequestGetScaleFactorForContext called"); 2779 return NULL; 2780 } 2781 2782 void* _QLThumbnailRequestHasCacheBeenTested(void) { 2783 if (verbose) puts("STUB: _QLThumbnailRequestHasCacheBeenTested called"); 2784 return NULL; 2785 } 2786 2787 void* _QLThumbnailRequestIsDistant(void) { 2788 if (verbose) puts("STUB: _QLThumbnailRequestIsDistant called"); 2789 return NULL; 2790 } 2791 2792 void* _QLThumbnailRequestIsTooSmallForGenerator(void) { 2793 if (verbose) puts("STUB: _QLThumbnailRequestIsTooSmallForGenerator called"); 2794 return NULL; 2795 } 2796 2797 void* _QLThumbnailRequestReplyForInvalidRequest(void) { 2798 if (verbose) puts("STUB: _QLThumbnailRequestReplyForInvalidRequest called"); 2799 return NULL; 2800 } 2801 2802 void* _QLThumbnailRequestSendPendingReply(void) { 2803 if (verbose) puts("STUB: _QLThumbnailRequestSendPendingReply called"); 2804 return NULL; 2805 } 2806 2807 void* _QLThumbnailRequestSendReply(void) { 2808 if (verbose) puts("STUB: _QLThumbnailRequestSendReply called"); 2809 return NULL; 2810 } 2811 2812 void* _QLThumbnailRequestSetCacheTested(void) { 2813 if (verbose) puts("STUB: _QLThumbnailRequestSetCacheTested called"); 2814 return NULL; 2815 } 2816 2817 void* _QLThumbnailRequestSetup(void) { 2818 if (verbose) puts("STUB: _QLThumbnailRequestSetup called"); 2819 return NULL; 2820 } 2821 2822 void* _QLThumbnailRequestShouldTryCache(void) { 2823 if (verbose) puts("STUB: _QLThumbnailRequestShouldTryCache called"); 2824 return NULL; 2825 } 2826 2827 void* _QLThumbnailRequestTryCacheRead(void) { 2828 if (verbose) puts("STUB: _QLThumbnailRequestTryCacheRead called"); 2829 return NULL; 2830 } 2831 2832 void* _QLThumbnailRequestUpdateFromXPCRepresentation(void) { 2833 if (verbose) puts("STUB: _QLThumbnailRequestUpdateFromXPCRepresentation called"); 2834 return NULL; 2835 } 2836 2837 void* _QLThumbnailRequestWontCallGenerator(void) { 2838 if (verbose) puts("STUB: _QLThumbnailRequestWontCallGenerator called"); 2839 return NULL; 2840 } 2841 2842 void* _QLThumbnailSetImage(void) { 2843 if (verbose) puts("STUB: _QLThumbnailSetImage called"); 2844 return NULL; 2845 } 2846 2847 void* _QLThumbnailSetThumbnailWithBitmapData(void) { 2848 if (verbose) puts("STUB: _QLThumbnailSetThumbnailWithBitmapData called"); 2849 return NULL; 2850 } 2851 2852 void* _QLThumbnailSizeIsSufficentForLowQuality(void) { 2853 if (verbose) puts("STUB: _QLThumbnailSizeIsSufficentForLowQuality called"); 2854 return NULL; 2855 } 2856 2857 void* _QLUIHelperUnregisterFromHelperDeath(void) { 2858 if (verbose) puts("STUB: _QLUIHelperUnregisterFromHelperDeath called"); 2859 return NULL; 2860 } 2861 2862 void* _QLUnregisterCacheInvalidationObserver(void) { 2863 if (verbose) puts("STUB: _QLUnregisterCacheInvalidationObserver called"); 2864 return NULL; 2865 } 2866 2867 void* _QLXPCCGFloatValueForKey(void) { 2868 if (verbose) puts("STUB: _QLXPCCGFloatValueForKey called"); 2869 return NULL; 2870 } 2871 2872 void* _QLXPCCopyCFObjectForKey(void) { 2873 if (verbose) puts("STUB: _QLXPCCopyCFObjectForKey called"); 2874 return NULL; 2875 } 2876 2877 void* _QLXPCCopyStringForKey(void) { 2878 if (verbose) puts("STUB: _QLXPCCopyStringForKey called"); 2879 return NULL; 2880 } 2881 2882 void* _QLXPCCopyURLForKey(void) { 2883 if (verbose) puts("STUB: _QLXPCCopyURLForKey called"); 2884 return NULL; 2885 } 2886 2887 void* _QLXPCFloatValueForKey(void) { 2888 if (verbose) puts("STUB: _QLXPCFloatValueForKey called"); 2889 return NULL; 2890 } 2891 2892 void* _QLXPCGetPointValueForKey(void) { 2893 if (verbose) puts("STUB: _QLXPCGetPointValueForKey called"); 2894 return NULL; 2895 } 2896 2897 void* _QLXPCGetRectValueForKey(void) { 2898 if (verbose) puts("STUB: _QLXPCGetRectValueForKey called"); 2899 return NULL; 2900 } 2901 2902 void* _QLXPCGetSizeValueForKey(void) { 2903 if (verbose) puts("STUB: _QLXPCGetSizeValueForKey called"); 2904 return NULL; 2905 } 2906 2907 void* _QLXPCIntValueForKey(void) { 2908 if (verbose) puts("STUB: _QLXPCIntValueForKey called"); 2909 return NULL; 2910 } 2911 2912 void* _QLXPCSInt32ValueForKey(void) { 2913 if (verbose) puts("STUB: _QLXPCSInt32ValueForKey called"); 2914 return NULL; 2915 } 2916 2917 void* _QLXPCSetCFObjectForKey(void) { 2918 if (verbose) puts("STUB: _QLXPCSetCFObjectForKey called"); 2919 return NULL; 2920 } 2921 2922 void* _QLXPCSetCGFloatValueForKey(void) { 2923 if (verbose) puts("STUB: _QLXPCSetCGFloatValueForKey called"); 2924 return NULL; 2925 } 2926 2927 void* _QLXPCSetFloatValueForKey(void) { 2928 if (verbose) puts("STUB: _QLXPCSetFloatValueForKey called"); 2929 return NULL; 2930 } 2931 2932 void* _QLXPCSetIntValueForKey(void) { 2933 if (verbose) puts("STUB: _QLXPCSetIntValueForKey called"); 2934 return NULL; 2935 } 2936 2937 void* _QLXPCSetPointValueForKey(void) { 2938 if (verbose) puts("STUB: _QLXPCSetPointValueForKey called"); 2939 return NULL; 2940 } 2941 2942 void* _QLXPCSetRectValueForKey(void) { 2943 if (verbose) puts("STUB: _QLXPCSetRectValueForKey called"); 2944 return NULL; 2945 } 2946 2947 void* _QLXPCSetSInt32ValueForKey(void) { 2948 if (verbose) puts("STUB: _QLXPCSetSInt32ValueForKey called"); 2949 return NULL; 2950 } 2951 2952 void* _QLXPCSetSizeValueForKey(void) { 2953 if (verbose) puts("STUB: _QLXPCSetSizeValueForKey called"); 2954 return NULL; 2955 } 2956 2957 void* _QLXPCSetStringForKey(void) { 2958 if (verbose) puts("STUB: _QLXPCSetStringForKey called"); 2959 return NULL; 2960 } 2961 2962 void* _QLXPCSetURLForKey(void) { 2963 if (verbose) puts("STUB: _QLXPCSetURLForKey called"); 2964 return NULL; 2965 } 2966 2967 void* _Z18QLTryCatchAndCrashU13block_pointerFvvE(void) { 2968 if (verbose) puts("STUB: _Z18QLTryCatchAndCrashU13block_pointerFvvE called"); 2969 return NULL; 2970 } 2971 2972 void* __QLLog_base(void) { 2973 if (verbose) puts("STUB: __QLLog_base called"); 2974 return NULL; 2975 } 2976 2977 void* __QLShouldLogForLevel(void) { 2978 if (verbose) puts("STUB: __QLShouldLogForLevel called"); 2979 return NULL; 2980 } 2981 2982 void* _geParenttFolderForFileURL(void) { 2983 if (verbose) puts("STUB: _geParenttFolderForFileURL called"); 2984 return NULL; 2985 } 2986 2987 void* _genericIconNameForMaxSize(void) { 2988 if (verbose) puts("STUB: _genericIconNameForMaxSize called"); 2989 return NULL; 2990 } 2991 2992 void* _getHelperManagerQueue(void) { 2993 if (verbose) puts("STUB: _getHelperManagerQueue called"); 2994 return NULL; 2995 } 2996 2997 void* logTestState(void) { 2998 if (verbose) puts("STUB: logTestState called"); 2999 return NULL; 3000 } 3001 3002 void* mt_log_quicklook_cache_size(void) { 3003 if (verbose) puts("STUB: mt_log_quicklook_cache_size called"); 3004 return NULL; 3005 } 3006 3007 void* ql_dispatch_async(void) { 3008 if (verbose) puts("STUB: ql_dispatch_async called"); 3009 return NULL; 3010 } 3011 3012 void* ql_dispatch_once(void) { 3013 if (verbose) puts("STUB: ql_dispatch_once called"); 3014 return NULL; 3015 } 3016 3017 void* ql_dispatch_source_set_cancel_handler(void) { 3018 if (verbose) puts("STUB: ql_dispatch_source_set_cancel_handler called"); 3019 return NULL; 3020 } 3021 3022 void* ql_dispatch_source_set_event_handler(void) { 3023 if (verbose) puts("STUB: ql_dispatch_source_set_event_handler called"); 3024 return NULL; 3025 } 3026 3027 void* ql_dispatch_sync(void) { 3028 if (verbose) puts("STUB: ql_dispatch_sync called"); 3029 return NULL; 3030 } 3031 3032 void* qlfuture_destroy(void) { 3033 if (verbose) puts("STUB: qlfuture_destroy called"); 3034 return NULL; 3035 } 3036 3037 void* qlfuture_dispatch(void) { 3038 if (verbose) puts("STUB: qlfuture_dispatch called"); 3039 return NULL; 3040 } 3041 3042 void* qlfuture_notify(void) { 3043 if (verbose) puts("STUB: qlfuture_notify called"); 3044 return NULL; 3045 } 3046 3047 void* qlfuture_wait(void) { 3048 if (verbose) puts("STUB: qlfuture_wait called"); 3049 return NULL; 3050 } 3051 3052 void* qlstaticqueue(void) { 3053 if (verbose) puts("STUB: qlstaticqueue called"); 3054 return NULL; 3055 }