typedef enum { NO, YES, NOTYET }
In networking, it is possible for operations not to either succeed or fail, but for them to be not ready to complete just yet. This is a tri-state type to convey success, failure, and pending.
Name Description NO The operation has failed. YES The operation has succeeded. NOTYET The operation can't succeed yet, may never succeed, may fail, but hasn't failed yet.
Generated with HeaderDoc - © 2000 Apple Computer, Inc. (Last Updated 5/10/2004)