12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef LISTREMOTEDEVICES_SOURCE
- #define LISTREMOTEDEVICES_SOURCE
- #include "../plc/plc.h"
- signed ListRemoteDevices (struct plc * plc, char const * space, char const * comma)
- {
- return ((plc->hardwareID < CHIPSET_AR7400)? ListRemoteDevices1 (plc, space, comma): ListRemoteDevices2 (plc, space, comma));
- }
- #endif
|