/* $Id: SdifPrint.h,v 3.1 1999/03/14 10:57:17 virolle Exp $ * * Copyright (c) 1998 by IRCAM - Centre Pompidou * All rights reserved. * * For any information regarding this and other IRCAM software, please * send email to: * manager@ircam.fr * * * SdifPrint.h * * for message at sdif interpretation * print of structures with some reference * FILE* is usually stdout or stderr * * author: Dominique Virolle 1997 * $Log: SdifPrint.h,v $ * Revision 3.1 1999/03/14 10:57:17 virolle * SdifStdErr add * * Revision 2.1 1998/12/21 18:27:36 schwarz * Inserted copyright message. * * Revision 2.0 1998/11/29 11:42:02 virolle * - New management of interpretation errors. * - Alignement of frames with CNMAT (execpt specials Chunk 1NVT, 1TYP, 1IDS). * _ Sdif Header File has a Sdif format version. * - Matrices order in frames is not important now. (only one occurence of * a Matrix Type in a Frame Type declaration ) * - Hard coded predefined types more dynamic management. * - Standart streams (stdin, stdout, stderr) set as binary for Windows32 to * have exactly the same result on each plateforme. * * Revision 1.3 1998/11/10 15:31:54 schwarz * Removed all 'extern' keywords for prototypes, since this is redundant * (function prototypes are automatically linked extern), and it * prohibits cocoon from generating an entry in the HTML documentation * for this function. * */ #ifndef _SdifPrint_ #define _SdifPrint_ #include "SdifGlobals.h" #include #include "SdifNameValue.h" #include "SdifMatrixType.h" #include "SdifFrameType.h" #include "SdifStreamID.h" #include "SdifMatrix.h" #include "SdifFrame.h" #include "SdifFileStruct.h" /*************** Matrix Type ***************/ void SdifPrintMatrixType(FILE *fw, SdifMatrixTypeT *MatrixType); void SdifPrintAllMatrixType(FILE *fw, SdifFileT *SdifF); /*************** Frame Type ***************/ void SdifPrintFrameType(FILE *fw, SdifFrameTypeT *FrameType); void SdifPrintAllFrameType(FILE *fw, SdifFileT *SdifF); /********** Matrix **********/ void SdifPrintMatrixHeader(FILE *f, SdifMatrixHeaderT *MatrixHeader); void SdifPrintOneRow(FILE *f, SdifOneRowT *OneRow); void SdifPrintMatrixRows(FILE* f, SdifMatrixDataT *MatrixData); /********** Frame ***********/ void SdifPrintFrameHeader(FILE *f, SdifFrameHeaderT* FrameHeader); /************ High ***********/ void SdifPrintAllType(FILE *fw, SdifFileT *SdifF); #endif /* _SdifPrint_ */