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.

60 lines
2.2 KiB

  1. //+---------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1994.
  5. //
  6. // File: stkswtch.h
  7. //
  8. // Contents: Stack Switching proto types and macros
  9. //
  10. // Classes:
  11. //
  12. // Functions:
  13. //
  14. // History: 12-10-94 JohannP (Johann Posch) Created
  15. //
  16. //----------------------------------------------------------------------------
  17. #ifndef _STKSWTCH_
  18. #define _STKSWTCH_
  19. // For non-chicago platrforms: define all SSxxx APIs
  20. // back to the original user api
  21. #define SSSendMessage SendMessage
  22. #define SSReplyMessage ReplyMessage
  23. #define SSCallWindowProc CallWindowProc
  24. #define SSDefWindowProc DefWindowProc
  25. #define SSPeekMessage PeekMessage
  26. #define SSGetMessage GetMessage
  27. #define SSDispatchMessage DispatchMessage
  28. #define SSWaitMessage WaitMessage
  29. #define SSMsgWaitForMultipleObjects MsgWaitForMultipleObjects
  30. #define SSDirectedYield DirectedYield
  31. #define SSDialogBoxParam DialogBoxParam
  32. #define SSDialogBoxIndirectParam DialogBoxIndirectParam
  33. #define SSCreateWindowExA CreateWindowExA
  34. #define SSCreateWindowExW CreateWindowExW
  35. #define SSDestroyWindow DestroyWindow
  36. #define SSMessageBox MessageBox
  37. #define SSOpenClipboard OpenClipboard
  38. #define SSCloseClipboard CloseClipboard
  39. #define SSGetClipboardOwner GetClipboardOwner
  40. #define SSSetClipboardData SetClipboardData
  41. #define SSGetClipboardData GetClipboardData
  42. #define SSRegisterClipboardFormatA RegisterClipboardFormatA
  43. #define SSEnumClipboardFormats EnumClipboardFormats
  44. #define SSGetClipboardFormatNameA GetClipboardFormatNameA
  45. #define SSEmptyClipboard EmptyClipboard
  46. #define SSIsClipboardFormatAvailable IsClipboardFormatAvailable
  47. #define SSCreateProcessA CreateProcessA
  48. #define SSInSendMessage InSendMessage
  49. #define SSInSendMessageEx InSendMessageEx
  50. #define SSAPI(x) x
  51. #define StackDebugOut(x)
  52. #define StackAssert(x)
  53. #define SSOnSmallStack()
  54. #endif // _STKSWTCH_