Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: EthernetNetIf RPCInterface mbed HTTPServer
Diff: CmdListObjects/TList.h
- Revision:
- 0:8b3857d4ce02
diff -r 000000000000 -r 8b3857d4ce02 CmdListObjects/TList.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/CmdListObjects/TList.h Mon Apr 16 09:41:53 2012 +0000
@@ -0,0 +1,23 @@
+//---------------------------------------------------------------------------------------------
+#include "mbed.h"
+//---------------------------------------------------------------------------------------------
+class TList
+{
+ private:
+
+ public:
+ TList *nextobject;
+
+ uint8_t cmdtype;
+ void *cmdobject;
+
+ TList(){};
+};
+//---------------------------------------------------------------------------------------------
+// Global helper function
+//---------------------------------------------------------------------------------------------
+uint8_t GetListCount();
+TList *GetListFirstObject();
+uint8_t DeleteListFirstObject();
+TList *SetListNextObject();
+//---------------------------------------------------------------------------------------------
\ No newline at end of file