[GME-commit] GMESRC/GME/Interfaces InterfaceVersion.h,1.38,1.39
MgaUtil.idl,1.30,1.31 Parser.idl,1.4,1.5
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Thu Apr 8 14:02:58 CDT 2004
- Previous message: [GME-commit] GMESRC/GME/Gme GMEApp.cpp,1.110,1.111
- Next message: [GME-commit] GMESRC/GME/MgaUtil MgaXsltFileSel.rgs,NONE,1.1
XsltDial.cpp,NONE,1.1 XsltDial.h,NONE,1.1 XsltFileSel.cpp,NONE,1.1
XsltFileSel.h,NONE,1.1 MgaUtil.dsp,1.21,1.22 MgaUtil.rc,1.33,1.34
MgaUtilApp.cpp,1.6,1.7 MgaUtilLib.idl,1.5,1.6 resource.h,1.20,1.21
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/gme/GMESRC/GME/Interfaces
In directory braindrain:/tmp/cvs-serv26784/Interfaces
Modified Files:
InterfaceVersion.h MgaUtil.idl Parser.idl
Log Message:
Adding XSLT related files into MgaUtil and Parser.
Interfaces changed: Parser.idl, MgaUtil.idl
Modified Files:
Common/CommonError.h Gme/GMEApp.cpp
Interfaces/InterfaceVersion.h Interfaces/MgaUtil.idl
Interfaces/Parser.idl MgaUtil/MgaUtil.dsp MgaUtil/MgaUtil.rc
MgaUtil/MgaUtilApp.cpp MgaUtil/MgaUtilLib.idl
MgaUtil/resource.h Parser/Parser.cpp Parser/Parser.dsp
Parser/Parser.rc Parser/ParserLib.idl Parser/resource.h
Added Files:
MgaUtil/MgaXsltFileSel.rgs MgaUtil/XsltDial.cpp
MgaUtil/XsltDial.h MgaUtil/XsltFileSel.cpp
MgaUtil/XsltFileSel.h Parser/MgaXslt.cpp Parser/MgaXslt.h
Parser/MgaXslt.rgs
CVS User: zolmol
Index: InterfaceVersion.h
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Interfaces/InterfaceVersion.h,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -d -r1.38 -r1.39
*** InterfaceVersion.h 9 Mar 2004 22:15:50 -0000 1.38
--- InterfaceVersion.h 8 Apr 2004 18:02:55 -0000 1.39
***************
*** 6,13 ****
// CHECKSUM Meta.idl = 0CCCDDE1
// CHECKSUM Mga.idl = 2796B781
! // CHECKSUM MgaUtil.idl = E58FFC82
// CHECKSUM MgaDecorator.idl = E2851BB1
// CHECKSUM Gme.idl = 577FEF8D
! // CHECKSUM Parser.idl = 69400F82
--- 6,13 ----
// CHECKSUM Meta.idl = 0CCCDDE1
// CHECKSUM Mga.idl = 2796B781
! // CHECKSUM MgaUtil.idl = 067F5F71
// CHECKSUM MgaDecorator.idl = E2851BB1
// CHECKSUM Gme.idl = 577FEF8D
! // CHECKSUM Parser.idl = D66BAFDC
***************
*** 18,22 ****
// -- never decrease it
cpp_quote("#ifndef INTERFACE_VERSION")
! cpp_quote("#define INTERFACE_VERSION 0x0002001B")
cpp_quote("#endif //INTERFACE_VERSION")
! #define INTERFACE_VERSION 0x0002001B
--- 18,22 ----
// -- never decrease it
cpp_quote("#ifndef INTERFACE_VERSION")
! cpp_quote("#define INTERFACE_VERSION 0x0002001C")
cpp_quote("#endif //INTERFACE_VERSION")
! #define INTERFACE_VERSION 0x0002001C
Index: MgaUtil.idl
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Interfaces/MgaUtil.idl,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** MgaUtil.idl 2 Mar 2004 21:51:27 -0000 1.30
--- MgaUtil.idl 8 Apr 2004 18:02:55 -0000 1.31
***************
*** 395,396 ****
--- 395,410 ----
};
+ [
+ object,
+ uuid(4B3E98D4-96AF-4640-B947-7555E2E6A60B),
+ helpstring("IMgaXsltFileSel Interface"),
+ pointer_default(unique)
+ ]
+ interface IMgaXsltFileSel : IUnknown //IDispatch
+ {
+ [helpstring("method StartXslt")]
+ HRESULT StartXslt( [in] BSTR in_f, [out] BSTR *out_f);
+
+ };
+
+ //0B989672-7179-46ba-9352-D1EDB0222B7E
\ No newline at end of file
Index: Parser.idl
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Interfaces/Parser.idl,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Parser.idl 13 Nov 2001 20:46:00 -0000 1.4
--- Parser.idl 8 Apr 2004 18:02:55 -0000 1.5
***************
*** 62,63 ****
--- 62,75 ----
};
+ [
+ object,
+ uuid(FDE29236-8F66-489d-AE5A-CC789A6E51D6),
+ helpstring("IMgaXslt Interface"),
+ pointer_default(unique)
+ ]
+ interface IMgaXslt : IDispatch
+ {
+ [helpstring("method ApplyXslt")]
+ HRESULT ApplyXslt( [in] BSTR stylesheet, [in] BSTR infile, [in] BSTR outfile/*, [out] BSTR *error_msg*/);
+
+ };
- Previous message: [GME-commit] GMESRC/GME/Gme GMEApp.cpp,1.110,1.111
- Next message: [GME-commit] GMESRC/GME/MgaUtil MgaXsltFileSel.rgs,NONE,1.1
XsltDial.cpp,NONE,1.1 XsltDial.h,NONE,1.1 XsltFileSel.cpp,NONE,1.1
XsltFileSel.h,NONE,1.1 MgaUtil.dsp,1.21,1.22 MgaUtil.rc,1.33,1.34
MgaUtilApp.cpp,1.6,1.7 MgaUtilLib.idl,1.5,1.6 resource.h,1.20,1.21
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list