Subversion Repositories HomeAutomation

Rev

Rev 363 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*********************************************************************
  2.  *
  3.  *  NetBIOS Name Service (NBNS) Server
  4.  *   -Responds to NBNS name requests to allow human name assignment
  5.  *    to the board
  6.  *
  7.  *********************************************************************
  8.  * FileName:        NBNS.h
  9.  * Dependencies:    UDP, ARP, Tick
  10.  * Processor:       PIC18, PIC24F, PIC24H, dsPIC30F, dsPIC33F
  11.  * Complier:        Microchip C18 v3.02 or higher
  12.  *                  Microchip C30 v2.01 or higher
  13.  * Company:         Microchip Technology, Inc.
  14.  *
  15.  * Software License Agreement
  16.  *
  17.  * This software is owned by Microchip Technology Inc. ("Microchip")
  18.  * and is supplied to you for use exclusively as described in the
  19.  * associated software agreement.  This software is protected by
  20.  * software and other intellectual property laws.  Any use in
  21.  * violation of the software license may subject the user to criminal
  22.  * sanctions as well as civil liability.  Copyright 2006 Microchip
  23.  * Technology Inc.  All rights reserved.
  24.  *
  25.  * This software is provided "AS IS."  MICROCHIP DISCLAIMS ALL
  26.  * WARRANTIES, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, NOT LIMITED
  27.  * TO MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
  28.  * INFRINGEMENT.  Microchip shall in no event be liable for special,
  29.  * incidental, or consequential damages.
  30.  *
  31.  *
  32.  * Author               Date    Comment
  33.  *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34.  * Howard Schlunder     8/02/06 Original
  35.  ********************************************************************/
  36. #ifndef NBNS_H
  37. #define NBNS_H
  38.  
  39.  
  40. void NBNSTask(void);
  41.  
  42.  
  43. #endif
  44.