home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐1998 - Modelworks Software
- // @Modified build 239 cm19981207 - added document comment
-
- /**
- @Notify: onPrestartupIdlFiles~adds support idl file types.
- @EndTool:
- @Summary: onPrestartupIdlFiles~adds support idl file types
- */
-
- function OnNotify()
- {
- var output = getOutput();
- var logEvents = getGlobal("LogEvents", false);
- if (logEvents)
- {
- output.writeLine("Running onPreStartupIdlFiles");
- }
-
- doctemp = Application.createDocumentType("Idl Corba file", "",
- "IDL Interfaces (*.idl)", ".idl", "", "Idl");
- doctemp.setEOLComment("//");
- doctemp.setDelimiters("{", "}");
- doctemp.setMultilineComment("/*", "*/");
-
- }
-
- function DoCommand()
- {
- OnNotify();
- }
-
-
- !!/Script
-
-