ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/video.cpp
(Generate patch)

Comparing SheepShaver/src/video.cpp (file contents):
Revision 1.9 by gbeauche, 2004-11-13T14:09:15Z vs.
Revision 1.10 by gbeauche, 2004-12-19T09:01:04Z

# Line 889 | Line 889 | int16 VideoDoDriverIO(uint32 spaceID, ui
889                                  delete private_data->gammaTable;
890                          delete private_data;
891  
892 <                        iocic_tvect = (uint32)FindLibSymbol("\021DriverServicesLib", "\023IOCommandIsComplete");
892 >                        iocic_tvect = FindLibSymbol("\021DriverServicesLib", "\023IOCommandIsComplete");
893                          D(bug("IOCommandIsComplete TVECT at %08lx\n", iocic_tvect));
894                          if (iocic_tvect == 0) {
895                                  printf("FATAL: VideoDoDriverIO(): Can't find IOCommandIsComplete()\n");
896                                  err = -1;
897                                  break;
898                          }
899 <                        vslnewis_tvect = (uint32)FindLibSymbol("\020VideoServicesLib", "\026VSLNewInterruptService");
899 >                        vslnewis_tvect = FindLibSymbol("\020VideoServicesLib", "\026VSLNewInterruptService");
900                          D(bug("VSLNewInterruptService TVECT at %08lx\n", vslnewis_tvect));
901                          if (vslnewis_tvect == 0) {
902                                  printf("FATAL: VideoDoDriverIO(): Can't find VSLNewInterruptService()\n");
903                                  err = -1;
904                                  break;
905                          }
906 <                        vsldisposeis_tvect = (uint32)FindLibSymbol("\020VideoServicesLib", "\032VSLDisposeInterruptService");
906 >                        vsldisposeis_tvect = FindLibSymbol("\020VideoServicesLib", "\032VSLDisposeInterruptService");
907                          D(bug("VSLDisposeInterruptService TVECT at %08lx\n", vsldisposeis_tvect));
908                          if (vsldisposeis_tvect == 0) {
909                                  printf("FATAL: VideoDoDriverIO(): Can't find VSLDisposeInterruptService()\n");
910                                  err = -1;
911                                  break;
912                          }
913 <                        vsldois_tvect = (uint32)FindLibSymbol("\020VideoServicesLib", "\025VSLDoInterruptService");
913 >                        vsldois_tvect = FindLibSymbol("\020VideoServicesLib", "\025VSLDoInterruptService");
914                          D(bug("VSLDoInterruptService TVECT at %08lx\n", vsldois_tvect));
915                          if (vsldois_tvect == 0) {
916                                  printf("FATAL: VideoDoDriverIO(): Can't find VSLDoInterruptService()\n");
917                                  err = -1;
918                                  break;
919                          }
920 <                        nqdmisc_tvect = (uint32)FindLibSymbol("\014InterfaceLib", "\007NQDMisc");
920 >                        nqdmisc_tvect = FindLibSymbol("\014InterfaceLib", "\007NQDMisc");
921                          D(bug("NQDMisc TVECT at %08lx\n", nqdmisc_tvect));
922                          if (nqdmisc_tvect == 0) {
923                                  printf("FATAL: VideoDoDriverIO(): Can't find NQDMisc()\n");

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines