Source code of Windows XP (NT5)
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.

27 lines
734 B

  1. // File : ATK_INET.h
  2. // Author : Suresh Krishnan
  3. // Date : 08/05/97
  4. // Wrapper for INetCFG.DLL exported functions
  5. // related function declarations
  6. //
  7. //
  8. #ifndef __ATH_INET__
  9. #define __ATK_INET__
  10. #include <windows.h>
  11. #include <tchar.h>
  12. #include <winnt.h>
  13. #include <wininet.h>
  14. #include <stdio.h>
  15. #include "rw_common.h"
  16. HRESULT ATK_InetGetAutoDial(LPBOOL lpEnable, LPSTR lpszEntryName, DWORD cbEntryName);
  17. HRESULT ATK_InetSetAutoDial(BOOL fEnable, LPCSTR lpszEntryName);
  18. HRESULT ATK_InetConfigSystem( HWND hwndParent, DWORD dwfOptions,
  19. LPBOOL lpfNeedsRestart);
  20. HRESULT ATK_InetGetProxy( LPBOOL lpfEnable,
  21. LPSTR lpszServer,
  22. DWORD cbServer,
  23. LPSTR lpszOverride,
  24. DWORD cbOverride);
  25. #endif