Ejemplo n.º 1
0
BBOOL rtplatform_pwd(char RTSMB_FAR * to, long size)
{
    if (rtp_file_pwd(to, size) < 0)
    {
        return FALSE;
    }
    return TRUE;
}
Ejemplo n.º 2
0
/*----------------------------------------------------------------------*
                             rtp_wfile_pwd
 *----------------------------------------------------------------------*/
int rtp_wfile_pwd (unsigned short * name, long size)
{
	unsigned char realName[32];
	if (rtp_file_pwd ((unsigned char *)realName, size) == -1)
	{
	  return (-1);
	}
	map_ascii_to_unicode((unsigned char *)name, realName);
	return(0);
}