Last change
on this file since 1199 was 1199, checked in by John Small, 17 years ago |
Ticket 187: Set properties and improve comments
|
-
Property svn:eolstyle
set to
native
-
Property svn:keywords
set to
Id
|
File size:
1.0 KB
|
Line | |
---|
1 |
|
---|
2 | /***********************************************************************
|
---|
3 |
|
---|
4 | $Id: pathutil.h 1199 2008-09-11 12:50:28Z jbs $
|
---|
5 |
|
---|
6 | Path handling utility functions
|
---|
7 |
|
---|
8 | Copyright (c) 1993-98 M. Kimes
|
---|
9 | Copyright (c) 2001, 2008 Steven H. Levine
|
---|
10 |
|
---|
11 | 05 Jan 08 SHL Move from fm3dll.h to here
|
---|
12 | 29 Feb 08 GKY Changes to enable user settable command line length
|
---|
13 |
|
---|
14 | ***********************************************************************/
|
---|
15 |
|
---|
16 | #if !defined(PATHUTIL_H)
|
---|
17 |
|
---|
18 | #define PATHUTIL_H
|
---|
19 |
|
---|
20 | #if !defined(OS2_INCLUDED)
|
---|
21 | #include <os2.h>
|
---|
22 | #else
|
---|
23 | #endif
|
---|
24 |
|
---|
25 | PSZ BldFullPathName(PSZ pszFullPathName, PSZ pszPathName, PSZ pszFileName);
|
---|
26 | PSZ BldQuotedFullPathName(PSZ pszFullPathName, PSZ pszPathName, PSZ pszFileName);
|
---|
27 | PSZ BldQuotedFileName(PSZ pszQuotedFileName, PSZ pszFileName);
|
---|
28 | PCSZ NormalizeCmdLine(PSZ pszWorkBuf, PSZ pszCmdLine_);
|
---|
29 |
|
---|
30 | #define MAXCOMLINESTRGDEFAULT (1024) /* used to build command line strings */
|
---|
31 | #define CMDLNLNGTH_MIN (299)
|
---|
32 | #define CMDLNLNGTH_MAX (32768)
|
---|
33 |
|
---|
34 | #ifdef DEFINE_GLOBALS
|
---|
35 | #define DATADEF
|
---|
36 | #else
|
---|
37 | #define DATADEF extern
|
---|
38 | #endif
|
---|
39 |
|
---|
40 | DATADEF ULONG MaxComLineStrg;
|
---|
41 |
|
---|
42 | #endif // PATHUTIL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.