#Pragma embed doesn't seem to work

Hello!
I tried to embed a file into my NVGT executable. However, the program doesn't want to find the speciffied file, even when it's literally in the same folder. I called the file "Sounds.dll" and wrote the following line at the beginning of my code:
#pragma embed "Sounds.dll";
I also tried it with other files and other names, also with absolute and relative paths, it doesn't seem to make a difference.
Do any of you know why that might happen or how I could fix this issue?
Regards

#pragma embed "Sounds.dll"

Thanks, that works.
And how can I declare a pack file for such an embedded pack? When saving the pack on disc, it works with the "open" method, however, that method doesn't seem to want to open a embedded file, not even if I set the "load from memory" flag to true.
Regards
Taurus Fan

pack.open("*", PACK_OPEN_MODE_READ);

Thanks a lot, now it works as intended.