Exclude FATFs from the Webserver project documentation. Rename the functions in the HTTPServerApp.c/.h files so that they use the correct "HTTPServerApp_" prefix, and not "Webserver_".

This commit is contained in:
Dean Camera 2010-02-03 00:48:06 +00:00
parent a96d77eca7
commit 08e8d6393e
6 changed files with 48 additions and 52 deletions

View file

@ -68,14 +68,14 @@
#define HTTP_SERVER_PORT 80
/* Function Prototypes: */
void WebserverApp_Init(void);
void WebserverApp_Callback(void);
void HTTPServerApp_Init(void);
void HTTPServerApp_Callback(void);
#if defined(INCLUDE_FROM_HTTPSERVERAPP_C)
static void Webserver_OpenRequestedFile(void);
static void Webserver_SendResponseHeader(void);
static void Webserver_SendMIMETypeHeader(void);
static void Webserver_SendData(void);
static void HTTPServerApp_OpenRequestedFile(void);
static void HTTPServerApp_SendResponseHeader(void);
static void HTTPServerApp_SendMIMETypeHeader(void);
static void HTTPServerApp_SendData(void);
#endif
#endif