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.
37 lines
412 B
37 lines
412 B
/*++
|
|
|
|
Copyright (c) 1989-2001 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
dgram.h
|
|
|
|
Abstract:
|
|
|
|
Datagram service
|
|
|
|
Author:
|
|
|
|
Jiandong Ruan
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef __DGRAM_H__
|
|
#define __DGRAM_H__
|
|
|
|
|
|
NTSTATUS
|
|
SmbSendDatagram(
|
|
PSMB_DEVICE Device,
|
|
PIRP Irp
|
|
);
|
|
|
|
NTSTATUS
|
|
SmbReceiveDatagram(
|
|
PSMB_DEVICE Device,
|
|
PIRP Irp
|
|
);
|
|
|
|
#endif
|