home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / windows / c / bsscdemo / listdem2 / spider.h < prev   
Encoding:
C/C++ Source or Header  |  1993-05-25  |  2.9 KB  |  90 lines

  1. /*
  2.    Copyright (c) 1993 by Barking Spider Software, Inc.  All rights reserved
  3.                                                                            
  4.    Filename...:  spider.h
  5.    
  6.    Version,,,,:  1.0
  7.    
  8.    Language...:  Microsoft C/C++ 7.0
  9.    
  10.    Model......:  Small
  11.    
  12.    Environment:  Microsoft Windows 3.1
  13.                                                                            
  14.    Description:  This source module demonstrates the BSS Tree Control.  It 
  15.                  is a very simple example.  It just creates a tree and
  16.                  provides the minimum support.  One top level window is
  17.                  created similar to the standard GENERIC app.  In the
  18.                  handling of the WM_CREATE message in this window's
  19.                  associated window procedure, the BSS Tree Control is
  20.                  created and a root tree node is inserted into the empty
  21.                  tree along with five children to this node.
  22.                  
  23.                  To close the application, the user selects the Close option
  24.                  in the system menu.
  25.                  
  26.                  The below code shows how to create a list, add nodes, delete
  27.                  nodes and the clean-up process for destroying the list.
  28.                  
  29.                  For more documentation on the BSS Tree/List Control APIs,
  30.                  structures, notifications, and error codes, refer to the
  31.                  header file BSTREE.H.
  32.    Notes......:             
  33.                                                                            
  34.    History....:  
  35.                                                                               
  36.    Author.....:  Peter J. Kaufman
  37. */    
  38.  
  39. static char *szSpider [] = {
  40.   "Ant-mimic Spider",
  41.   "Lynx Spider",
  42.   "Nursery-web Spider",
  43.   "Orb Weaver",
  44.   "Barn Spider",
  45.   "Garden Spider",
  46.   "Burrowing Wolf Spider",
  47.   "Desert Tarantula",
  48.   "Carolina Wolf Spider",
  49.   "Turret Spider",
  50.   "California Trapdoor Spider",
  51.   "Black Widow Spider",
  52.   "Daring Jumping Spider",
  53.   "Dimorphic Jumping Spider",
  54.   "Thin-legged Wolf Spider",
  55.   "Metapid Jumping Spider",
  56.   "Inconspicuous Crab Spider",
  57.   "Golden Huntsman Spider",
  58.   "Desert Loxosceles",
  59.   "Selenopid Crab Spider",
  60.   "Brownish-gray Fishing Spider",
  61.   "Rabid Wolf Spider",
  62.   "Six-spotted Fishing Spider",
  63.   "Hammock Spider",
  64.   "Grass Spider",
  65.   "Violin Spider",
  66.   "Wandering Spider",
  67.   "Brown Daddy-long-legs",
  68.   "Spitting Spider",
  69.   "Green Lyssomanes",
  70.   "Green Lynx Spider",
  71.   "Goldenrod Spider",
  72.   "Spider Beetle",
  73.   "Texan Spider Beetle",
  74.   "Bola Spider",
  75.   "Branch-tip Spider",
  76.   "American House Spider",
  77.   "Shamrock Spider",
  78.   "Marbled Orb Weaver",
  79.   "Venusta Orchard Spider",
  80.   "Mabel Orchard Spider",
  81.   "Long-jawed Orb Weaver",
  82.   "Golden-silk Spider",
  83.   "Black-and-yellow Argiope",
  84.   "Silver Argiope",
  85.   "Arrow-shaped Micrathena"
  86.   };
  87.  
  88. /*--------------------------------- EOF -----------------------------------*/
  89.  
  90.