mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
603 B
38 lines
603 B
/*******************************************************************/
|
|
/* Copyright(c) 1993 Microsoft Corporation */
|
|
/*******************************************************************/
|
|
|
|
//***
|
|
//
|
|
// Filename: nbproc.c
|
|
//
|
|
// Description: process netbios propagated packets
|
|
//
|
|
// Author: Stefan Solomon (stefans) October 11, 1993.
|
|
//
|
|
// Revision History:
|
|
//
|
|
//***
|
|
|
|
#include "rtdefs.h"
|
|
|
|
//***
|
|
//
|
|
// Function: ProcessNbPacket
|
|
//
|
|
// Descr:
|
|
//
|
|
// Params: Packet
|
|
//
|
|
// Returns: none
|
|
//
|
|
//***
|
|
|
|
VOID
|
|
ProcessNbPacket(PPACKET_TAG rcvpktp)
|
|
{
|
|
// STUB !!!
|
|
FreeRcvPkt(rcvpktp);
|
|
|
|
return;
|
|
}
|