00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef SQUID_CONFIG_H
00034 #include "config.h"
00035 #endif
00036
00037 #ifndef SQUID_OS_WINDOWS_H
00038 #define SQUID_OS_WINDOWS_H
00039
00040 #ifdef _SQUID_WIN32_
00041
00042 #ifndef ACL
00043 #define ACL WindowsACL
00044 #define _MSWIN_ACL_WAS_NOT_DEFINED 1
00045 #endif
00046 #include <windows.h>
00047 #if _MSWIN_ACL_WAS_NOT_DEFINED
00048 #undef ACL
00049 #undef _MSWIN_ACL_WAS_NOT_DEFINED
00050 #endif
00051
00052 #endif
00053 #endif