Advertisement

Loading Dll from memory

Started by May 30, 2000 02:55 AM
0 comments, last by babar_zafar 24 years, 7 months ago
Hi there, just a simple question, is it possible to load dll''s from memory -like if I have a resource file system - I put the dll in my main resource file, load the dll from it to memory and then use some type of LoadLibrary which works from memory sources... Is this possible ? PS. This could sound stupid - but it would allow me to ''hide'' my interface versions - release the code base so that anyone can modify and use their own versions. Also this would remove situations were my app can''t find the required dll''s.. Thanks, Babar from Sweden
// Babar Zafar// Copyright (c) 1982-2000,
No, you can''t! (I''m not quite sure however)
I think you have to pack up your library file from your resource file to a plain old fashion file and then call LoadLibrary() on it.

This topic is closed to new replies.

Advertisement