Constructs a full NetWare path name
#include <nwfileio.h>
void _makepath (
char *path,
const char *volume,
const char *dir,
const char *fname,
const char *ext);
(OUT) Points to the string containing the full path name.
(IN) Specifies the volume name.
(IN) Specifies the directory name.
(IN) Specifies the base name of the file without an extension.
(IN) Specifies the file name extension.
The NetWare path name is constructed from the components consisting of a volume name, directory path, file name, and file name extension. The full path name is placed in the buffer pointed to by the path parameter.
The maximum size required for each buffer is specified by the manifest constants which are defined in the NWDIR.H file.
255 _MAX_PATH
16 _MAX_VOLUME (volume name length)
255 _MAX_DIR
9 _MAX_FNAME
5 _MAX_EXT
See Using _makepath and _splitpath: Example (NDK: Sample Code).