Enumerations



BOOLX

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.

Constants

NameDescription
NOThe operation has failed.
YESThe operation has succeeded.
NOTYETThe 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)