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: * This sensor is used for all sensors that are not supported on a * particular device. Rather than requiring the device to determine * if the sensor is supported each time asked, it simply uses * this dummy sensor which returns ErrUNSUPPORTED for all member functions * * REVISIONS: * pcy29Jan93: Added to SCCS * pcy29Jan93: Needs a newline at the end of the file * jps14Jul94: added stdlib for os2 * */ #define INCL_BASE
#define INCL_NOPM
#include "cdefine.h"
extern "C" { #if (C_OS & C_OS2)
#include <stdlib.h>
#endif
}
#include "unssens.h"
UnsupportedSensor _theUnsupportedSensor;
|