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.

45 lines
1.3 KiB

  1. //**********************************************************************
  2. // File name: simpdnd.h
  3. //
  4. // Copyright (c) 1992 - 1993 Microsoft Corporation. All rights reserved.
  5. //**********************************************************************
  6. #define IDM_ABOUT 100
  7. #define IDM_INSERT 101
  8. #define IDM_VERB0 1000
  9. int PASCAL WinMain
  10. #ifdef WIN32
  11. (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
  12. #else
  13. (HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
  14. #endif
  15. BOOL InitApplication(HANDLE hInstance);
  16. BOOL InitInstance(HANDLE hInstance, int nCmdShow);
  17. LRESULT FAR PASCAL EXPORT MainWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  18. LRESULT FAR PASCAL EXPORT DocWndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
  19. #ifdef WIN32
  20. INT_PTR CALLBACK About(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam);
  21. #else
  22. BOOL FAR PASCAL EXPORT About(HWND hDlg, UINT message, WPARAM wParam, LONG lParam);
  23. #endif
  24. #ifndef LATER
  25. #define SZCLASSICONBOX "SimpDndIBClass"
  26. #define SZCLASSRESULTIMAGE "SimpDndRIClass"
  27. #endif
  28. #ifdef WIN32
  29. // Macro for TestDebugOut
  30. #ifdef UNICODE
  31. #undef TestDebugOut
  32. #define TestDebugOut(A); TestDebugOutW(TEXT(A));
  33. #endif
  34. #endif