home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Beijing Paradise BBS Backup
/
PARADISE.ISO
/
software
/
BBSDOORW
/
NETCLB35.ZIP
/
NETCLB35.EXE
/
INCLUDE
/
NWGENERL.H
< prev
next >
Wrap
C/C++ Source or Header
|
1996-01-03
|
534b
|
24 lines
#ifndef NWGENERL_H
#define NWGENERL_H
/**********************/
/* General prototypes */
/**********************/
#ifdef __cplusplus
extern "C" {
#endif
int GetNetwareVersion(int *supportedConns);
void ConvertIntToNWInt(int in,nw_int *out);
void ConvertLongToNWLong(unsigned long in,
nw_long *out);
int ConvertNWIntToInt(nw_int in);
long ConvertNWLongToLong(nw_long *in);
void HexToChar(char *destination,
byte *source,word count);
#ifdef __cplusplus
}
#endif
#endif