]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/mprapi.h: Fix header guard. Cleanup.
authorDimitri Papadopoulos <dimitri_at@users.sf.net>
Fri, 12 May 2006 06:22:48 +0000 (06:22 +0000)
committerDimitri Papadopoulos <dimitri_at@users.sf.net>
Fri, 12 May 2006 06:22:48 +0000 (06:22 +0000)
(MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
(MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
(MprAdminConnectionHangupNotification)
(MprAdminConnectionHangupNotification2)
(MprAdminGetIpAddressForUser)(MprAdminInitializeDll)
(MprAdminTerminateDll,MprAdminLinkHangupNotification)
(MprAdminReleaseIpAddress): Declare functions.

winsup/w32api/ChangeLog
winsup/w32api/include/mprapi.h

index 7838caa0613164cd22a1e6e1d6c0af01c69ca80e..7a30233e3f3ee31c261c5509e07b05ef70adcf1d 100644 (file)
@@ -1,3 +1,14 @@
+2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
+
+       * include/mprapi.h: Fix header guard. Cleanup.
+       (MprAdminAcceptNewConnection,MprAdminAcceptNewConnection2)
+       (MprAdminAcceptNewLink,MprAdminAcceptReauthentication)
+       (MprAdminConnectionHangupNotification)
+       (MprAdminConnectionHangupNotification2)
+       (MprAdminGetIpAddressForUser)(MprAdminInitializeDll)
+       (MprAdminTerminateDll,MprAdminLinkHangupNotification)
+       (MprAdminReleaseIpAddress): Declare functions.
+
 2006-05-12  Dimitri Papadopoulos  <papadopo@users.sourceforge.net>
 
        * include/ipifcons.h: Cleanup.
index 9339eab6890d314eda17270bf77ef7ceeb26c629..ae509231ba8c0cfe8aa305f784e69b9d0f5f92d7 100644 (file)
@@ -1,3 +1,17 @@
+/*
+ * mprapi.h - Routing and Remote Access Services
+ *
+ * THIS SOFTWARE IS NOT COPYRIGHTED
+ *
+ * This source code is offered for use in the public domain.  You may use,
+ * modify or distribute it freely.
+ *
+ * This code is distributed in the hope that it will be useful but
+ * WITHOUT ANY WARRANTY.  ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
+ * DISCLAIMED.  This includes but is not limited to warranties of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ */
 #ifndef _MPRAPI_H
 #define _MPRAPI_H
 #if __GNUC__ >= 3
@@ -12,20 +26,6 @@ extern "C" {
 #endif
 
 #if (_WIN32_WINNT >= 0x0500)
-/*--- Remote Access Service Administration Reference - RAS Administration Enumerated Types */
-typedef enum _RAS_HARDWARE_CONDITION {
-       RAS_HARDWARE_OPERATIONAL,
-       RAS_HARDWARE_FAILURE
-} RAS_HARDWARE_CONDITION;
-typedef enum _RAS_PORT_CONDITION {
-       RAS_PORT_NON_OPERATIONAL,
-       RAS_PORT_DISCONNECTED,  
-       RAS_PORT_CALLING_BACK,
-       RAS_PORT_LISTENING,
-       RAS_PORT_AUTHENTICATING,
-       RAS_PORT_AUTHENTICATED, 
-       RAS_PORT_INITIALIZING
-} RAS_PORT_CONDITION;
 /*--- Router Management Reference - Router Management Enumerated Types */
 typedef enum _ROUTER_CONNECTION_STATE {
        ROUTER_IF_STATE_UNREACHABLE,
@@ -55,6 +55,20 @@ typedef enum _ROUTER_INTERFACE_TYPE {
 #define PID_IP 0x00000021
 #define PID_IPX 0x0000002B
 #define PID_NBF 0x0000003F
+/*--- Remote Access Service Administration Reference - RAS Administration Enumerated Types */
+typedef enum _RAS_HARDWARE_CONDITION {
+       RAS_HARDWARE_OPERATIONAL,
+       RAS_HARDWARE_FAILURE
+} RAS_HARDWARE_CONDITION;
+typedef enum _RAS_PORT_CONDITION {
+       RAS_PORT_NON_OPERATIONAL,
+       RAS_PORT_DISCONNECTED,  
+       RAS_PORT_CALLING_BACK,
+       RAS_PORT_LISTENING,
+       RAS_PORT_AUTHENTICATING,
+       RAS_PORT_AUTHENTICATED, 
+       RAS_PORT_INITIALIZING
+} RAS_PORT_CONDITION;
 /*--- Remote Access Service Administration Reference - RAS Administration Structures */
 #define ATADDRESSLEN 32
 typedef struct _PPP_ATCP_INFO {
This page took 0.042327 seconds and 5 git commands to generate.