diff --git a/CInclude/file.h b/CInclude/file.h index 076be3b61..3237ff140 100644 --- a/CInclude/file.h +++ b/CInclude/file.h @@ -154,7 +154,7 @@ typedef struct { FileExtendedAttribute FEAD_attr; /* Attribute to get/set */ void *FEAD_value; /* Pointer to buffer/new value */ word FEAD_size; /* Size of buffer/new value */ - char *FEAD_name; /* Null-terminated ASCII name of + TCHAR *FEAD_name; /* Null-terminated ASCII name of * attribute if FEA_CUSTOM */ } FileExtAttrDesc; @@ -164,7 +164,7 @@ typedef struct { FileExtendedAttribute FEAD_attr; /* Attribute to get/set */ dword *FEAD_value; /* Pointer to buffer/new value */ word FEAD_size; /* Size of buffer/new value */ - char *FEAD_name; /* Null-terminated ASCII name of + TCHAR *FEAD_name; /* Null-terminated ASCII name of * attribute if FEA_CUSTOM */ } FileExtAttrDescLike; @@ -248,17 +248,17 @@ typedef WordFlags FileOpenAndReadFlags; /***/ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileCreateDir(const char *name); + _pascal FileCreateDir(const TCHAR *name); /***/ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileCreateDirWithNativeShortName(const char *name); + _pascal FileCreateDirWithNativeShortName(const TCHAR *name); /***/ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileDeleteDir(const char *name); + _pascal FileDeleteDir(const TCHAR *name); /***/ @@ -273,7 +273,7 @@ extern void /***/ extern DiskHandle /*XXX*/ - _pascal FileGetCurrentPath(char *buffer, word bufferSize); + _pascal FileGetCurrentPath(TCHAR *buffer, word bufferSize); /***/ @@ -299,15 +299,15 @@ extern void /***/ extern DiskHandle /* Sets value for ThreadGetError() */ /*XXX*/ - _pascal FileSetCurrentPath(DiskHandle disk, const char *path); + _pascal FileSetCurrentPath(DiskHandle disk, const TCHAR *path); extern DiskHandle /* Sets value for ThreadGetError() */ /*XXX*/ - _pascal FileSetCurrentPathRaw(DiskHandle disk, const char *path); + _pascal FileSetCurrentPathRaw(DiskHandle disk, const TCHAR *path); /***/ extern FileHandle /* Sets value for ThreadGetError() */ - _pascal FileOpen(const char *name, FileAccessFlags flags); + _pascal FileOpen(const TCHAR *name, FileAccessFlags flags); /***/ @@ -324,7 +324,7 @@ typedef WordFlags FileCreateFlags; #define FCF_ACCESS 0x00ff /* Filled with FileAccessFlags*/ extern FileHandle /* Sets value for ThreadGetError() */ - _pascal FileCreate(const char *name, FileCreateFlags flags, FileAttrs attributes); + _pascal FileCreate(const TCHAR *name, FileCreateFlags flags, FileAttrs attributes); /***/ @@ -341,7 +341,7 @@ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ /***/ extern FileHandle /* Sets value for ThreadGetError() */ /*XXX*/ - _pascal FileCreateTempFile(const char *dir, + _pascal FileCreateTempFile(const TCHAR *dir, FileCreateFlags flags, FileAttrs attributes); /***/ @@ -352,7 +352,7 @@ extern word /* Returns error and sets value for ThreadGetError() */ /***/ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileRename(const char *oldName, const char *newame); + _pascal FileRename(const TCHAR *oldName, const TCHAR *newame); /***/ @@ -482,16 +482,16 @@ extern DiskHandle /* Sets value for ThreadGetError() */ /*XXX*/ /***/ extern FileAttrs /* Sets value for ThreadGetError() */ /*XXX*/ - _pascal FileGetAttributes(const char *path); + _pascal FileGetAttributes(const TCHAR *path); /***/ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileSetAttributes(const char *path, FileAttrs attr); + _pascal FileSetAttributes(const TCHAR *path, FileAttrs attr); /***/ extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileGetPathExtAttributes(const char *path, FileExtendedAttribute attr, + _pascal FileGetPathExtAttributes(const TCHAR *path, FileExtendedAttribute attr, void *buffer, word bufSize); extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ @@ -502,7 +502,7 @@ extern MemHandle /* Sets value for ThreadGetError() */ /*XXX*/ _pascal FileGetHandleAllExtAttributes(FileHandle fh, word *numExtAttrs); extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ - _pascal FileSetPathExtAttributes(const char *path, FileExtendedAttribute attr, + _pascal FileSetPathExtAttributes(const TCHAR *path, FileExtendedAttribute attr, const void *buffer, word bufSize); extern word /* Returns error and sets value for ThreadGetError() */ /*XXX*/ @@ -563,34 +563,34 @@ extern void /***/ extern word /* Returns error and sets value for ThreadGetError() */ - _pascal FileCopy(const char *source, const char *dest, + _pascal FileCopy(const TCHAR *source, const TCHAR *dest, DiskHandle sourceDisk, DiskHandle destDisk); extern word /* Returns error and sets value for ThreadGetError() */ - _pascal FileCopyLocal(const char *source, const char *dest, + _pascal FileCopyLocal(const TCHAR *source, const TCHAR *dest, DiskHandle sourceDisk, DiskHandle destDisk); /***/ extern word /* Returns error and sets value for ThreadGetError() */ - _pascal FileMove(const char *source, const char *dest, + _pascal FileMove(const TCHAR *source, const TCHAR *dest, DiskHandle sourceDisk, DiskHandle destDisk); extern word /* Returns error and sets value for ThreadGetError() */ - _pascal FileMoveLocal(const char *source, const char *dest, + _pascal FileMoveLocal(const TCHAR *source, const TCHAR *dest, DiskHandle sourceDisk, DiskHandle destDisk); /***/ extern StandardPath /*XXX*/ - _pascal FileParseStandardPath(DiskHandle disk, const char **path); + _pascal FileParseStandardPath(DiskHandle disk, const TCHAR **path); /***/ extern DiskHandle /*XXX*/ - _pascal FileConstructFullPath(char **buffer, word bufSize, + _pascal FileConstructFullPath(TCHAR **buffer, word bufSize, DiskHandle disk, - const char *tail, + const TCHAR *tail, Boolean addDriveLetter); /***/ @@ -600,7 +600,7 @@ typedef WordFlags FileResolveStandardPathFlags; #define FRSPF_RETURN_FIRST_DIR 0x0001 extern DiskHandle /*XXX*/ - _pascal FileResolveStandardPath(char **buffer, word bufSize, const char *tail, + _pascal FileResolveStandardPath(TCHAR **buffer, word bufSize, const TCHAR *tail, FileResolveStandardPathFlags flags, FileAttrs *attrsPtr); /***/ @@ -614,42 +614,42 @@ typedef ByteEnum PathCompareType; extern PathCompareType /*XXX*/ - _pascal FileComparePaths(const char *path1, + _pascal FileComparePaths(const TCHAR *path1, DiskHandle disk1, - const char *path2, + const TCHAR *path2, DiskHandle disk2); extern word - _pascal FileCreateLink(const char *path, + _pascal FileCreateLink(const TCHAR *path, word targetDiskHandle, - const char *targetPath, + const TCHAR *targetPath, word targetAttrsFlag); extern DiskHandle - _pascal FileReadLink(const char *path, const char *targetPath); + _pascal FileReadLink(const TCHAR *path, const TCHAR *targetPath); extern DiskHandle - _pascal FileSetLinkExtraData(const char *path, - char *buffer, + _pascal FileSetLinkExtraData(const TCHAR *path, + TCHAR *buffer, word bufSize); extern DiskHandle - _pascal FileGetLinkExtraData(const char *path, - char *buffer, + _pascal FileGetLinkExtraData(const TCHAR *path, + TCHAR *buffer, word bufSize); extern DiskHandle - _pascal FileConstructActualPath(char **buffer, + _pascal FileConstructActualPath(TCHAR **buffer, word bufSize, DiskHandle disk, - const char _far *tail, + const TCHAR _far *tail, Boolean addDriveLetter); extern word /*XXX*/ - _pascal FileCopyPathExtAttributes(const char *sourcePath, + _pascal FileCopyPathExtAttributes(const TCHAR *sourcePath, DiskHandle sourceDisk, - const char *destPath, + const TCHAR *destPath, DiskHandle destDisk); extern MemHandle /*XXX*/ _pascal FileOpenAndRead(FileOpenAndReadFlags flags, - const char _far *filename, + const TCHAR _far *filename, FileHandle *fh); diff --git a/Driver/Font/TrueType/Adapter/ttadapter.h b/Driver/Font/TrueType/Adapter/ttadapter.h index b0c6cb6a6..683bc19e9 100644 --- a/Driver/Font/TrueType/Adapter/ttadapter.h +++ b/Driver/Font/TrueType/Adapter/ttadapter.h @@ -341,6 +341,7 @@ typedef struct typedef struct { + Boolean FH_initialized; word FH_h_height; //top of 'H' word FH_x_height; //top of 'x' word FH_ascender; //top of 'd' diff --git a/Driver/Font/TrueType/Adapter/ttinit.c b/Driver/Font/TrueType/Adapter/ttinit.c index f33280082..f4ff3cc22 100644 --- a/Driver/Font/TrueType/Adapter/ttinit.c +++ b/Driver/Font/TrueType/Adapter/ttinit.c @@ -57,7 +57,7 @@ static word getNameFromNameTable( char* name, TT_UShort nameIndex ); -static void ConvertHeader( TRUETYPE_VARS, FontHeader* fontHeader ); +void InitConvertHeader( TRUETYPE_VARS, FontHeader* fontHeader ); static char GetDefaultChar( TRUETYPE_VARS, char firstChar ); @@ -379,7 +379,7 @@ EC( ECCheckFileHandle( truetypeFile ) ); /* fill FontHeader */ fontHeader = LMemDerefHandles( fontInfoBlock, fontHeaderChunk ); - ConvertHeader( trueTypeVars, fontHeader ); + memset(fontHeader, 0, sizeof(FontHeader)); fontInfo->FI_outlineTab = sizeof( FontInfo ); fontInfo->FI_outlineEnd = sizeof( FontInfo ) + sizeof( OutlineDataEntry ); @@ -440,7 +440,7 @@ EC( ECCheckFileHandle( truetypeFile ) ); /* fill FontHeader */ fontHeader = LMemDerefHandles( fontInfoBlock, fontHeaderChunk ); - ConvertHeader( trueTypeVars, fontHeader ); + memset(fontHeader, 0, sizeof(FontHeader)); fontInfo = LMemDeref( ConstructOptr(fontInfoBlock, fontInfoChunk) ); fontInfo->FI_outlineEnd += sizeof( OutlineDataEntry ); @@ -819,7 +819,7 @@ static word getNameFromNameTable( TRUETYPE_VARS, char* name, TT_UShort nameID ) /******************************************************************** - * ConvertHeader + * InitConvertHeader ******************************************************************** * SYNOPSIS: Converts information from a TrueType font into a * FreeGEOS FontHeader. @@ -840,14 +840,16 @@ static word getNameFromNameTable( TRUETYPE_VARS, char* name, TT_UShort nameID ) * 21/01/23 JK Initial Revision *******************************************************************/ -static void ConvertHeader( TRUETYPE_VARS, FontHeader* fontHeader ) +void InitConvertHeader( TRUETYPE_VARS, FontHeader* fontHeader ) { TT_UShort charIndex; word geosChar; EC( ECCheckBounds( (void*)fontHeader ) ); - + + if(fontHeader->FH_initialized) return; + /* initialize min, max and avg values in fontHeader */ fontHeader->FH_minLSB = 9999; fontHeader->FH_maxBSB = -9999; @@ -863,7 +865,6 @@ EC( ECCheckBounds( (void*)fontHeader ) ); fontHeader->FH_defaultChar = GetDefaultChar( trueTypeVars, fontHeader->FH_firstChar ); fontHeader->FH_kernCount = GetKernCount( trueTypeVars ); - TT_New_Instance( FACE, &INSTANCE ); TT_New_Glyph( FACE, &GLYPH ); for ( geosChar = fontHeader->FH_firstChar; geosChar < fontHeader->FH_lastChar; ++geosChar ) @@ -931,7 +932,6 @@ EC( ECCheckBounds( (void*)fontHeader ) ); } TT_Done_Glyph( GLYPH ); - TT_Done_Instance( INSTANCE ); fontHeader->FH_avgwidth = FACE_PROPERTIES.os2->xAvgCharWidth; fontHeader->FH_maxwidth = FACE_PROPERTIES.horizontal->advance_Width_Max; @@ -947,6 +947,8 @@ EC( ECCheckBounds( (void*)fontHeader ) ); fontHeader->FH_strikePos = 3 * fontHeader->FH_x_height / 5; else fontHeader->FH_strikePos = 3 * fontHeader->FH_ascent / 5; + + fontHeader->FH_initialized = TRUE; } diff --git a/Driver/Font/TrueType/Adapter/ttpath.c b/Driver/Font/TrueType/Adapter/ttpath.c index e9e92ca95..99d1e8df6 100644 --- a/Driver/Font/TrueType/Adapter/ttpath.c +++ b/Driver/Font/TrueType/Adapter/ttpath.c @@ -95,6 +95,8 @@ static void CalcDriversTransformMatrix( TransformMatrix* transformMatrix, GStateHandle gstate, WindowHandle win ); +extern void InitConvertHeader( TRUETYPE_VARS, FontHeader* fontHeader ); + /******************************************************************** * TrueType_Gen_Path @@ -166,6 +168,8 @@ EC( ECCheckBounds( (void*)fontHeader ) ); if( TrueType_Lock_Face(trueTypeVars, trueTypeOutline) ) goto Fin; + InitConvertHeader(trueTypeVars, fontHeader); + TT_New_Glyph( FACE, &GLYPH ); /* get TT char index */ @@ -313,6 +317,8 @@ EC( ECCheckBounds( (void*)fontHeader ) ); if( TrueType_Lock_Face(trueTypeVars, trueTypeOutline) ) goto Fin; + InitConvertHeader(trueTypeVars, fontHeader); + /* get TT char index */ charIndex = TT_Char_Index( CHAR_MAP, GeosCharToUnicode( character ) ); if( charIndex == 0 ) diff --git a/Driver/Font/TrueType/Adapter/ttwidths.c b/Driver/Font/TrueType/Adapter/ttwidths.c index a28b84de8..1713ea60a 100644 --- a/Driver/Font/TrueType/Adapter/ttwidths.c +++ b/Driver/Font/TrueType/Adapter/ttwidths.c @@ -67,6 +67,8 @@ static void AdjustFontBuf( TransformMatrix* transMatrix, static Boolean IsRegionNeeded( TransformMatrix* transMatrix, FontBuf* fontBuf ); +extern void InitConvertHeader( TRUETYPE_VARS, FontHeader* fontHeader ); + #define ROUND_WWFIXED( value ) ( value & 0xffff ? ( value >> 16 ) + 1 : value >> 16 ) @@ -157,6 +159,8 @@ EC( ECCheckBounds( (void*)fontHeader ) ); if( TrueType_Lock_Face(trueTypeVars, trueTypeOutline) ) goto Fail; + InitConvertHeader( trueTypeVars, fontHeader ); + /* alloc Block for FontBuf, CharTableEntries, KernPairs and kerning values */ size = AllocFontBlock( sizeof( TransformMatrix ), fontHeader->FH_numChars, @@ -569,7 +573,7 @@ static word AllocFontBlock( word additionalSpace, if( *fontHandle == NullHandle ) { *fontHandle = MemAllocSetOwner( FONT_MAN_ID, MAX_FONTBUF_SIZE, - HF_SWAPABLE | HF_SHARABLE | HF_DISCARDABLE, + HF_SWAPABLE | HF_SHARABLE, HAF_NO_ERR | HAF_LOCK | HAF_ZERO_INIT ); EC( ECCheckMemHandle( *fontHandle ) ); HandleP( *fontHandle ); diff --git a/Installed/Library/Breadbox/ImpGraph/DBCS/dependencies.mk b/Installed/Library/Breadbox/ImpGraph/DBCS/dependencies.mk new file mode 100644 index 000000000..feb638da6 --- /dev/null +++ b/Installed/Library/Breadbox/ImpGraph/DBCS/dependencies.mk @@ -0,0 +1,184 @@ +DBCS/ASMIMP.obj \ +DBCS/ASMIMP.eobj: ASMIMP/asmimpManager.asm \ + stdapp.def geos.def geode.def resource.def ec.def lmem.def \ + object.def graphics.def fontID.def font.def color.def \ + gstring.def text.def char.def unicode.def heap.def ui.def \ + file.def vm.def win.def input.def hwr.def localize.def \ + sllang.def Objects/processC.def Objects/metaC.def \ + chunkarr.def geoworks.def gcnlist.def timedate.def \ + Objects/Text/tCommon.def stylesh.def iacp.def \ + Objects/uiInputC.def Objects/visC.def Objects/vCompC.def \ + Objects/vCntC.def Internal/vUtils.def Objects/genC.def \ + disk.def drive.def uDialog.def Objects/gInterC.def \ + token.def Objects/clipbrd.def Objects/gSysC.def \ + Objects/gProcC.def alb.def Objects/gFieldC.def \ + Objects/gScreenC.def Objects/gFSelC.def \ + Objects/gViewC.def Objects/gContC.def Objects/gCtrlC.def \ + Objects/gDocC.def Objects/gDocCtrl.def \ + Objects/gDocGrpC.def Objects/gEditCC.def \ + Objects/gViewCC.def Objects/gToolCC.def \ + Objects/gPageCC.def Objects/gPenICC.def \ + Objects/gGlyphC.def Objects/gTrigC.def \ + Objects/gBoolGC.def Objects/gItemGC.def \ + Objects/gDListC.def Objects/gItemC.def Objects/gBoolC.def \ + Objects/gDispC.def Objects/gDCtrlC.def Objects/gPrimC.def \ + Objects/gAppC.def Objects/gTextC.def Objects/gGadgetC.def \ + Objects/gValueC.def Objects/gToolGC.def \ + Internal/gUtils.def Objects/helpCC.def Objects/eMenuC.def \ + Objects/emomC.def Objects/emTrigC.def Internal/uProcC.def \ + product.def iimpgif.def bitmap.def hugearr.def impgif.asm \ + Internal/heapInt.def Internal/semInt.def sysstats.def +DBCS/impfjpeg.obj \ +DBCS/impfjpeg.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh IMPBMP/impjpeg.h htmldrv.h +DBCS/impfjpeg.obj \ +DBCS/impfjpeg.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h Ansi/stdio.h \ + Ansi/string.h Ansi/stdlib.h product.h IMPBMP/ibcommon.h \ + htmldrv.h math.h htmlfstr.h awatcher.h htmlprog.h \ + initfile.h +DBCS/impgifc.obj \ +DBCS/impgifc.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh Ansi/stdio.h IMPBMP/impgif.h \ + Ansi/string.h ec.h +DBCS/impgifc.obj \ +DBCS/impgifc.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h IMPBMP/ibcommon.h \ + product.h htmldrv.h math.h htmlfstr.h awatcher.h \ + htmlprog.h +DBCS/impjpeg.obj \ +DBCS/impjpeg.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh IMPBMP/impjpeg.h htmldrv.h +DBCS/impjpeg.obj \ +DBCS/impjpeg.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h Ansi/stdio.h jpeglib.h \ + product.h htmlprog.h jconfig.h jmorecfg.h Ansi/string.h \ + Ansi/stdlib.h IMPBMP/ibcommon.h htmldrv.h math.h \ + htmlfstr.h awatcher.h initfile.h +DBCS/awatcher.obj \ +DBCS/awatcher.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh +DBCS/awatcher.obj \ +DBCS/awatcher.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h awatcher.h +DBCS/impgraph.obj \ +DBCS/impgraph.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh STATBAR/statbar.goh impex.goh +DBCS/impgraph.obj \ +DBCS/impgraph.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h initfile.h htmldrv.h \ + product.h math.h htmlfstr.h awatcher.h htmlprog.h \ + IMPBMP/impgif.h IMPBMP/ibcommon.h IMPBMP/impjpeg.h \ + ieCommon.h xlatLib.h Ansi/string.h + +DBCS/impgraphEC.geo DBCS/impgraph.geo : geos.ldf ansic.ldf ijgjpeg.ldf \ No newline at end of file diff --git a/Installed/Library/Breadbox/ImpGraph/Makefile b/Installed/Library/Breadbox/ImpGraph/Makefile index 833fee679..5963a7833 100644 --- a/Installed/Library/Breadbox/ImpGraph/Makefile +++ b/Installed/Library/Breadbox/ImpGraph/Makefile @@ -1,35 +1,41 @@ -# -# THIS FILE HAS BEEN GENERATED AUTOMATICALLY. -# -# If you edit it, you will lose your changes, should it be regenerated. -# -GEODE = impgraph -ASMIMP = impgif.asm asmimpManager.asm iimpgif.def -MAIN = impgraph.goc awatcher.goc -IMPBMP = impjpeg.h impgif.h ibcommon.h impfjpeg.goc impgifc.goc\ - impjpeg.goc -UI_TO_RDFS = -OBJS = impgraph.obj awatcher.obj impfjpeg.obj impgifc.obj\ - impjpeg.obj -COMMON = -MODULES = ASMIMP -CMODULES = MAIN IMPBMP -SRCS = $(ASMIMP) $(MAIN) $(IMPBMP) $(COMMON) -LOBJS = -LIBOBJ = $(DEVEL_DIR)/Include/$(GEODE).ldf -LIBNAME = impgraph - -SYSMAKEFILE = geode.mk - -#include -#include - -#if exists(local.mk) -#include "local.mk" -#else -#include <$(SYSMAKEFILE)> -#endif - -#if exists($(DEPFILE)) -#include "$(DEPFILE)" -#endif +# +# THIS FILE HAS BEEN GENERATED AUTOMATICALLY. +# +# If you edit it, you will lose your changes, should it be regenerated. +# +GEODE = impgraph +ASMIMP = asmimpManager.asm impgif.asm iimpgif.def +IMPBMP = ibcommon.h impgif.h impjpeg.h impfjpeg.goc impgifc.goc\ + impjpeg.goc +MAIN = awatcher.goc impgraph.goc +UI_TO_RDFS = +OBJS = impfjpeg.obj impgifc.obj impjpeg.obj awatcher.obj\ + impgraph.obj +COMMON = +MODULES = ASMIMP +CMODULES = IMPBMP MAIN +SRCS = $(ASMIMP) $(IMPBMP) $(MAIN) $(COMMON) +LOBJS = +LIBOBJ = $(DEVEL_DIR)/Include/$(GEODE).ldf +LIBNAME = impgraph + +PRODUCTS = DBCS + +SYSMAKEFILE = geode.mk + +#include +#include + +#if exists(local.mk) +#include "local.mk" +#else +#include <$(SYSMAKEFILE)> +#endif + +#if exists($(DEPFILE)) +#include "$(DEPFILE)" +#endif + +#if exists(DBCS/$(DEPFILE)) +#include "DBCS/$(DEPFILE)" +#endif diff --git a/Installed/Library/Breadbox/ImpGraph/dependencies.mk b/Installed/Library/Breadbox/ImpGraph/dependencies.mk index 6c9012d7e..cedfdf55d 100644 --- a/Installed/Library/Breadbox/ImpGraph/dependencies.mk +++ b/Installed/Library/Breadbox/ImpGraph/dependencies.mk @@ -1,157 +1,184 @@ -ASMIMP.obj \ -ASMIMP.eobj: ASMIMP/asmimpManager.asm \ - stdapp.def geos.def geode.def resource.def ec.def lmem.def \ - object.def graphics.def fontID.def font.def color.def \ - gstring.def text.def char.def heap.def ui.def file.def \ - vm.def win.def input.def hwr.def localize.def sllang.def \ - Objects/processC.def Objects/metaC.def chunkarr.def \ - geoworks.def gcnlist.def timedate.def \ - Objects/Text/tCommon.def stylesh.def iacp.def \ - Objects/uiInputC.def Objects/visC.def Objects/vCompC.def \ - Objects/vCntC.def Internal/vUtils.def Objects/genC.def \ - disk.def drive.def uDialog.def Objects/gInterC.def \ - token.def Objects/clipbrd.def Objects/gSysC.def \ - Objects/gProcC.def alb.def Objects/gFieldC.def \ - Objects/gScreenC.def Objects/gFSelC.def \ - Objects/gViewC.def Objects/gContC.def Objects/gCtrlC.def \ - Objects/gDocC.def Objects/gDocCtrl.def \ - Objects/gDocGrpC.def Objects/gEditCC.def \ - Objects/gViewCC.def Objects/gToolCC.def \ - Objects/gPageCC.def Objects/gPenICC.def \ - Objects/gGlyphC.def Objects/gTrigC.def \ - Objects/gBoolGC.def Objects/gItemGC.def \ - Objects/gDListC.def Objects/gItemC.def Objects/gBoolC.def \ - Objects/gDispC.def Objects/gDCtrlC.def Objects/gPrimC.def \ - Objects/gAppC.def Objects/gTextC.def Objects/gGadgetC.def \ - Objects/gValueC.def Objects/gToolGC.def \ - Internal/gUtils.def Objects/helpCC.def Objects/eMenuC.def \ - Objects/emomC.def Objects/emTrigC.def Internal/uProcC.def \ - product.def iimpgif.def bitmap.def hugearr.def impgif.asm \ - Internal/heapInt.def Internal/semInt.def sysstats.def -impgraph.obj \ -impgraph.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ - Objects/inputC.goh Objects/clipbrd.goh \ - Objects/uiInputC.goh iacp.goh Objects/winC.goh \ - Objects/gProcC.goh alb.goh Objects/processC.goh \ - Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ - Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ - Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ - Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ - Objects/gCtrlC.goh gcnlist.goh spool.goh \ - Objects/gFSelC.goh Objects/gGlyphC.goh \ - Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ - Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ - Objects/gEditCC.goh Objects/gBoolGC.goh \ - Objects/gItemGC.goh Objects/gDListC.goh \ - Objects/gItemC.goh Objects/gBoolC.goh \ - Objects/gGadgetC.goh Objects/gToolCC.goh \ - Objects/gValueC.goh Objects/gToolGC.goh \ - Objects/helpCC.goh STATBAR/statbar.goh impex.goh -impgraph.obj \ -impgraph.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ - graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ - dbase.h localize.h Ansi/ctype.h timedate.h file.h \ - sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ - disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ - Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ - driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ - parallDr.h hugearr.h fileEnum.h initfile.h htmldrv.h \ - product.h math.h htmlfstr.h awatcher.h htmlprog.h \ - IMPBMP/impgif.h IMPBMP/ibcommon.h IMPBMP/impjpeg.h \ - ieCommon.h xlatLib.h Ansi/string.h -awatcher.obj \ -awatcher.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ - Objects/inputC.goh Objects/clipbrd.goh \ - Objects/uiInputC.goh iacp.goh Objects/winC.goh \ - Objects/gProcC.goh alb.goh Objects/processC.goh \ - Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ - Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ - Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ - Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ - Objects/gCtrlC.goh gcnlist.goh spool.goh \ - Objects/gFSelC.goh Objects/gGlyphC.goh \ - Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ - Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ - Objects/gEditCC.goh Objects/gBoolGC.goh \ - Objects/gItemGC.goh Objects/gDListC.goh \ - Objects/gItemC.goh Objects/gBoolC.goh \ - Objects/gGadgetC.goh Objects/gToolCC.goh \ - Objects/gValueC.goh Objects/gToolGC.goh \ - Objects/helpCC.goh -awatcher.obj \ -awatcher.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ - graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ - dbase.h localize.h Ansi/ctype.h timedate.h file.h \ - sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ - disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ - Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ - driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ - parallDr.h hugearr.h fileEnum.h awatcher.h -impfjpeg.obj \ -impfjpeg.eobj: -impfjpeg.obj \ -impfjpeg.eobj: impfjpeg.cpp -impgifc.obj \ -impgifc.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ - Objects/inputC.goh Objects/clipbrd.goh \ - Objects/uiInputC.goh iacp.goh Objects/winC.goh \ - Objects/gProcC.goh alb.goh Objects/processC.goh \ - Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ - Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ - Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ - Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ - Objects/gCtrlC.goh gcnlist.goh spool.goh \ - Objects/gFSelC.goh Objects/gGlyphC.goh \ - Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ - Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ - Objects/gEditCC.goh Objects/gBoolGC.goh \ - Objects/gItemGC.goh Objects/gDListC.goh \ - Objects/gItemC.goh Objects/gBoolC.goh \ - Objects/gGadgetC.goh Objects/gToolCC.goh \ - Objects/gValueC.goh Objects/gToolGC.goh \ - Objects/helpCC.goh Ansi/stdio.h IMPBMP/impgif.h \ - Ansi/string.h ec.h -impgifc.obj \ -impgifc.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ - graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ - dbase.h localize.h Ansi/ctype.h timedate.h file.h \ - sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ - disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ - Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ - driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ - parallDr.h hugearr.h fileEnum.h IMPBMP/ibcommon.h \ - product.h htmldrv.h math.h htmlfstr.h awatcher.h \ - htmlprog.h -impjpeg.obj \ -impjpeg.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ - Objects/inputC.goh Objects/clipbrd.goh \ - Objects/uiInputC.goh iacp.goh Objects/winC.goh \ - Objects/gProcC.goh alb.goh Objects/processC.goh \ - Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ - Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ - Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ - Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ - Objects/gCtrlC.goh gcnlist.goh spool.goh \ - Objects/gFSelC.goh Objects/gGlyphC.goh \ - Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ - Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ - Objects/gEditCC.goh Objects/gBoolGC.goh \ - Objects/gItemGC.goh Objects/gDListC.goh \ - Objects/gItemC.goh Objects/gBoolC.goh \ - Objects/gGadgetC.goh Objects/gToolCC.goh \ - Objects/gValueC.goh Objects/gToolGC.goh \ - Objects/helpCC.goh IMPBMP/impjpeg.h htmldrv.h -impjpeg.obj \ -impjpeg.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ - graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ - dbase.h localize.h Ansi/ctype.h timedate.h file.h \ - sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ - disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ - Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ - driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ - parallDr.h hugearr.h fileEnum.h Ansi/stdio.h jpeglib.h \ - product.h htmlprog.h jconfig.h jmorecfg.h Ansi/string.h \ - Ansi/stdlib.h IMPBMP/ibcommon.h htmldrv.h math.h \ - htmlfstr.h awatcher.h initfile.h - +ASMIMP.obj \ +ASMIMP.eobj: ASMIMP/asmimpManager.asm \ + stdapp.def geos.def geode.def resource.def ec.def lmem.def \ + object.def graphics.def fontID.def font.def color.def \ + gstring.def text.def char.def heap.def ui.def file.def \ + vm.def win.def input.def hwr.def localize.def sllang.def \ + Objects/processC.def Objects/metaC.def chunkarr.def \ + geoworks.def gcnlist.def timedate.def \ + Objects/Text/tCommon.def stylesh.def iacp.def \ + Objects/uiInputC.def Objects/visC.def Objects/vCompC.def \ + Objects/vCntC.def Internal/vUtils.def Objects/genC.def \ + disk.def drive.def uDialog.def Objects/gInterC.def \ + token.def Objects/clipbrd.def Objects/gSysC.def \ + Objects/gProcC.def alb.def Objects/gFieldC.def \ + Objects/gScreenC.def Objects/gFSelC.def \ + Objects/gViewC.def Objects/gContC.def Objects/gCtrlC.def \ + Objects/gDocC.def Objects/gDocCtrl.def \ + Objects/gDocGrpC.def Objects/gEditCC.def \ + Objects/gViewCC.def Objects/gToolCC.def \ + Objects/gPageCC.def Objects/gPenICC.def \ + Objects/gGlyphC.def Objects/gTrigC.def \ + Objects/gBoolGC.def Objects/gItemGC.def \ + Objects/gDListC.def Objects/gItemC.def Objects/gBoolC.def \ + Objects/gDispC.def Objects/gDCtrlC.def Objects/gPrimC.def \ + Objects/gAppC.def Objects/gTextC.def Objects/gGadgetC.def \ + Objects/gValueC.def Objects/gToolGC.def \ + Internal/gUtils.def Objects/helpCC.def Objects/eMenuC.def \ + Objects/emomC.def Objects/emTrigC.def Internal/uProcC.def \ + product.def iimpgif.def bitmap.def hugearr.def impgif.asm \ + Internal/heapInt.def Internal/semInt.def sysstats.def +impfjpeg.obj \ +impfjpeg.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh IMPBMP/impjpeg.h htmldrv.h +impfjpeg.obj \ +impfjpeg.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h Ansi/stdio.h \ + Ansi/string.h Ansi/stdlib.h product.h IMPBMP/ibcommon.h \ + htmldrv.h math.h htmlfstr.h awatcher.h htmlprog.h \ + initfile.h +impgifc.obj \ +impgifc.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh Ansi/stdio.h IMPBMP/impgif.h \ + Ansi/string.h ec.h +impgifc.obj \ +impgifc.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h IMPBMP/ibcommon.h \ + product.h htmldrv.h math.h htmlfstr.h awatcher.h \ + htmlprog.h +impjpeg.obj \ +impjpeg.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh IMPBMP/impjpeg.h htmldrv.h +impjpeg.obj \ +impjpeg.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h Ansi/stdio.h jpeglib.h \ + product.h htmlprog.h jconfig.h jmorecfg.h Ansi/string.h \ + Ansi/stdlib.h IMPBMP/ibcommon.h htmldrv.h math.h \ + htmlfstr.h awatcher.h initfile.h +awatcher.obj \ +awatcher.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh +awatcher.obj \ +awatcher.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h awatcher.h +impgraph.obj \ +impgraph.eobj: stdapp.goh object.goh ui.goh Objects/metaC.goh \ + Objects/inputC.goh Objects/clipbrd.goh \ + Objects/uiInputC.goh iacp.goh Objects/winC.goh \ + Objects/gProcC.goh alb.goh Objects/processC.goh \ + Objects/visC.goh Objects/vCompC.goh Objects/vCntC.goh \ + Objects/gAppC.goh Objects/genC.goh Objects/gInterC.goh \ + Objects/gPrimC.goh Objects/gDispC.goh Objects/gTrigC.goh \ + Objects/gViewC.goh Objects/gTextC.goh Objects/vTextC.goh \ + Objects/gCtrlC.goh gcnlist.goh spool.goh \ + Objects/gFSelC.goh Objects/gGlyphC.goh \ + Objects/gDocCtrl.goh Objects/gDocGrpC.goh \ + Objects/gDocC.goh Objects/gContC.goh Objects/gDCtrlC.goh \ + Objects/gEditCC.goh Objects/gBoolGC.goh \ + Objects/gItemGC.goh Objects/gDListC.goh \ + Objects/gItemC.goh Objects/gBoolC.goh \ + Objects/gGadgetC.goh Objects/gToolCC.goh \ + Objects/gValueC.goh Objects/gToolGC.goh \ + Objects/helpCC.goh STATBAR/statbar.goh impex.goh +impgraph.obj \ +impgraph.eobj: geos.h heap.h geode.h resource.h ec.h object.h lmem.h \ + graphics.h fontID.h font.h color.h gstring.h timer.h vm.h \ + dbase.h localize.h Ansi/ctype.h timedate.h file.h \ + sllang.h system.h geoworks.h chunkarr.h Objects/helpCC.h \ + disk.h drive.h input.h char.h hwr.h win.h uDialog.h \ + Objects/gInterC.h Objects/Text/tCommon.h stylesh.h \ + driver.h thread.h print.h Internal/spoolInt.h serialDr.h \ + parallDr.h hugearr.h fileEnum.h initfile.h htmldrv.h \ + product.h math.h htmlfstr.h awatcher.h htmlprog.h \ + IMPBMP/impgif.h IMPBMP/ibcommon.h IMPBMP/impjpeg.h \ + ieCommon.h xlatLib.h Ansi/string.h + impgraphEC.geo impgraph.geo : geos.ldf ansic.ldf ijgjpeg.ldf \ No newline at end of file diff --git a/Library/Breadbox/ImpGraph/FJPEGDBCS/is_a_product b/Library/Breadbox/ImpGraph/FJPEGDBCS/is_a_product deleted file mode 100644 index e69de29bb..000000000 diff --git a/Library/Breadbox/ImpGraph/IMPBMP/impfjpeg.goc b/Library/Breadbox/ImpGraph/IMPBMP/impfjpeg.goc index 4fcd9323a..71bfca467 100644 --- a/Library/Breadbox/ImpGraph/IMPBMP/impfjpeg.goc +++ b/Library/Breadbox/ImpGraph/IMPBMP/impfjpeg.goc @@ -1,16 +1,17 @@ -@ifdef PRODUCT_FJPEG @include -#include -#include <..\..\fjpeg\fjpeg.h> +#include #include -#include -#include -@include "impbmp\impjpeg.h" +#include +#include +@include "IMPBMP/impjpeg.h" #include @include -#include "impbmp\ibcommon.h" +#include "IMPBMP/ibcommon.h" + +@ifdef PRODUCT_FJPEG +#include <../../fjpeg/fjpeg.h> static void ConvertLine(byte *dest, byte *src, word size) { diff --git a/Library/Breadbox/ImpGraph/fjpeg/is_a_product b/Library/Breadbox/ImpGraph/fjpeg/is_a_product deleted file mode 100644 index e69de29bb..000000000 diff --git a/README.md b/README.md index 546781854..b20bfe098 100644 --- a/README.md +++ b/README.md @@ -81,4 +81,4 @@ PC/GEOS comes with extensive technical documentation that describes tools, progr You can find a browseable, searchable version of the documentation here: https://bluewaysw.github.io/pcgeos/ ## -We are on https://bluewaysw.slack.com/ for more efficient collaboration. Please register at https://blog.bluewaysw.de for MyGEOS and use the Slack section and receive access to our developer community. Welcome! +We are on https://discord.com/ for more efficient collaboration. Please register at https://discord.gg/qtMqgZXhf9 for blueway.Softworks or use an existing discord-account to get access to our developer community. Welcome! diff --git a/Tools/build/product/bbxensem/Trans/german/CALENDAR.000 b/Tools/build/product/bbxensem/Trans/german/CALENDAR.000 index f18267115..7dbb16f6d 100644 Binary files a/Tools/build/product/bbxensem/Trans/german/CALENDAR.000 and b/Tools/build/product/bbxensem/Trans/german/CALENDAR.000 differ diff --git a/Tools/build/product/bbxensem/Trans/german/CONTACTS.000 b/Tools/build/product/bbxensem/Trans/german/CONTACTS.000 index d0da3747d..bd173247a 100644 Binary files a/Tools/build/product/bbxensem/Trans/german/CONTACTS.000 and b/Tools/build/product/bbxensem/Trans/german/CONTACTS.000 differ