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
945 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation
  6. //
  7. // File: rasprof.h
  8. //
  9. //--------------------------------------------------------------------------
  10. #ifndef _RAS_IAS_PROFILE_H_
  11. #define _RAS_IAS_PROFILE_H_
  12. #include "sdoias.h"
  13. #define RAS_IAS_PROFILEDLG_SHOW_RASTABS 0x00000001
  14. #define RAS_IAS_PROFILEDLG_SHOW_IASTABS 0x00000002
  15. #define RAS_IAS_PROFILEDLG_SHOW_WIN2K 0x00000004
  16. #define DllImport __declspec( dllimport )
  17. #define DllExport __declspec( dllexport )
  18. DllExport HRESULT OpenRAS_IASProfileDlg(
  19. ISdo* pProfile, // profile SDO pointer
  20. ISdoDictionaryOld* pDictionary, // dictionary SDO pointer
  21. BOOL bReadOnly, // if the dlg is for readonly
  22. DWORD dwTabFlags, // what to show
  23. void *pvData // additional data
  24. );
  25. #endif // _RAS_IAS_PROFILE_H_