DSL
WhereIs.h
1 //@AUTOHEADER@BEGIN@
2 /***********************************************************************\
3 | Drift Standard Libraries v1.01 |
4 | Copyright 2010-2023 Drift Solutions / Indy Sams |
5 | Docs and more information available at https://www.driftsolutions.dev |
6 | This file released under the 3-clause BSD license, |
7 | see included DSL.LICENSE.TXT file for details. |
8 \***********************************************************************/
9 //@AUTOHEADER@END@
10 
20 #define WHEREIS_MAX_RESULTS 256
21 typedef struct {
22  int nCount;
23  char * sResults[WHEREIS_MAX_RESULTS];
25 
26 DSL_API WHEREIS_RESULTS * DSL_CC WhereIs(const char * fn);
27 DSL_API void DSL_CC WhereIs_FreeResults(WHEREIS_RESULTS * ptr);
28