home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / kernex32.zip / mwdd_src.zip / 32bits / ext2-os2 / skeleton / ses / sec32_strategy.c < prev    next >
C/C++ Source or Header  |  1997-03-16  |  3KB  |  91 lines

  1. //
  2. // $Header: d:\\32bits\\ext2-os2\\skeleton\\ses\\rcs\\sec32_strategy.c,v 1.2 1997/03/16 13:13:43 Willm Exp $
  3. //
  4.  
  5. // 32 bits OS/2 device driver and IFS support. Provides 32 bits kernel 
  6. // services (DevHelp) and utility functions to 32 bits OS/2 ring 0 code 
  7. // (device drivers and installable file system drivers).
  8. // Copyright (C) 1995, 1996, 1997  Matthieu WILLM (willm@ibm.net)
  9. //
  10. // This program is free software; you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation; either version 2 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program; if not, write to the Free Software
  22. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. #define INCL_DOSERRORS
  25. #define INCL_DOS
  26. #define INCL_NOPMAPI
  27. #include <os2.h>
  28. #include <secure.h>
  29.  
  30. #include <os2/types.h>
  31. #include <os2/devhlp32.h>
  32. #include <reqpkt32.h>
  33.  
  34. #include "sec32.h"
  35.  
  36. static int (*driver_routing_table[32])() = {
  37.     sec32_invalid_command,  // 0 = Init
  38.     sec32_invalid_command,  // 1 = Media Check
  39.     sec32_invalid_command,  // 2 = Build BPB
  40.     sec32_invalid_command,  // 3 = Reserved
  41.     sec32_invalid_command,  // 4 = Read
  42.     sec32_invalid_command,  // 5 = Non-Destruct Read NoWait
  43.     sec32_invalid_command,  // 6 = Input Status
  44.     sec32_invalid_command,  // 7 = Input Flush
  45.     sec32_invalid_command,  // 8 = Write
  46.     sec32_invalid_command,  // 9 = Write w/Verify
  47.     sec32_invalid_command,  // A = Output Status
  48.     sec32_invalid_command,  // B = Output Flush
  49.     sec32_invalid_command,  // C = Reserved
  50.     sec32_open,             // D = Device Open (R/M)
  51.     sec32_close,            // E = Device Close (R/M)
  52.     sec32_invalid_command,  // F = Removable Media (R/M)
  53.     sec32_ioctl,            // 10 = Generic Ioctl
  54.     sec32_invalid_command,  // 11 = Reset Media
  55.     sec32_invalid_command,  // 12 = Get Logical Drive Map
  56.     sec32_invalid_command,  // 13 = Set Logical Drive Map
  57.     sec32_invalid_command,  // 14 = DeInstall
  58.     sec32_invalid_command,  // 15 = 
  59.     sec32_invalid_command,  // 16 = Get # Partitions
  60.     sec32_invalid_command,  // 17 = Get Unit map
  61.     sec32_invalid_command,  // 18 = No caching read
  62.     sec32_invalid_command,  // 19 = No caching write
  63.     sec32_invalid_command,  // 1A = No caching write w/Verify
  64.     sec32_init_base,        // 1B = Initialize
  65.     sec32_shutdown,         // 1C = Shutdown
  66.     sec32_invalid_command,  // 1D = Get DCS/VCS
  67.     sec32_invalid_command,  // 1E = ???
  68.     sec32_init_complete     // 1F = Init Complete
  69. };
  70.  
  71.  
  72. /*
  73.  * This is the 32 bits strategy entry point
  74.  */
  75. int DRV32ENTRY sec32_strategy(PTR16 reqpkt, int index) {
  76.     int status;
  77.  
  78.     if (index < sizeof(driver_routing_table) / sizeof(*driver_routing_table)) {
  79.         /*
  80.          * Valid command received
  81.          */
  82.         status = driver_routing_table[index](reqpkt);
  83.     } else {
  84.         /*
  85.          * Invalid command received
  86.          */
  87.         status = STDON + STERR + ERROR_I24_INVALID_PARAMETER;
  88.     }
  89.     return status;
  90. }
  91.