1

What Delphi uses clauses are needed to access resource datatypes, like 'RT_RCDATA'?

Joseph Poirier
  • 386
  • 2
  • 17

2 Answers2

4

It depends on your needs.

  • For VCL apps, you'd use Windows or Winapi.Windows if you are using namespace prefixes.
  • For FMX cross-platform apps you'd use System.Types.
David Heffernan
  • 601,492
  • 42
  • 1,072
  • 1,490
2

RT_RCDATA and other RT_... values are defined in the Windows unit.

Remy Lebeau
  • 555,201
  • 31
  • 458
  • 770
Andreas Rejbrand
  • 105,602
  • 8
  • 282
  • 384