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.

49 lines
1.2 KiB

  1. // This is the header file that defines the interface to ConfCli.dll
  2. //
  3. // Created: ChrisPi 8-29-95
  4. //
  5. #ifndef _CONFCLI_H_
  6. #define _CONFCLI_H_
  7. #include <tchar.h> // for _TEXT()
  8. // Functions:
  9. BOOL WINAPI ConfInitialize();
  10. typedef BOOL (WINAPI *CONFINITIALIZEPROC) ();
  11. #define CONFINITIALIZENAME ("ConfInitialize")
  12. int WINAPI ConfSendMessage(UINT uMsg, LPBYTE lpData, DWORD cbData);
  13. typedef int (WINAPI *CONFSENDMESSAGEPROC) (UINT uMsg, LPBYTE lpData, DWORD cbData);
  14. #define CONFSENDMESSAGENAME ("ConfSendMessage")
  15. #define CONFCLIDLLNAME (_TEXT("msconf.dll"))
  16. #ifdef __cplusplus
  17. extern "C"
  18. {
  19. #endif
  20. void WINAPI NewMediaPhone(HWND hwndParent, HINSTANCE hinst,
  21. PSTR pszCmdLine, int nShowCmd);
  22. typedef VOID (WINAPI *NEWMEDIAPHONEPROC)(HWND, HINSTANCE, PSTR, int);
  23. #define NEWMEDIAPHONENAME ("NewMediaPhone")
  24. #ifdef __cplusplus
  25. }
  26. #endif /* __cplusplus */
  27. // Structs:
  28. #define MAX_DIALINFO_STRING 128
  29. struct DIALINFO
  30. {
  31. DWORD dwDialFlags;
  32. CHAR szWABKey[MAX_DIALINFO_STRING];
  33. CHAR szName[MAX_DIALINFO_STRING];
  34. CHAR szAddress[MAX_DIALINFO_STRING];
  35. CHAR szConference[MAX_DIALINFO_STRING];
  36. DWORD dwTransport;
  37. };
  38. #endif /* _CONFCLI_H_ */