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.

28 lines
666 B

  1. // Copyright (C) Microsoft Corporation 1997, All Rights reserved.
  2. typedef struct {
  3. HWND hwndCaller;
  4. LPCSTR pszFile;
  5. UINT uCommand;
  6. DWORD_PTR dwData;
  7. } HH_ANSI_DATA;
  8. typedef struct {
  9. HWND hwndCaller;
  10. LPCWSTR pszFile;
  11. UINT uCommand;
  12. DWORD_PTR dwData;
  13. } HH_UNICODE_DATA;
  14. extern PSTR g_pszShare;
  15. extern HANDLE g_hSharedMemory;
  16. extern HANDLE g_hsemMemory;
  17. extern HWND g_hwndApi;
  18. void WaitForNavigationComplete(void);
  19. // Handle message translation.
  20. BOOL hhPreTranslateMessage(MSG* pMsg, HWND hWndCaller = NULL) ;
  21. extern BOOL g_fStandAlone ;
  22. extern SHORT g_tbRightMargin;
  23. extern SHORT g_tbLeftMargin;