Finder-related


Defines

#define NICKNAMESIZE   8
#define NAMESIZE   15
#define CYPETNAMESIZE   7
#define NOT_FOUND   0xFF
#define STR_ICQ_MAX_LENGTH   10

Variables

char own_icq []
char own_icq_visible


Compounds

     struct   cyfolk_tDescribes a person on the Finder's list
     struct   FinderFinder is a resident program; that is, it is always in memory. It's main purpose is to gather information about the Cy-environment
     struct   folk_tDescribes the " You&me/About Me " and " You&me/About You " information
     struct   info_tDescribes the " You&me/Business Card " information
     struct   nfolk_tAdditional information about a person in Finder's list


Detailed Description

With these structures, you can gather information about the Cy-environment (that is, the other people and Cybiko computers in the vicinity). Finder is probably the most important of these structures.


Define Documentation

#define CYPETNAMESIZE   7
 

Maximum length of the Cypet name.

#define NAMESIZE   15
 

Maximum length of the name.

#define NICKNAMESIZE   8
 

Maximum length of the nickname.

#define NOT_FOUND   0xFF
 

Person with the specified parameter not found.

#define STR_ICQ_MAX_LENGTH   10
 

Maximum length of the ICQ number.


Variable Documentation

char own_icq[]
 

ICQ number of the device owner.

       #include <cybiko.h>
       ...
       TRACE("Your ICQ number is %s", own_icq);
       if(own_icq_visible)
       {
         TRACE("Your ICQ number is visible to people around.");
       }
       else
       {
         TRACE("Your ICQ number is not visible to people around.");
       }
       ...

char own_icq_visible
 

ICQ number visibility flag.

       #include <cybiko.h>
       ...
       TRACE("Your ICQ number is %s", own_icq);
       if(own_icq_visible)
       {
         TRACE("Your ICQ number is visible to people around.");
       }
       else
       {
         TRACE("Your ICQ number is not visible to people around.");
       }
       ...