fixed a spelling issue
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1568 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
// File: BitmapStream.h
|
// File: BitmapStream.h
|
||||||
// Class: BBitmapStream
|
// Class: BBitmapStream
|
||||||
// Reimplimented by: Travis Smith, Michael Wilber, Translation Kit Team
|
// Reimplemented by: Travis Smith, Michael Wilber, Translation Kit Team
|
||||||
// Reimplimentation: 2002-04
|
// Reimplementation: 2002-04
|
||||||
//
|
//
|
||||||
// Description: BPositionIO based object to read/write bitmap format to/from
|
// Description: BPositionIO based object to read/write bitmap format to/from
|
||||||
// a BBitmap object.
|
// a BBitmap object.
|
||||||
|
|||||||
@@ -56,30 +56,24 @@ struct translator_info { /* Info about a specific translation*/
|
|||||||
|
|
||||||
// BEGIN: Added by Michael Wilber
|
// BEGIN: Added by Michael Wilber
|
||||||
struct translator_data {
|
struct translator_data {
|
||||||
const char * translatorName;
|
const char *translatorName;
|
||||||
const char * translatorInfo;
|
const char *translatorInfo;
|
||||||
int32 translatorVersion;
|
int32 translatorVersion;
|
||||||
const translation_format * inputFormats;
|
const translation_format *inputFormats;
|
||||||
const translation_format * outputFormats;
|
const translation_format *outputFormats;
|
||||||
|
|
||||||
status_t (*Identify)(
|
status_t (*Identify)(BPositionIO *inSource,
|
||||||
BPositionIO * inSource,
|
const translation_format *inFormat, BMessage *ioExtension,
|
||||||
const translation_format * inFormat,
|
translator_info *outInfo, uint32 outType);
|
||||||
BMessage * ioExtension,
|
|
||||||
translator_info * outInfo,
|
status_t (*Translate)(BPositionIO *inSource,
|
||||||
uint32 outType);
|
const translator_info *inInfo, BMessage *ioExtension,
|
||||||
status_t (*Translate)(
|
uint32 outType, BPositionIO *outDestination);
|
||||||
BPositionIO * inSource,
|
|
||||||
const translator_info * inInfo,
|
status_t (*MakeConfig)(BMessage *ioExtension,
|
||||||
BMessage * ioExtension,
|
BView **outView, BRect *outExtent);
|
||||||
uint32 outType,
|
|
||||||
BPositionIO * outDestination);
|
status_t (*GetConfigMessage)(BMessage *ioExtension);
|
||||||
status_t (*MakeConfig)(
|
|
||||||
BMessage * ioExtension,
|
|
||||||
BView * * outView,
|
|
||||||
BRect * outExtent);
|
|
||||||
status_t (*GetConfigMessage)(
|
|
||||||
BMessage * ioExtension);
|
|
||||||
};
|
};
|
||||||
// END: Added by Michael Wilber
|
// END: Added by Michael Wilber
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
// File: TranslationUtils.h
|
// File: TranslationUtils.h
|
||||||
// Class: BTranslationUtils
|
// Class: BTranslationUtils
|
||||||
// Reimplimented by: Michael Wilber, Translation Kit Team
|
// Reimplemented by: Michael Wilber, Translation Kit Team
|
||||||
// Reimplimentation: 2002-04
|
// Reimplementation: 2002-04
|
||||||
//
|
//
|
||||||
// Description: Utility functions for the Translation Kit
|
// Description: Utility functions for the Translation Kit
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
// File: Translator.h
|
// File: Translator.h
|
||||||
// Class: BTranslator
|
// Class: BTranslator
|
||||||
// Reimplimented by: Michael Wilber, Translation Kit Team
|
// Reimplemented by: Michael Wilber, Translation Kit Team
|
||||||
// Reimplimentation: 2002-06-15
|
// Reimplementation: 2002-06-15
|
||||||
//
|
//
|
||||||
// Description: This file contains the BTranslator class, the base class for
|
// Description: This file contains the BTranslator class, the base class for
|
||||||
// all translators that don't use the BeOS R4/R4.5 add-on method.
|
// all translators that don't use the BeOS R4/R4.5 add-on method.
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
/*****************************************************************************/
|
/*****************************************************************************/
|
||||||
// File: TranslatorRoster.h
|
// File: TranslatorRoster.h
|
||||||
// Class: BTranslatorRoster
|
// Class: BTranslatorRoster
|
||||||
// Reimplimented by: Michael Wilber, Translation Kit Team
|
// Reimplemented by: Michael Wilber, Translation Kit Team
|
||||||
// Reimplimentation: 2002-06-11
|
// Reimplementation: 2002-06-11
|
||||||
//
|
//
|
||||||
// Description: This class is the guts of the translation kit, it makes the
|
// Description: This class is the guts of the translation kit, it makes the
|
||||||
// whole thing happen. It bridges the applications using this
|
// whole thing happen. It bridges the applications using this
|
||||||
|
|||||||
Reference in New Issue
Block a user