Ignore:
Timestamp:
Oct 2, 2023, 11:34:35 PM (23 months ago)
Author:
gyoung
Message:

Remaining changes from merge with Lars 2.9 branch

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/mediafolder/c/helper/cddbhelper.cpp

    r57 r104  
    3838 */
    3939
    40 void extern printError(char* errorString)
     40void printError(char* errorString)
    4141{
    4242    char buffer[CCHMAXPATH] = {0};
     
    5555}
    5656
    57 void extern printErrorCR(char* errorString)
     57void printErrorCR(char* errorString)
    5858{
    5959  fprintf(stderr,"%s\n",errorString);
     
    6363
    6464
    65 void extern printData(char* outString)
     65void printData(char* outString)
    6666{
    6767  int fileHandle;
    6868  int rc;
    6969
    70   /* The name cddbDataFile is defined in the main pmcddb.cpp file. It is 
     70  /* The name cddbDataFile is defined in the main pmcddb.cpp file. It is
    7171     the discid (this is the native format of the data hold by a cddb server) */
    7272  fileHandle=open(cddbDataFile,O_APPEND|O_TEXT|O_WRONLY|O_CREAT,S_IWRITE);
  • trunk/mediafolder/c/helper/except.cpp

    r41 r104  
    455455{
    456456  ULONG rc = XCPT_CONTINUE_SEARCH;
    457  
     457
    458458  if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND)
    459459    return (XCPT_CONTINUE_SEARCH);
     
    495495{
    496496  ULONG rc = XCPT_CONTINUE_SEARCH;
    497  
     497
    498498  if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND)
    499499    return (XCPT_CONTINUE_SEARCH);
     
    502502  if (pERepRec->fHandlerFlags & EH_NESTED_CALL)
    503503    return (XCPT_CONTINUE_SEARCH);
    504  
     504
    505505  if ((pERepRec->ExceptionNum & XCPT_SEVERITY_CODE) == XCPT_FATAL_EXCEPTION)
    506506    {
     
    530530
    531531  return 'c';
    532 } 
     532}
    533533
    534534ULONG APIENTRY HandleFatalException (PEXCEPTIONREPORTRECORD       pERepRec,
     
    641641          }
    642642#endif
    643        
     643
    644644        fAlreadyTrapped = TRUE;
    645645        /* end  John Currier's recursion prevention */
     
    11671167}
    11681168
    1169 #include <exe.h>
    11701169#include <newexe.h>
    11711170#define  FOR_EXEHDR  1  /* avoid define conflicts between newexe.h and exe386.h */
     
    18201819               do {
    18211820                  read(fh,(void *)&FirstLine,sizeof(FirstLine));
    1822    
     1821
    18231822                  if (FirstLine.LineNum!=0) {
    18241823                     fprintf(hTrap,"Missing Line table information\n");
     
    18491848                        }
    18501849                        break;
    1851    
     1850
    18521851                     case 1:
    18531852                        lseek(fh, sizeof(struct linlist_rec), SEEK_CUR);
    18541853                        break;
    1855    
     1854
    18561855                     case 2:
    18571856                        lseek(fh, sizeof(struct linsourcelist_rec), SEEK_CUR);
    18581857                        break;
    1859    
     1858
    18601859                     case 3:
    18611860                        lseek(fh, sizeof(struct filenam_rec), SEEK_CUR);
    18621861                        break;
    1863    
     1862
    18641863                     case 4:
    18651864                        lseek(fh, sizeof(struct pathtab_rec), SEEK_CUR);
    18661865                        break;
    1867    
     1866
    18681867                  }
    18691868               }
  • trunk/mediafolder/c/helper/makefile

    r2 r104  
    44
    55CC           = icc
    6 CPPFLAGS     = /Ge- /Gm+ /G4 /Gl  /O+ /Oc+ /Ol- /Q+ $(VACDEBUG)
    7                  
     6CPPFLAGS     = /Ge- /Gm+ /G4 /Gl- /O+ /Oc+ /Ol- /Q+ $(VACDEBUG)
     7
    88INC     =       ..\include
    9 DEFS         = 
    10 PROGS        = 
     9DEFS         =
     10PROGS        =
    1111ODIR            = ./obj
    1212CPPDIR  = .
Note: See TracChangeset for help on using the changeset viewer.