浏览代码

* include QuickLook units in MacOSAll
* merge:

r319 | jonas | 2009-11-23 17:29:38 +0100 (Mon, 23 Nov 2009) | 4 lines

o two corrections by Dmitry Boyarintsev (mantis #15164):
* PEFBinaryFormat: fixed missing semi-colon in commented-out type block
* cblas: use {$error/errorc} instead of syntax error to report problem

git-svn-id: trunk@14259 -

Jonas Maebe 15 年之前
父节点
当前提交
d313fd272c
共有 3 个文件被更改,包括 25 次插入2 次删除
  1. 23 0
      packages/univint/src/MacOSAll.pas
  2. 1 1
      packages/univint/src/PEFBinaryFormat.pas
  3. 1 1
      packages/univint/src/cblas.pas

+ 23 - 0
packages/univint/src/MacOSAll.pas

@@ -196,6 +196,8 @@ interface
 {$i PMPrintingDialogExtensions.pas}
 {unit QDCMCommon}
 {$i QDCMCommon.pas}
+{unit QLBase}
+{$i QLBase.pas}
 {unit QTML}
 {$i QTML.pas}
 {unit QuickTimeErrors}
@@ -748,6 +750,8 @@ interface
 {$i NSLCore.pas}
 {unit OpenTransportProtocol}
 {$i OpenTransportProtocol.pas}
+{unit QLThumbnailImage}
+{$i QLThumbnailImage.pas}
 {unit Translation}
 {$i Translation.pas}
 {unit URLAccess}
@@ -854,6 +858,8 @@ interface
 {$i PMCore.pas}
 {unit QDPictToCGContext}
 {$i QDPictToCGContext.pas}
+{unit QLGenerator}
+{$i QLGenerator.pas}
 {unit Quickdraw}
 {$i Quickdraw.pas}
 {unit SCDynamicStore}
@@ -1961,6 +1967,23 @@ begin
 	flags := (flags and (not kAudioUnitParameterFlag_DisplayMask)) or displayType
 end;
 
+{implementation of unit QLGenerator}
+
+{$ifc TARGET_OS_MAC}
+
+
+function kQLGeneratorTypeID : CFUUIDRef; inline;
+begin
+	kQLGeneratorTypeID := CFUUIDGetConstantUUIDWithBytes(kCFAllocatorDefault, $5E, $2D, $96, $80, $50, $22, $40, $FA, $B8, $06, $43, $34, $96, $22, $E5, $B9)
+end;
+
+function kQLGeneratorCallbacksInterfaceID: CFUUIDRef; inline; 
+begin
+	kQLGeneratorCallbacksInterfaceID := CFUUIDGetConstantUUIDWithBytes(kCFAllocatorDefault, $86, $5A, $F5, $E0, $6D, $30, $43, $45, $95, $1B, $D3, $71, $05, $75, $4F, $2D)
+end;
+
+{$endc} {TARGET_OS_MAC}
+
 {implementation of unit Menus}
 
 {$ifc TARGET_OS_MAC}

+ 1 - 1
packages/univint/src/PEFBinaryFormat.pas

@@ -1522,7 +1522,7 @@ type
 	end;
 
 type
-	PEF2LgExportedSymbolPtr = ^PEF2LgExportedSymbol
+	PEF2LgExportedSymbolPtr = ^PEF2LgExportedSymbol;
 	PEF2LgExportedSymbol = record
 		symClass: UInt8;
 		flags: UInt8;

+ 1 - 1
packages/univint/src/cblas.pas

@@ -548,7 +548,7 @@ procedure SetBLASParamErrorProc( ErrorProc: BLASParamErrorProc ); external name
   {$ifc not undefined TARGET_CPU_X86 or defined TARGET_CPU_X86_64}
 
   {$elsec}
-	   error Unknown architecture
+	   {$error Unknown architecture}
   {$endc}
 {$endc}