David Smart / Mbed 2 deprecated Smart-WiFly-WebServer

Dependencies:   SW_HTTPServer WiflyInterface mbed C12832 IniManager

Committer:
WiredHome
Date:
Sun Sep 01 19:54:42 2013 +0000
Revision:
15:1f2b62130ffb
Parent:
DynamicPages.h@14:85c805890454
Child:
29:14c47d31a9dc
Cleaned up the code, removed some of the debug work.; Hopefully it is easier to follow by others.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
WiredHome 3:b3e21f3306a1 1
WiredHome 3:b3e21f3306a1 2 #ifndef DYNAMICPAGES_H
WiredHome 3:b3e21f3306a1 3 #define DYNAMICPAGES_H
WiredHome 3:b3e21f3306a1 4 #include "mbed.h"
WiredHome 3:b3e21f3306a1 5
WiredHome 3:b3e21f3306a1 6 #include "SW_HTTPServer.h"
WiredHome 3:b3e21f3306a1 7
WiredHome 4:178df829d62b 8 bool SuperSimpleDynamicPage(HTTPServer *svr, HTTPServer::CallBackType type, const char * path, const HTTPServer::namevalue *params, int paramcount);
WiredHome 3:b3e21f3306a1 9 bool SimpleDynamicPage(HTTPServer *svr, HTTPServer::CallBackType type, const char * path, const HTTPServer::namevalue *params, int paramcount);
WiredHome 3:b3e21f3306a1 10
WiredHome 3:b3e21f3306a1 11 bool SimpleDynamicForm(HTTPServer *svr, HTTPServer::CallBackType type, const char * path, const HTTPServer::namevalue *params, int paramcount);
WiredHome 3:b3e21f3306a1 12
WiredHome 4:178df829d62b 13 #endif // DYNAMICPAGES_H