* include/afxres.h: Remove the \r from the line ending.

* include/errorrep.h: Ditto.
	* include/shldisp.h: Ditto.
	* include/tschema.h: Ditto.
	* lib/dhcpcsvc.def: Ditto.
	* lib/uxtheme.def: Ditto.
	* lib/wldap32.def: Ditto.
This commit is contained in:
Earnie Boyd 2005-01-02 14:11:28 +00:00
parent 615c8c8884
commit 94d17419a6
7 changed files with 1061 additions and 1049 deletions

View File

@ -1,3 +1,15 @@
2005-01-02 Earnie Boyd <earnie@users.sf.net>
* include/w32api.h: Increment version.
* Makefile.in: Ditto.
* include/afxres.h: Remove the \r from the line ending.
* include/errorrep.h: Ditto.
* include/shldisp.h: Ditto.
* include/tschema.h: Ditto.
* lib/dhcpcsvc.def: Ditto.
* lib/uxtheme.def: Ditto.
* lib/wldap32.def: Ditto.
2005-01-01 Danny Smith <dannysmith@users.sourceforge.net> 2005-01-01 Danny Smith <dannysmith@users.sourceforge.net>
* include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY): * include/winerror.h (ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY):

View File

@ -1,23 +1,23 @@
#ifndef _AFXRES_H #ifndef _AFXRES_H
#define _AFXRES_H #define _AFXRES_H
#if __GNUC__ >= 3 #if __GNUC__ >= 3
#pragma GCC system_header #pragma GCC system_header
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _WINDOWS_H
#include <windows.h>
#endif #endif
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _WINDOWS_H
#include <windows.h>
#endif
/* IDC_STATIC is documented in winuser.h, but not defined. */ /* IDC_STATIC is documented in winuser.h, but not defined. */
#ifndef IDC_STATIC #ifndef IDC_STATIC
#define IDC_STATIC (-1) #define IDC_STATIC (-1)
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif #endif

View File

@ -1,40 +1,40 @@
#ifndef _ERRORREP_H #ifndef _ERRORREP_H
#define _ERRORREP_H #define _ERRORREP_H
#if __GNUC__ >= 3 #if __GNUC__ >= 3
#pragma GCC system_header #pragma GCC system_header
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#if (_WIN32_WINNT >= 0x0501) #if (_WIN32_WINNT >= 0x0501)
typedef enum { typedef enum {
frrvErr = 3, frrvErr = 3,
frrvErrNoDW = 4, frrvErrNoDW = 4,
frrvErrTimeout = 5, frrvErrTimeout = 5,
frrvLaunchDebugger = 6, frrvLaunchDebugger = 6,
frrvOk = 0, frrvOk = 0,
frrvOkHeadless = 7, frrvOkHeadless = 7,
frrvOkManifest = 1, frrvOkManifest = 1,
frrvOkQueued = 2 frrvOkQueued = 2
} EFaultRepRetVal; } EFaultRepRetVal;
BOOL WINAPI AddERExcludedApplicationA(LPCSTR); BOOL WINAPI AddERExcludedApplicationA(LPCSTR);
BOOL WINAPI AddERExcludedApplicationW(LPCWSTR); BOOL WINAPI AddERExcludedApplicationW(LPCWSTR);
EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS,DWORD); EFaultRepRetVal WINAPI ReportFault(LPEXCEPTION_POINTERS,DWORD);
#endif #endif
#ifdef UNICODE #ifdef UNICODE
#if (_WIN32_WINNT >= 0x0501) #if (_WIN32_WINNT >= 0x0501)
#define AddERExcludedApplication AddERExcludedApplicationW #define AddERExcludedApplication AddERExcludedApplicationW
#endif #endif
#else #else
#if (_WIN32_WINNT >= 0x0501) #if (_WIN32_WINNT >= 0x0501)
#define AddERExcludedApplication AddERExcludedApplicationA #define AddERExcludedApplication AddERExcludedApplicationA
#endif #endif
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif #endif

View File

@ -1,61 +1,61 @@
#ifndef _SHLDISP_H #ifndef _SHLDISP_H
#define _SHLDISP_H #define _SHLDISP_H
#if __GNUC__ >= 3 #if __GNUC__ >= 3
#pragma GCC system_header #pragma GCC system_header
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif
#define ACO_AUTOSUGGEST 0x01 #define ACO_AUTOSUGGEST 0x01
#undef INTERFACE #undef INTERFACE
#define INTERFACE IAutoComplete #define INTERFACE IAutoComplete
DECLARE_INTERFACE_(IAutoComplete, IUnknown) DECLARE_INTERFACE_(IAutoComplete, IUnknown)
{ {
STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE; STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE;
STDMETHOD_(ULONG,AddRef)(THIS) PURE; STDMETHOD_(ULONG,AddRef)(THIS) PURE;
STDMETHOD_(ULONG,Release)(THIS) PURE; STDMETHOD_(ULONG,Release)(THIS) PURE;
STDMETHOD(Init)(THIS_ HWND,IUnknown*,LPCOLESTR,LPCOLESTR) PURE; STDMETHOD(Init)(THIS_ HWND,IUnknown*,LPCOLESTR,LPCOLESTR) PURE;
STDMETHOD(Enable)(THIS_ BOOL) PURE; STDMETHOD(Enable)(THIS_ BOOL) PURE;
}; };
typedef IAutoComplete *LPAUTOCOMPLETE; typedef IAutoComplete *LPAUTOCOMPLETE;
#ifdef COBJMACROS #ifdef COBJMACROS
#define IAutoComplete_QueryInterface(T,a,b) (T)->lpVtbl->QueryInterface(T,a,b) #define IAutoComplete_QueryInterface(T,a,b) (T)->lpVtbl->QueryInterface(T,a,b)
#define IAutoComplete_AddRef(T) (T)->lpVtbl->AddRef(T) #define IAutoComplete_AddRef(T) (T)->lpVtbl->AddRef(T)
#define IAutoComplete_Release(T) (T)->lpVtbl->Release(T) #define IAutoComplete_Release(T) (T)->lpVtbl->Release(T)
#define IAutoComplete_Init(T,a,b,c,d) (T)->lpVtbl->Init(T,a,b,c,d) #define IAutoComplete_Init(T,a,b,c,d) (T)->lpVtbl->Init(T,a,b,c,d)
#define IAutoComplete_Enable(T,a) (T)->lpVtbl->Enable(T,a) #define IAutoComplete_Enable(T,a) (T)->lpVtbl->Enable(T,a)
#endif #endif
#undef INTERFACE #undef INTERFACE
#define INTERFACE IAutoComplete2 #define INTERFACE IAutoComplete2
DECLARE_INTERFACE_(IAutoComplete2, IAutoComplete) DECLARE_INTERFACE_(IAutoComplete2, IAutoComplete)
{ {
STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE; STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE;
STDMETHOD_(ULONG,AddRef)(THIS) PURE; STDMETHOD_(ULONG,AddRef)(THIS) PURE;
STDMETHOD_(ULONG,Release)(THIS) PURE; STDMETHOD_(ULONG,Release)(THIS) PURE;
STDMETHOD(Init)(THIS_ HWND,IUnknown*,LPCOLESTR,LPCOLESTR) PURE; STDMETHOD(Init)(THIS_ HWND,IUnknown*,LPCOLESTR,LPCOLESTR) PURE;
STDMETHOD(Enable)(THIS_ BOOL) PURE; STDMETHOD(Enable)(THIS_ BOOL) PURE;
STDMETHOD(SetOptions)(THIS_ DWORD) PURE; STDMETHOD(SetOptions)(THIS_ DWORD) PURE;
STDMETHOD(GetOptions)(THIS_ DWORD*) PURE; STDMETHOD(GetOptions)(THIS_ DWORD*) PURE;
}; };
typedef IAutoComplete2 *LPAUTOCOMPLETE2; typedef IAutoComplete2 *LPAUTOCOMPLETE2;
#ifdef COBJMACROS #ifdef COBJMACROS
#define IAutoComplete2_QueryInterface(T,a,b) (T)->lpVtbl->QueryInterface(T,a,b) #define IAutoComplete2_QueryInterface(T,a,b) (T)->lpVtbl->QueryInterface(T,a,b)
#define IAutoComplete2_AddRef(T) (T)->lpVtbl->AddRef(T) #define IAutoComplete2_AddRef(T) (T)->lpVtbl->AddRef(T)
#define IAutoComplete2_Release(T) (T)->lpVtbl->Release(T) #define IAutoComplete2_Release(T) (T)->lpVtbl->Release(T)
#define IAutoComplete2_Init(T,a,b,c,d) (T)->lpVtbl->Init(T,a,b,c,d) #define IAutoComplete2_Init(T,a,b,c,d) (T)->lpVtbl->Init(T,a,b,c,d)
#define IAutoComplete2_Enable(T,a) (T)->lpVtbl->Enable(T,a) #define IAutoComplete2_Enable(T,a) (T)->lpVtbl->Enable(T,a)
#define IAutoComplete2_SetOptions(T,a) (T)->lpVtbl->Enable(T,a) #define IAutoComplete2_SetOptions(T,a) (T)->lpVtbl->Enable(T,a)
#define IAutoComplete2_GetOptions(T,a) (T)->lpVtbl->Enable(T,a) #define IAutoComplete2_GetOptions(T,a) (T)->lpVtbl->Enable(T,a)
#endif #endif
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif /* _SHLDISP_H */ #endif /* _SHLDISP_H */

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
LIBRARY DHCPCSVC.DLL LIBRARY DHCPCSVC.DLL
EXPORTS EXPORTS
DhcpCApiCleanup@0 DhcpCApiCleanup@0
DhcpCApiInitialize@4 DhcpCApiInitialize@4
DhcpDeRegisterParamChange@12 DhcpDeRegisterParamChange@12
DhcpRegisterParamChange@28 DhcpRegisterParamChange@28
DhcpRemoveDNSRegistrations@0 DhcpRemoveDNSRegistrations@0
DhcpUndoRequestParams@16 DhcpUndoRequestParams@16

View File

@ -1,257 +1,257 @@
; ;
; wldap32.def - Import definition file for the Windows LDAP API ; wldap32.def - Import definition file for the Windows LDAP API
; ;
; Written by Filip Navara <xnavara@volny.cz> ; Written by Filip Navara <xnavara@volny.cz>
; ;
; This library is distributed in the hope that it will be useful, ; This library is distributed in the hope that it will be useful,
; but WITHOUT ANY WARRANTY; without even the implied warranty of ; but WITHOUT ANY WARRANTY; without even the implied warranty of
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
; ;
LIBRARY wldap32.dll LIBRARY wldap32.dll
EXPORTS EXPORTS
ldap_abandon ldap_abandon
ldap_add ldap_add
ldap_get_optionW ldap_get_optionW
ldap_unbind ldap_unbind
ldap_set_optionW ldap_set_optionW
LdapGetLastError LdapGetLastError
cldap_open cldap_open
LdapMapErrorToWin32 LdapMapErrorToWin32
ldap_compare ldap_compare
ldap_delete ldap_delete
ldap_result2error ldap_result2error
ldap_err2string ldap_err2string
ldap_modify ldap_modify
ldap_modrdn ldap_modrdn
ldap_open ldap_open
ldap_first_entry ldap_first_entry
ldap_next_entry ldap_next_entry
cldap_openW cldap_openW
LdapUTF8ToUnicode LdapUTF8ToUnicode
ldap_get_dn ldap_get_dn
ldap_dn2ufn ldap_dn2ufn
ldap_first_attribute ldap_first_attribute
ldap_next_attribute ldap_next_attribute
ldap_get_values ldap_get_values
ldap_get_values_len ldap_get_values_len
ldap_count_entries ldap_count_entries
ldap_count_values ldap_count_values
ldap_value_free ldap_value_free
ldap_explode_dn ldap_explode_dn
ldap_result ldap_result
ldap_msgfree ldap_msgfree
ldap_addW ldap_addW
ldap_search ldap_search
ldap_add_s ldap_add_s
ldap_bind_s ldap_bind_s
ldap_unbind_s ldap_unbind_s
ldap_delete_s ldap_delete_s
ldap_modify_s ldap_modify_s
ldap_modrdn_s ldap_modrdn_s
ldap_search_s ldap_search_s
ldap_search_st ldap_search_st
ldap_compare_s ldap_compare_s
LdapUnicodeToUTF8 LdapUnicodeToUTF8
ber_bvfree ber_bvfree
cldap_openA cldap_openA
ldap_addA ldap_addA
ldap_add_ext ldap_add_ext
ldap_add_extA ldap_add_extA
ldap_simple_bind ldap_simple_bind
ldap_simple_bind_s ldap_simple_bind_s
ldap_bind ldap_bind
ldap_add_extW ldap_add_extW
ldap_add_ext_s ldap_add_ext_s
ldap_add_ext_sA ldap_add_ext_sA
ldap_add_ext_sW ldap_add_ext_sW
ldap_add_sA ldap_add_sA
ldap_modrdn2 ldap_modrdn2
ldap_modrdn2_s ldap_modrdn2_s
ldap_add_sW ldap_add_sW
ldap_bindA ldap_bindA
ldap_bindW ldap_bindW
ldap_bind_sA ldap_bind_sA
ldap_bind_sW ldap_bind_sW
ldap_close_extended_op ldap_close_extended_op
ldap_compareA ldap_compareA
ldap_compareW ldap_compareW
ldap_count_values_len ldap_count_values_len
ldap_compare_ext ldap_compare_ext
ldap_value_free_len ldap_value_free_len
ldap_compare_extA ldap_compare_extA
ldap_compare_extW ldap_compare_extW
ldap_perror ldap_perror
ldap_compare_ext_s ldap_compare_ext_s
ldap_compare_ext_sA ldap_compare_ext_sA
ldap_compare_ext_sW ldap_compare_ext_sW
ldap_compare_sA ldap_compare_sA
ldap_compare_sW ldap_compare_sW
ldap_connect ldap_connect
ldap_control_free ldap_control_free
ldap_control_freeA ldap_control_freeA
ldap_control_freeW ldap_control_freeW
ldap_controls_free ldap_controls_free
ldap_controls_freeA ldap_controls_freeA
ldap_controls_freeW ldap_controls_freeW
ldap_count_references ldap_count_references
ldap_count_valuesA ldap_count_valuesA
ldap_count_valuesW ldap_count_valuesW
ldap_create_page_control ldap_create_page_control
ldap_create_page_controlA ldap_create_page_controlA
ldap_create_page_controlW ldap_create_page_controlW
ldap_create_sort_control ldap_create_sort_control
ldap_create_sort_controlA ldap_create_sort_controlA
ldap_create_sort_controlW ldap_create_sort_controlW
ldap_deleteA ldap_deleteA
ldap_deleteW ldap_deleteW
ldap_delete_ext ldap_delete_ext
ldap_delete_extA ldap_delete_extA
ldap_delete_extW ldap_delete_extW
ldap_delete_ext_s ldap_delete_ext_s
ldap_delete_ext_sA ldap_delete_ext_sA
ldap_delete_ext_sW ldap_delete_ext_sW
ldap_delete_sA ldap_delete_sA
ldap_delete_sW ldap_delete_sW
ldap_dn2ufnW ldap_dn2ufnW
ldap_encode_sort_controlA ldap_encode_sort_controlA
ldap_encode_sort_controlW ldap_encode_sort_controlW
ldap_err2stringA ldap_err2stringA
ldap_err2stringW ldap_err2stringW
ldap_escape_filter_elementA ldap_escape_filter_elementA
ldap_escape_filter_elementW ldap_escape_filter_elementW
ldap_explode_dnA ldap_explode_dnA
ldap_explode_dnW ldap_explode_dnW
ldap_extended_operation ldap_extended_operation
ldap_extended_operationA ldap_extended_operationA
ldap_extended_operationW ldap_extended_operationW
ldap_first_attributeA ldap_first_attributeA
ldap_first_attributeW ldap_first_attributeW
ldap_first_reference ldap_first_reference
ldap_free_controls ldap_free_controls
ldap_free_controlsA ldap_free_controlsA
ldap_free_controlsW ldap_free_controlsW
ldap_get_dnA ldap_get_dnA
ldap_get_dnW ldap_get_dnW
ldap_get_next_page ldap_get_next_page
ldap_get_next_page_s ldap_get_next_page_s
ldap_get_option ldap_get_option
ldap_get_optionA ldap_get_optionA
ldap_get_paged_count ldap_get_paged_count
ldap_get_valuesA ldap_get_valuesA
ldap_get_valuesW ldap_get_valuesW
ldap_get_values_lenA ldap_get_values_lenA
ldap_get_values_lenW ldap_get_values_lenW
ldap_init ldap_init
ldap_initA ldap_initA
ldap_initW ldap_initW
ldap_memfreeA ldap_memfreeA
ldap_memfreeW ldap_memfreeW
ldap_modifyA ldap_modifyA
ldap_modifyW ldap_modifyW
ldap_modify_ext ldap_modify_ext
ldap_modify_extA ldap_modify_extA
ldap_modify_extW ldap_modify_extW
ldap_modify_ext_s ldap_modify_ext_s
ldap_modify_ext_sA ldap_modify_ext_sA
ldap_modify_ext_sW ldap_modify_ext_sW
ldap_modify_sA ldap_modify_sA
ldap_modify_sW ldap_modify_sW
ldap_modrdn2A ldap_modrdn2A
ldap_modrdn2W ldap_modrdn2W
ldap_modrdn2_sA ldap_modrdn2_sA
ldap_modrdn2_sW ldap_modrdn2_sW
ldap_modrdnA ldap_modrdnA
ldap_modrdnW ldap_modrdnW
ldap_modrdn_sA ldap_modrdn_sA
ldap_modrdn_sW ldap_modrdn_sW
ldap_next_attributeA ldap_next_attributeA
ldap_next_attributeW ldap_next_attributeW
ldap_next_reference ldap_next_reference
ldap_openA ldap_openA
ldap_openW ldap_openW
ldap_parse_page_control ldap_parse_page_control
ldap_parse_page_controlA ldap_parse_page_controlA
ldap_parse_page_controlW ldap_parse_page_controlW
ldap_parse_reference ldap_parse_reference
ldap_parse_referenceA ldap_parse_referenceA
ldap_parse_referenceW ldap_parse_referenceW
ldap_parse_result ldap_parse_result
ldap_parse_resultA ldap_parse_resultA
ldap_parse_resultW ldap_parse_resultW
ldap_parse_sort_control ldap_parse_sort_control
ldap_parse_sort_controlA ldap_parse_sort_controlA
ldap_parse_sort_controlW ldap_parse_sort_controlW
ldap_rename_ext ldap_rename_ext
ldap_rename_extA ldap_rename_extA
ldap_rename_extW ldap_rename_extW
ldap_rename_ext_s ldap_rename_ext_s
ldap_rename_ext_sA ldap_rename_ext_sA
ldap_rename_ext_sW ldap_rename_ext_sW
ldap_searchA ldap_searchA
ldap_searchW ldap_searchW
ldap_search_abandon_page ldap_search_abandon_page
ldap_search_ext ldap_search_ext
ldap_search_extA ldap_search_extA
ldap_search_extW ldap_search_extW
ldap_search_ext_s ldap_search_ext_s
ldap_search_ext_sA ldap_search_ext_sA
ldap_escape_filter_element ldap_escape_filter_element
ldap_set_dbg_flags ldap_set_dbg_flags
ldap_set_dbg_routine ldap_set_dbg_routine
ldap_memfree ldap_memfree
ldap_startup ldap_startup
ldap_cleanup ldap_cleanup
ldap_search_ext_sW ldap_search_ext_sW
ldap_search_init_page ldap_search_init_page
ldap_search_init_pageA ldap_search_init_pageA
ldap_search_init_pageW ldap_search_init_pageW
ldap_search_sA ldap_search_sA
ldap_search_sW ldap_search_sW
ldap_search_stA ldap_search_stA
ldap_search_stW ldap_search_stW
ldap_set_option ldap_set_option
ldap_set_optionA ldap_set_optionA
ldap_simple_bindA ldap_simple_bindA
ldap_simple_bindW ldap_simple_bindW
ldap_simple_bind_sA ldap_simple_bind_sA
ldap_simple_bind_sW ldap_simple_bind_sW
ldap_sslinit ldap_sslinit
ldap_sslinitA ldap_sslinitA
ldap_sslinitW ldap_sslinitW
ldap_ufn2dn ldap_ufn2dn
ldap_ufn2dnA ldap_ufn2dnA
ldap_ufn2dnW ldap_ufn2dnW
ldap_value_freeA ldap_value_freeA
ldap_value_freeW ldap_value_freeW
ldap_check_filterA ldap_check_filterA
ldap_check_filterW ldap_check_filterW
ldap_dn2ufnA ldap_dn2ufnA
ber_init ber_init
ber_free ber_free
ber_bvecfree ber_bvecfree
ber_bvdup ber_bvdup
ber_alloc_t ber_alloc_t
ber_skip_tag ber_skip_tag
ber_peek_tag ber_peek_tag
ber_first_element ber_first_element
ber_next_element ber_next_element
ber_flatten ber_flatten
ber_printf ber_printf
ber_scanf ber_scanf
ldap_conn_from_msg ldap_conn_from_msg
ldap_sasl_bindW ldap_sasl_bindW
ldap_sasl_bind_sW ldap_sasl_bind_sW
ldap_sasl_bindA ldap_sasl_bindA
ldap_sasl_bind_sA ldap_sasl_bind_sA
ldap_parse_extended_resultW ldap_parse_extended_resultW
ldap_parse_extended_resultA ldap_parse_extended_resultA
ldap_create_vlv_controlW ldap_create_vlv_controlW
ldap_create_vlv_controlA ldap_create_vlv_controlA
ldap_parse_vlv_controlW ldap_parse_vlv_controlW
ldap_parse_vlv_controlA ldap_parse_vlv_controlA
ldap_start_tls_sW ldap_start_tls_sW
ldap_start_tls_sA ldap_start_tls_sA
ldap_stop_tls_s ldap_stop_tls_s
ldap_extended_operation_sW ldap_extended_operation_sW
ldap_extended_operation_sA ldap_extended_operation_sA