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.
|
|
/*
* * NOTES: * * REVISIONS: * ker02DEC92: Initial breakout of sensor classes into indiv files * pcy14Dec92: Changed READ_WRITE to AREAD_WRITE * */
#define INCL_BASE
#define INCL_DOS
#define INCL_NOPM
#include "cdefine.h"
extern "C" { #if (C_OS & C_OS2)
#include <os2.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <malloc.h>
#include <string.h>
}
#include "lobatdur.h"
LowBatteryDurationSensor :: LowBatteryDurationSensor(PDevice aParent, PCommController aCommController) : EepromChoiceSensor(aParent, aCommController, LOW_BATTERY_DURATION, AREAD_WRITE) { getAllowedValues(); setInitialValue(); DeepGet(); }
|