Last change
on this file since 1394 was 1394, checked in by Steven Levine, 17 years ago |
Ticket 340: Convert GetPString to use STRINGTABLE.
Drop fm3dll.str and mkstr.exe from makefiles and wpi builders
Convert many functions to expect PCSZ arguments.
Correct walk, compare and dirsizes dialog setups to ignore saved dialog size
Drop copyright.c logic from makefile
|
-
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 1394 2009-02-05 04:17:25Z stevenhl $
|
---|
5 |
|
---|
6 | Path handling utility functions
|
---|
7 |
|
---|
8 | Copyright (c) 1993-98 M. Kimes
|
---|
9 | Copyright (c) 2001, 2009 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 | #endif
|
---|
23 |
|
---|
24 | PSZ BldFullPathName(PSZ pszFullPathName, PSZ pszPathName, PSZ pszFileName);
|
---|
25 | PSZ BldQuotedFullPathName(PSZ pszFullPathName, PSZ pszPathName, PSZ pszFileName);
|
---|
26 | PSZ BldQuotedFileName(PSZ pszQuotedFileName, PCSZ pszFileName);
|
---|
27 | PCSZ NormalizeCmdLine(PSZ pszWorkBuf, PSZ pszCmdLine_);
|
---|
28 |
|
---|
29 | #define MAXCOMLINESTRGDEFAULT (1024) /* used to build command line strings */
|
---|
30 | #define CMDLNLNGTH_MIN (299)
|
---|
31 | #define CMDLNLNGTH_MAX (32768)
|
---|
32 |
|
---|
33 | #ifdef DEFINE_GLOBALS
|
---|
34 | #define DATADEF
|
---|
35 | #else
|
---|
36 | #define DATADEF extern
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | DATADEF ULONG MaxComLineStrg;
|
---|
40 |
|
---|
41 | #endif // PATHUTIL_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.