Click here to Skip to main content
15,921,837 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: menu Pin
RobJones23-Sep-03 4:30
RobJones23-Sep-03 4:30 
GeneralRe: menu Pin
Chris Richardson23-Sep-03 11:04
Chris Richardson23-Sep-03 11:04 
QuestionWhat means such Profiler output ? Pin
vgrigor23-Sep-03 4:04
vgrigor23-Sep-03 4:04 
AnswerRe: What means such Profiler output ? Pin
Mike Dimmick23-Sep-03 5:53
Mike Dimmick23-Sep-03 5:53 
GeneralRe: What means such Profiler output ? Pin
vgrigor23-Sep-03 6:02
vgrigor23-Sep-03 6:02 
Generaldll shared data Pin
umarcool23-Sep-03 3:47
umarcool23-Sep-03 3:47 
GeneralRe: dll shared data Pin
Mike Dimmick23-Sep-03 4:14
Mike Dimmick23-Sep-03 4:14 
GeneralRe: dll shared data Pin
umarcool23-Sep-03 5:35
umarcool23-Sep-03 5:35 
As i have mentioned that i have done study on them but they all let you have to specify memory(exact) and in which you cannot store pointers.

Pointers in one address space invalid in another.
Should i make it this way that same pointer offset stroed
i.e. 0xabcdef12 in one process then all the processes have same memory place reserved.

Ok vc++.net bible there is a mechanism which uses placement new operator by specifying a physical memory address but for that the author has already reserved memory in the shared data segment of dll using

#pragma data_seg(".SHARDAT")
static char lpszMemory[sizeof(CTest)];
CTest* g_pTest=NULL;
#pragma data_seg

g_pTest = :: new (lpszMemory) CTest;
but the same problem size specified.
As you might have seen i need it for the linked list any length, growing and growing using new from any process.

Ok let's keep the problem to windows 95.
Could it be that on windows 95 whatever memory i allocate all the process that address and access it.I need help on the mechanism should i use globalalloc or what.

Thank you in advance.


GeneralRe: dll shared data Pin
Alexander M.,27-Sep-03 7:29
Alexander M.,27-Sep-03 7:29 
Generalwriting general plugins fro winamp in VC++. Pin
karteek23-Sep-03 3:40
karteek23-Sep-03 3:40 
Generaldatabase delete help! Pin
coda_x23-Sep-03 2:52
coda_x23-Sep-03 2:52 
GeneralRe: database delete help! Pin
David Crow23-Sep-03 3:01
David Crow23-Sep-03 3:01 
QuestionHow to invoke a function at a regular interval? Pin
George223-Sep-03 1:54
George223-Sep-03 1:54 
AnswerRe: How to invoke a function at a regular interval? Pin
sashaf23-Sep-03 2:40
sashaf23-Sep-03 2:40 
GeneralRe: How to invoke a function at a regular interval? Pin
Mike Dimmick23-Sep-03 2:50
Mike Dimmick23-Sep-03 2:50 
GeneralRe: How to invoke a function at a regular interval? Pin
George223-Sep-03 16:44
George223-Sep-03 16:44 
GeneralRe: How to invoke a function at a regular interval? Pin
George223-Sep-03 16:45
George223-Sep-03 16:45 
GeneralQuestion about enum in C/C++ Pin
George223-Sep-03 1:48
George223-Sep-03 1:48 
GeneralRe: Question about enum in C/C++ Pin
567890123423-Sep-03 3:22
567890123423-Sep-03 3:22 
GeneralRe: Question about enum in C/C++ Pin
George223-Sep-03 16:51
George223-Sep-03 16:51 
GeneralRe: Question about enum in C/C++ Pin
Mike Dimmick23-Sep-03 4:03
Mike Dimmick23-Sep-03 4:03 
GeneralRe: Question about enum in C/C++ Pin
George223-Sep-03 16:49
George223-Sep-03 16:49 
GeneralRe: Question about enum in C/C++ Pin
Mike Dimmick24-Sep-03 9:11
Mike Dimmick24-Sep-03 9:11 
GeneralRe: Question about enum in C/C++ Pin
George224-Sep-03 22:05
George224-Sep-03 22:05 
GeneralVectors Pin
bhangie23-Sep-03 0:56
bhangie23-Sep-03 0:56 

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.