mirror of
https://github.com/Motion-Project/motion.git
synced 2026-01-10 15:58:26 -05:00
24 lines
610 B
C
24 lines
610 B
C
/*
|
|
* webhttpd.h
|
|
*
|
|
* Include file for webhttpd.c
|
|
*
|
|
* Specs : http://www.lavrsen.dk/foswiki/bin/view/Motion/MotionHttpAPI
|
|
*
|
|
* Copyright 2004-2005 by Angel Carpintero (ack@telefonica.net)
|
|
* This software is distributed under the GNU Public License Version 2
|
|
* See also the file 'COPYING'.
|
|
*
|
|
*/
|
|
#ifndef _INCLUDE_WEBHTTPD_H_
|
|
#define _INCLUDE_WEBHTTPD_H_
|
|
|
|
#include "motion.h"
|
|
|
|
#define FOSWIKI_URL "http://www.lavrsen.dk/foswiki/bin/view/Motion/MotionGuideAlphabeticalOptionReferenceManual"
|
|
|
|
void * motion_web_control(void *arg);
|
|
void httpd_run(struct context **);
|
|
|
|
#endif
|