Doug Turner wrote: > Suppose that the I have an interface that has a flags attribute (long). > In this interface, I define the first few flags. Then we freeze the > interface. A month later, I want to add a new flag. Can I? > > I am thinking that this change is okay even with a frozen interface - > adding a new flags is okay - changing existing flags is unthinkable. > thoughts?
Adding meaning to one of the flag bits is probably fine, but adding a const to the interface may not be: it will make the typelib change. Mike
