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.

65 lines
1.7 KiB

  1. /*
  2. * OLE2UI.RC
  3. *
  4. * Icon, menus, strings, and dialogs for the OLE 2.0 UI Support Library.
  5. *
  6. * Copyright (c)1992 Microsoft Corporation, All Right Reserved
  7. */
  8. #undef PURE
  9. //fix bug when building on daytona 567
  10. //BUGBUG: this is hacky, we need a better long term solution, the basic
  11. //problem is that the rpc header file makes rc choke and die
  12. #define __RPCNDR_H__
  13. #include "ole2ui.h"
  14. #if defined( IBCLS )
  15. #define SZCLASSICONBOX IBCLS
  16. #define SZCLASSRESULTIMAGE RICLS
  17. #endif
  18. /* If "IBCLS" and "RICLS" are NOT defined as command line arguments to the
  19. * RC command, then we assume there is a "uiclass.h" file which defines the
  20. * two symbols "SZCLASSICONBOX" and "SZCLASSRESULTIMAGE". These need to be
  21. * unique strings; they are normally built by composing the name of the
  22. * "LIBNAME" or "APPNAME" with the strings "IBCls" and "RICls"
  23. * respectively.
  24. */
  25. #if !defined( SZCLASSICONBOX )
  26. #include "uiclass.h"
  27. #endif
  28. //Default 'document' icon
  29. //DefIcon ICON default.ico
  30. //Bitmaps for ResultImage control
  31. IDB_RESULTSEGA BITMAP egares.bmp
  32. IDB_RESULTSVGA BITMAP vgares.bmp
  33. IDB_RESULTSHIRESVGA BITMAP hivgares.bmp
  34. // Version Verification Resource (see OLE2UI.H)
  35. VERIFICATION RCDATA
  36. BEGIN
  37. OLEUI_VERSION_MAGIC
  38. END
  39. //Include string tables here.
  40. #include "strings.rc"
  41. //Include each dialog template here.
  42. #include "insobj.dlg"
  43. #include "icon.dlg"
  44. #include "links.dlg"
  45. #include "pastespl.dlg"
  46. #include "busy.dlg"
  47. #include "convert.dlg"
  48. #include "fileopen.dlg"
  49. #include "prompt.dlg"
  50. // Only include the version resource if we are compiling the DLL version
  51. #ifdef DLL_VER
  52. //Version Information
  53. #include "OLE2UI.RCV"
  54. #endif