Reorganizing the repository: swapping out what was HEAD (the old 3.1 branch)
[privoxy.git] / actions.h
similarity index 92%
rename from src/actions.h
rename to actions.h
index c0513ff..3f5c62d 100644 (file)
+++ b/actions.h
@@ -1,9 +1,9 @@
 #ifndef ACTIONS_H_INCLUDED
 #define ACTIONS_H_INCLUDED
-#define ACTIONS_H_VERSION "$Id: actions.h,v 2.0 2002/06/04 14:34:21 jongfoster Exp $"
+#define ACTIONS_H_VERSION "$Id: actions.h,v 1.12 2002/05/06 07:56:50 oes Exp $"
 /*********************************************************************
  *
- * File        :  $Source: /cvsroot/ijbswa/current/src/actions.h,v $
+ * File        :  $Source: /cvsroot/ijbswa/current/Attic/actions.h,v $
  *
  * Purpose     :  Declares functions to work with actions files
  *                Functions declared include: FIXME
@@ -35,9 +35,6 @@
  *
  * Revisions   :
  *    $Log: actions.h,v $
- *    Revision 2.0  2002/06/04 14:34:21  jongfoster
- *    Moving source files to src/
- *
  *    Revision 1.12  2002/05/06 07:56:50  oes
  *    Made actions_to_html independent of FEATURE_CGI_EDIT_ACTIONS
  *
@@ -107,14 +104,12 @@ struct client_state;
 
 
 
-/**
- * This structure is used to hold user-defined aliases
- */
+/* This structure is used to hold user-defined aliases */
 struct action_alias
 {
-   const char * name;            /**< Alias name.  */
-   struct action_spec action[1]; /**< Alias value. */
-   struct action_alias * next;   /**< Next alias in list */
+   const char * name;
+   struct action_spec action[1];
+   struct action_alias * next;
 };