Changeset 120


Ignore:
Timestamp:
Dec 5, 2004, 1:15:13 AM (21 years ago)
Author:
root
Message:

Optimze strippers
Drop avv local functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/fm3dll.h

    r88 r120  
    99  Copyright (c) 2001, 2004 Steven H.Levine
    1010
    11   Revisions     12 Feb 03 SHL - Add CBLIST_TO_EASIZE
    12                 11 Jun 03 SHL - Add JFS and FAT32 support
    13                 06 Jan 04 SHL - Drop hundfmt
     11  Revisions     12 Feb 03 SHL Add CBLIST_TO_EASIZE
     12                11 Jun 03 SHL Add JFS and FAT32 support
     13                06 Jan 04 SHL Drop hundfmt
     14                01 Aug 04 SHL Optimze strippers
     15                01 Aug 04 SHL Drop avv local functions
    1416
    1517***********************************************************************/
     
    547549
    548550/* error.c */
    549 VOID General_Error  (HAB hab,HWND hwnd, PSZ ErrModule,LONG ErrLine,
     551VOID General_Error  (HAB hab,HWND hwndOwner, PSZ ErrModule,LONG ErrLine,
    550552                     CHAR *s,...);
    551 INT Dos_Error       (INT type,ULONG Error,HWND hwnd, PSZ ErrModule,
     553INT Dos_Error       (INT type,ULONG Error,HWND hwndOwner, PSZ ErrModule,
    552554                     LONG ErrLine,CHAR *s,...);
    553555
     
    701703
    702704/* strips.c */
    703 char * strip_lead_char (char *strip,char *a);
    704 char * strip_trail_char (char *strip,char *a);
     705void strip_lead_char (char *pszStripChars,char *pszSrc);
     706void strip_trail_char (char *pszStripChars,char *pszSrc);
    705707#define lstrip(s)         strip_lead_char(" \t",(s))
    706708#define rstrip(s)         strip_trail_char(" \t",(s))
    707709#define stripcr(s)        strip_trail_char("\r\n",(s))
     710// Strip leading and trailing white
     711#define bstrip(s)         (strip_lead_char(" \t",(s)),strip_trail_char(" \t",(s)))
     712// Strip leading and trailing white and trail cr/nl
     713#define bstripcr(s)       (strip_lead_char(" \t",(s)),strip_trail_char("\r\n \t",(s)))
    708714
    709715/* delims.c */
     
    739745
    740746/* literal.c */
    741 INT literal (CHAR *fsource);
    742 INT wildcard (const CHAR *fstra,const CHAR *fcarda,const BOOL notfile);
    743 CHAR * fixup (const CHAR *orig,CHAR *dest,const INT maxlen,const INT datalen);
     747UINT literal(PSZ pszBuf);
     748BOOL wildcard(const PSZ pszBuf,const PSZ pszWildCard,const BOOL fNotFileSpec);
     749PSZ fixup (const PCH pachInBuf, PSZ pszOutBuf, const UINT cBufBytes, const UINT cInBytes);
    744750
    745751/* stristr.c */
     
    757763
    758764/* avv.c */
    759 CHAR * assign (CHAR *a,CHAR *b);
    760 CHAR * reassign_from_window (HWND hwnd,USHORT id,char *a);
    761 INT get_int_from_window (HWND hwnd,USHORT id);
    762 LONG get_long_from_window (HWND hwnd,USHORT id);
    763 CHAR * nonull (CHAR *a);
    764 VOID rewrite_archiverbb2 (CHAR *archiverbb2);
    765 CHAR * checkfile (CHAR *file,INT *error);
    766 ULONG checkfile2 (CHAR *file,INT *error);
    767 CHAR *checksayfile (HWND hwnd,CHAR *file,INT *error);
    768 INT check_archiver (HWND hwnd,ARC_TYPE *info);
     765VOID rewrite_archiverbb2(CHAR *archiverbb2);
    769766MRESULT EXPENTRY ArcReviewDlgProc (HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2);
    770767APIRET EditArchiverData (HWND hwnd,DIRCNRDATA *arc);
Note: See TracChangeset for help on using the changeset viewer.