Click here to Skip to main content
15,911,471 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralWeb Browser Control Pin
Steve Thresher20-Aug-03 2:14
Steve Thresher20-Aug-03 2:14 
GeneralBrowser communication through JNI Pin
nikhilkhedkar20-Aug-03 2:13
nikhilkhedkar20-Aug-03 2:13 
Generalmediaplayer server Pin
andreimihail@yahoo.com20-Aug-03 2:08
andreimihail@yahoo.com20-Aug-03 2:08 
Generalsharing data hell Pin
Dangleberry20-Aug-03 2:00
sussDangleberry20-Aug-03 2:00 
GeneralRe: sharing data hell Pin
Andrew Walker20-Aug-03 2:09
Andrew Walker20-Aug-03 2:09 
GeneralRe: sharing data hell Pin
Dangleberry20-Aug-03 2:24
sussDangleberry20-Aug-03 2:24 
GeneralRe: sharing data hell Pin
Andrew Walker20-Aug-03 3:15
Andrew Walker20-Aug-03 3:15 
GeneralRe: sharing data hell Pin
Blake Miller20-Aug-03 4:54
Blake Miller20-Aug-03 4:54 
By the time you were done writing your COM dll, you would end up with a perhaps overly fancy system of just Gets and Sets on some data items.
You could always put the data into a shared memory segment and then write accessor functions inside a DLL. Protect the memory with a Mutex, since I think you would need to do that anyway with the COM dll.
Your static C++ class could be functions that wrap the calls into the DLL.
If you don't want to deal with the shared memory, then you could always declare the data to be in its own shared data segment, and then each copy of the dll loaded into each process would only see that same memory.

GeneralRe: sharing data hell Pin
Dangleberry20-Aug-03 5:33
sussDangleberry20-Aug-03 5:33 
GeneralRe: sharing data hell Pin
Dangleberry20-Aug-03 5:34
sussDangleberry20-Aug-03 5:34 
GeneralRe: sharing data hell Pin
Dangleberry20-Aug-03 5:18
sussDangleberry20-Aug-03 5:18 
Generalxp thems support Pin
Roger Alsing20-Aug-03 1:46
Roger Alsing20-Aug-03 1:46 
GeneralRe: xp thems support Pin
Paul Vickery16-Jul-04 1:19
professionalPaul Vickery16-Jul-04 1:19 
Questionno search thread atrribution on the forum? Pin
includeh1020-Aug-03 1:38
includeh1020-Aug-03 1:38 
AnswerRe: no search thread atrribution on the forum? Pin
Steve S20-Aug-03 5:47
Steve S20-Aug-03 5:47 
GeneralI want to display bitmap very fast ... Pin
MCING20-Aug-03 1:16
MCING20-Aug-03 1:16 
GeneralRe: I want to display bitmap very fast ... Pin
includeh1020-Aug-03 1:41
includeh1020-Aug-03 1:41 
GeneralRe: I want to display bitmap very fast ... Pin
Dangleberry20-Aug-03 1:47
sussDangleberry20-Aug-03 1:47 
GeneralRe: I want to display bitmap very fast ... Pin
Shog920-Aug-03 7:16
sitebuilderShog920-Aug-03 7:16 
GeneralBitmap and Dialog Pin
hph20-Aug-03 1:07
hph20-Aug-03 1:07 
GeneralRe: Bitmap and Dialog Pin
Member 42425920-Aug-03 1:35
Member 42425920-Aug-03 1:35 
GeneralRe: Bitmap and Dialog Pin
hph20-Aug-03 2:08
hph20-Aug-03 2:08 
GeneralRe: Bitmap and Dialog Pin
Member 42425920-Aug-03 3:08
Member 42425920-Aug-03 3:08 
GeneralRe: Bitmap and Dialog Pin
hph20-Aug-03 3:13
hph20-Aug-03 3:13 
GeneralRe: Bitmap and Dialog Pin
Anonymous20-Aug-03 3:35
Anonymous20-Aug-03 3:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.