res.h
上传用户:xhy777
上传日期:2007-02-14
资源大小:24088k
文件大小:1k
源码类别:

系统编程

开发平台:

Visual C++

  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__