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.

50 lines
572 B

  1. /*++
  2. Copyright (C) Microsoft Corporation, 1997 - 1999
  3. Module Name:
  4. msgloop.hxx
  5. Abstract:
  6. Header file for SENS Message loop stuff.
  7. Author:
  8. Gopal Parupudi <GopalP>
  9. [Notes:]
  10. optional-notes
  11. Revision History:
  12. GopalP 11/5/1997 Start.
  13. --*/
  14. #ifndef __MSGLOOP_HXX__
  15. #define __MSGLOOP_HXX__
  16. LRESULT CALLBACK
  17. SensMainWndProc(
  18. HWND hwnd,
  19. UINT msg,
  20. WPARAM wp,
  21. LPARAM lp
  22. );
  23. DWORD WINAPI
  24. SensMessageLoopThreadRoutine(
  25. LPVOID lpParam
  26. );
  27. BOOL
  28. InitMessageLoop(
  29. void
  30. );
  31. #endif // __MSGLOOP_HXX__