Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
685 B

  1. /*
  2. *
  3. * NOTES:
  4. *
  5. * REVISIONS:
  6. * ker02DEC92: Initial breakout of sensor classes into indiv files
  7. * pcy14Dec92: Changed READ_WRITE to AREAD_WRITE
  8. * pcy26Jan93: I'm a EepromSensor now
  9. */
  10. #define INCL_BASE
  11. #define INCL_DOS
  12. #define INCL_NOPM
  13. #include "cdefine.h"
  14. extern "C" {
  15. #if (C_OS & C_OS2)
  16. #include <os2.h>
  17. #endif
  18. #include <stdlib.h>
  19. #include <stdio.h>
  20. #include <malloc.h>
  21. #include <string.h>
  22. }
  23. #include "battrep.h"
  24. BatteryReplacementDateSensor :: BatteryReplacementDateSensor(PDevice aParent, PCommController aCommController)
  25. : EepromSensor(aParent, aCommController, BATTERY_REPLACEMENT_DATE, AREAD_WRITE)
  26. {
  27. DeepGet();
  28. }