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.

37 lines
1.0 KiB

  1. /*--------------------------------------------------------------------------*\
  2. Include File: drv.h
  3. Public header for dealing with service prodivers, or drivers in english
  4. Copyright (c) 1995-1999 Microsoft Corporation
  5. \*--------------------------------------------------------------------------*/
  6. #ifndef PH_DRV
  7. #define PH_DRV
  8. #include <tapi.h>
  9. //----------
  10. // Constants
  11. //----------
  12. #define TAPI_VERSION 0x00010004
  13. #define INITIAL_PROVIDER_LIST_SIZE 1024
  14. //#define INITIAL_PROVIDER_LIST_SIZE sizeof(LINEPROVIDERLIST)
  15. //----------------------------
  16. // Public Function Prototypes
  17. //----------------------------
  18. BOOL RemoveSelectedDriver( HWND hwndParent, HWND hwndList );
  19. BOOL FillDriverList( HWND hwndList );
  20. BOOL SetupDriver( HWND hwndParent, HWND hwndList );
  21. VOID UpdateDriverDlgButtons( HWND hwnd );
  22. INT_PTR AddDriver_DialogProc( HWND hWnd, UINT wMessage, WPARAM wParam, LPARAM lParam );
  23. #define CPL_MAX_STRING 132 // biggest allowed string
  24. #endif // PH_DRV