home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
c
/
library
/
mslang
/
fxexpand
/
include
/
fexpand.h
Wrap
C/C++ Source or Header
|
1993-03-03
|
611b
|
23 lines
/*
* File Template Expand - Public Functions
*/
extern char **FileTemplateExpand(
int count, char *templates[],
int ignore_first, int merge_all, int *new_count);
extern char **FileTemplateExpandString(
char *string,
int ignore_first, int merge_all, int *new_count);
extern char **FileTemplateExpandFilter(
int (*filter)(char *),
int count, char *templates[], int ignore_first,
int merge_all, int *new_count);
extern char **FileTemplateExpandFilterString(
int (*filter)(char *),
char *string,
int ignore_first, int merge_all, int *new_count);