.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH _fullpath 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fB_fullpath\fR (MSVCRT.@) .SH SYNOPSIS char * CDECL _fullpath ( char* \fIabsPath\fR, const char* \fIrelPath\fR, unsigned int \fIsize\fR ) .SH DESCRIPTION .PP Create an absolute path from a relative path. .SH PARAMS \fIabsPath\fR \fB[Out]\fR Destination for absolute path. .PP \fIrelPath\fR \fB[In]\fR Relative path to convert to absolute. .PP \fIsize\fR \fB[In]\fR Length of \fIabsPath\fR in characters. .PP .SH RETURNS .PP \fBSuccess:\fR If \fIabsPath\fR is \fBNULL\fR, returns an allocated string containing the path. Otherwise populates \fIabsPath\fR with the path and returns it. .PP \fBFailure:\fR \fBNULL\fR. errno indicates the error. .SH IMPLEMENTATION .PP Declared in \fB"tchar.h"\fR. .PP Implemented in \fB"dlls/msvcrt/dir.c"\fR. .PP Debug channel \fB"msvcrt"\fR.