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.

32 lines
880 B

  1. /* Copyright (C) Microsoft Corporation, 1991 - 1999 , all rights reserved
  2. ipadd.h - TCP/IP Address custom control
  3. November 9, 1992 - Greg Strange
  4. */
  5. #if _MSC_VER >= 1000 // VC 5.0 or later
  6. #pragma once
  7. #endif
  8. /* String table defines */
  9. #define IDS_IPMBCAPTION 6612
  10. #define IDS_IPNOMEM 6613
  11. #define IDS_IPBAD_FIELD_VALUE 6614
  12. #define MAX_IPNOMEMSTRING 256
  13. #define MAX_IPCAPTION 256
  14. #define MAX_IPRES 256
  15. #ifdef IP_CUST_CTRL
  16. /* IPAddress style dialog definitions */
  17. #define ID_VISIBLE 201
  18. #define ID_DISABLED 202
  19. #define ID_GROUP 203
  20. #define ID_TABSTOP 204
  21. HANDLE FAR WINAPI IPAddressInfo();
  22. BOOL FAR WINAPI IPAddressStyle( HWND, HANDLE, LPFNSTRTOID, LPFNIDTOSTR );
  23. WORD FAR WINAPI IPAddressFlags( WORD, LPSTR, WORD );
  24. #endif