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.

32 lines
834 B

  1. #define IDC_DUMMY -1
  2. #define IDD_ABOUT 100
  3. #define IDD_FIND 101
  4. #define IDD_INSTALL 102
  5. #define IDD_INFO 103
  6. #define IDD_QUERY 104
  7. #define IDD_LANG 105
  8. #define IDC_FILENAME 201
  9. #define IDC_SUBLANGID 202
  10. #define IDC_LANGID 203
  11. #define IDM_VERSION 300
  12. #define IDM_ABOUT 301
  13. #define IDM_EXIT 302
  14. #define IDM_FIND 303
  15. #define IDM_INSTALL 304
  16. #define IDM_INFO 305
  17. #define IDM_QUERY 306
  18. #define IDM_LANG 307
  19. #define IDM_FREE 308
  20. BOOL InitApplication(HANDLE);
  21. BOOL InitInstance(HANDLE, int);
  22. LRESULT MainWndProc(HWND, UINT, WPARAM, LPARAM);
  23. INT_PTR About(HWND, UINT, WPARAM, LPARAM);
  24. INT_PTR Find(HWND, UINT, WPARAM, LPARAM);
  25. INT_PTR Install(HWND, UINT, WPARAM, LPARAM);
  26. INT_PTR Information(HWND, UINT, WPARAM, LPARAM);
  27. INT_PTR Query(HWND, UINT, WPARAM, LPARAM);
  28. INT_PTR Language(HWND, UINT, WPARAM, LPARAM);