res.h
Upload User: xhy777
Upload Date: 2007-02-14
Package Size: 24088k
Code Size: 1k
Category:

Windows Kernel

Development Platform:

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__