FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
sys_getshortpath.c
Go to the documentation of this file.
1
#include "../fb.h"
2
#include <windows.h>
3
4
char
*
fb_hGetShortPath
(
char
*src,
char
*dst, ssize_t maxlen )
5
{
6
if
( strchr( src, 32 ) ==
NULL
) {
7
strcpy( dst, src );
8
}
else
{
9
GetShortPathName( src, dst, maxlen );
10
}
11
12
return
dst;
13
}
rtlib
win32
sys_getshortpath.c
Generated on Thu Jan 23 2014 19:40:10 for FreeBASIC by
1.8.4