Subversion Repositories factorylink.mb_plus

Rev

Blame | Last modification | View Log | Download

/*============================================================================
*              Copyright (C) 1994, CYBERLOGIC Technologies Inc.
*=============================================================================
*
* Module Name :
*       netlib.h 
* 
* Abstract:
*       This file should be included by every module that makes calls to
*       functions in the netlib.obj interface library file.
*
* Author:
*       Paul Mikulski
* 
* ---------+-----+-----------------------------------------------------------
*   DATE   | BY  |  DESCRIPTION / REASON FOR MODIFICATION
* ---------+-----+-----------------------------------------------------------
* 03-09-94 | PM  |  Start of development
* ---------+-----+-----------------------------------------------------------
* ..-..-94 |     |
*==========+=====+==========================================================*/

/*==========================================================================*/
/* Include files
/*==========================================================================*/
#ifndef NETBIOS_INCLUDED
#include "netbios.h"
#endif

/*==========================================================================*/
/* Function prototypes
/*==========================================================================*/
int
APIENTRY
ncb_reset(
    int adaptno
    );

int
APIENTRY
ncb_sa85off(
    int adaptno
    );

int
APIENTRY
ncb_status(
    PNCB ncbp,
    int adaptno
    );

int
APIENTRY
ncb_send(
    PNCB ncbp,
    int length,
    PCHAR buffer,
    UCHAR timeout
    );

int
APIENTRY
ncb_receive_wait(
    PNCB ncbp,
    PCHAR buffer,
    UCHAR timeout
    );

PNCB
APIENTRY
ncb_open(
    PCHAR name,
    int lan
    );

int
APIENTRY
ncb_receive(
    PNCB ncbp,
    PCHAR buffer
    );

PNCB
APIENTRY
ncb_open(
    PCHAR name,
    int lan
    );

int
APIENTRY
ncb_close(
    PNCB ncbp
    );

int
APIENTRY
ncb_send_datagram(
    PNCB ncbp,
    int length,
    PCHAR buffer,
    UCHAR timeout,
    int adaptno
    );

int
APIENTRY
ncb_receive_datagram(
    PNCB ncbp,
    int node,
    PCHAR buffer,
    UCHAR timeout,
    int adaptno
    );

int
APIENTRY
ncb_cancel(
    PNCB ncbp
    );

int
APIENTRY
ncb_set_slave_login(
    PNCB ncbp,
    UCHAR login_status
    );