office-gobmx/idlc/test/enum.idl

25 lines
176 B
Text
Raw Normal View History

2001-03-15 05:25:06 -06:00
module idlc
{
module test
{
enum Error
{
NONE,
FATAL,
SYSTEM,
RUNTIME
};
enum Warning
{
NO,
USER = 2,
WRONGPASSWORD = 4,
IDFAILURE
};
};
};