Changeset 120
- Timestamp:
- Dec 5, 2004, 1:15:13 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/fm3dll.h
r88 r120 9 9 Copyright (c) 2001, 2004 Steven H.Levine 10 10 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 14 16 15 17 ***********************************************************************/ … … 547 549 548 550 /* error.c */ 549 VOID General_Error (HAB hab,HWND hwnd , PSZ ErrModule,LONG ErrLine,551 VOID General_Error (HAB hab,HWND hwndOwner, PSZ ErrModule,LONG ErrLine, 550 552 CHAR *s,...); 551 INT Dos_Error (INT type,ULONG Error,HWND hwnd , PSZ ErrModule,553 INT Dos_Error (INT type,ULONG Error,HWND hwndOwner, PSZ ErrModule, 552 554 LONG ErrLine,CHAR *s,...); 553 555 … … 701 703 702 704 /* strips.c */ 703 char * strip_lead_char (char *strip,char *a);704 char * strip_trail_char (char *strip,char *a);705 void strip_lead_char (char *pszStripChars,char *pszSrc); 706 void strip_trail_char (char *pszStripChars,char *pszSrc); 705 707 #define lstrip(s) strip_lead_char(" \t",(s)) 706 708 #define rstrip(s) strip_trail_char(" \t",(s)) 707 709 #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))) 708 714 709 715 /* delims.c */ … … 739 745 740 746 /* 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);747 UINT literal(PSZ pszBuf); 748 BOOL wildcard(const PSZ pszBuf,const PSZ pszWildCard,const BOOL fNotFileSpec); 749 PSZ fixup (const PCH pachInBuf, PSZ pszOutBuf, const UINT cBufBytes, const UINT cInBytes); 744 750 745 751 /* stristr.c */ … … 757 763 758 764 /* 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); 765 VOID rewrite_archiverbb2(CHAR *archiverbb2); 769 766 MRESULT EXPENTRY ArcReviewDlgProc (HWND hwnd,ULONG msg,MPARAM mp1,MPARAM mp2); 770 767 APIRET EditArchiverData (HWND hwnd,DIRCNRDATA *arc);
Note:
See TracChangeset
for help on using the changeset viewer.