mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-28 01:51:02 -06:00
11 lines
175 B
C++
11 lines
175 B
C++
#include <windows.h>
|
|
|
|
int main(int argc, char** argv) {
|
|
HRSRC hello = ::FindResource(0, "hello", "TEXT");
|
|
if(hello) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|