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.

37 lines
782 B

  1. //
  2. // res.h: Declares data, defines and struct types for common code
  3. // module.
  4. //
  5. // This file contains only #define directives, thus it can be
  6. // included in the resource script.
  7. //
  8. #ifndef __RES_H__
  9. #define __RES_H__
  10. ///////////////////////////////////////////////////// DIALOG CONSTANTS
  11. //
  12. // IDD_ naming conventions: IDD_xxdd*
  13. //
  14. // where xx defines the control type:
  15. // ST: static text
  16. // LB: listbox
  17. // CB: combobox
  18. // CH: checkbox
  19. // PB: pushbutton
  20. // ED: edit control
  21. // GB: group box
  22. // RB: radio button
  23. // IC: icon
  24. //
  25. // and dd is a two-letter initial for the dialog;
  26. // and * is any other qualifier to better explain the name of control.
  27. //
  28. #include "resids.h"
  29. #include "dlgids.h"
  30. #endif // __RES_H__