Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 2001 Microsoft Corporation
Module Name :
updateini.h
Abstract:
High level function to update the ini with new values
Author:
Christopher Achille (cachille)
Project:
URLScan Update
Revision History: March 2002: Created
--*/
#define SETTINGS_MAXLINES 10
#define SECTIONS_MAXLINES 40
struct sURLScan_Settings { LPWSTR szSection; LPWSTR szSettingName; LPWSTR szLines[SETTINGS_MAXLINES]; };
struct sURLScan_Items { LPWSTR szSection; LPWSTR szSettingName; LPWSTR szLines[SETTINGS_MAXLINES]; };
struct sURLScan_Sections { LPWSTR szSection; LPWSTR szLines[SECTIONS_MAXLINES]; };
BOOL UpdateIni( LPTSTR szUrlScanPath ); BOOL GetIniPath( LPTSTR szDllPath, LPTSTR szIniPath, DWORD dwIniLen );
|