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.

40 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. Rcontrol.h
  5. Author:
  6. Steve Shih 7/5/2000
  7. --*/
  8. #ifndef __RCONTROL_H__
  9. #define __RCONTROL_H__
  10. EXTERN_C const IID DIID_DMsgrSessionEvents;
  11. EXTERN_C const IID DIID_DMsgrSessionManagerEvents;
  12. EXTERN_C const IID LIBID_MsgrSessionManager;
  13. // Window name for inviter side
  14. TCHAR szWindowClass[] = TEXT("Microsoft Remote Assistance Messenger window");
  15. // My startup page.
  16. #ifdef _PERF_OPTIMIZATIONS
  17. #define CHANNEL_PATH TEXT("\\PCHEALTH\\HelpCtr\\Binaries\\HelpCtr.exe\" -FromStartHelp -Mode \"hcp://system/Remote Assistance/RAIMLayout.xml\" -Url \"hcp://system/Remote%20Assistance")
  18. #else
  19. #define CHANNEL_PATH TEXT("\\PCHEALTH\\HelpCtr\\Binaries\\HelpCtr.exe\" -FromStartHelp -Mode \"hcp://CN=Microsoft Corporation,L=Redmond,S=Washington,C=US/Remote Assistance/RAIMLayout.xml\" -Url \"hcp://CN=Microsoft Corporation,L=Redmond,S=Washington,C=US/Remote%20Assistance")
  20. #endif
  21. // Help functions
  22. void RegisterEXE(BOOL);
  23. void InviterStart(HINSTANCE, IMsgrSession*);
  24. BOOL InitInstance(HINSTANCE hInstance, int nCmdShow);
  25. LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  26. #endif