How to get an embedded resource?

Hi all! I’m developing a .vst3 and I need to load an embedded resource (simple text file).
This approach won’t work, because the .vst3 is not a standalone Windows app:

HRSRC hResInfo = FindResource(hModule, MAKEINTRESOURCE(#####), #####);

Any ideas how to do this perhaps using a vst3 sdk feature? I couldn’t find any…

You can get your plugin’s hModule / hInstance via VST’s getPlatformModuleHandle() function (check moduleinit.h).