summaryrefslogtreecommitdiffstats
path: root/Tests/VSResource/main.cpp
blob: 6f68df3ebc1aafc0bfb3766c669d334207a010e1 (plain)
1
2
3
4
5
6
7
8
9
10
#include <windows.h>

int main(int argc, char** argv) {
   HRSRC hello = ::FindResource(0, "hello", "TEXT");
   if(hello) {
      return 0;
   } else {
      return 1;
   }
}