Click here to Skip to main content
15,914,014 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: What View type for a "log view" Pin
Ravi Bhavnani28-May-05 18:14
professionalRavi Bhavnani28-May-05 18:14 
Generalhelp me!i need a system of personal assistant like ATnotes.3q! Pin
kenwood198328-May-05 16:49
kenwood198328-May-05 16:49 
GeneralRe: help me!i need a system of personal assistant like ATnotes.3q! Pin
Christian Graus29-May-05 0:34
protectorChristian Graus29-May-05 0:34 
QuestionWhat does "far" mean? Pin
Link260028-May-05 15:07
Link260028-May-05 15:07 
AnswerRe: What does "far" mean? Pin
David Crow28-May-05 16:36
David Crow28-May-05 16:36 
GeneralRe: What does "far" mean? Pin
Link260028-May-05 17:35
Link260028-May-05 17:35 
GeneralRe: What does "far" mean? Pin
Michael Dunn28-May-05 18:24
sitebuilderMichael Dunn28-May-05 18:24 
GeneralRe: What does "far" mean? Pin
Ravi Bhavnani28-May-05 18:27
professionalRavi Bhavnani28-May-05 18:27 
The Intel 8086 architecture used a segmented memory model, where each segment spans 64K bytes. "Near" pointers are two-byte values with an offset from a fixed segment pointer and can access only a single 64K segment. "Far" pointers are 4-byte values with a 2-byte segment pointer and a 2-byte offset and can access the lower 1 MB of memory (because the memory manager's address calculation shifts the segment pointer 4 bits before adding the offset). "Huge" pointers, which are four-byte values are actual four-byte addresses and can access any area of memory by copying through a window created by a memory manager.

In the old (20 years ago Smile | :) ) days, the Microsoft C compiler supported several executable targets: tiny (all code and data with in the same 64 K segment, required for COM format executables), small (code and data in separate 64 K segments), medium (far pointers for code, near pointers for data), compact (near pointers for code, far pointers for data), large (far pointers for both code and data), and huge (far pointers for code, data and static data).

/ravi

My new year's resolution: 2048 x 1536
Home | Articles | Freeware | Music
ravib@ravib.com

GeneralRe: What does "far" mean? Pin
Ryan Binns29-May-05 19:05
Ryan Binns29-May-05 19:05 
GeneralRe: What does "far" mean? Pin
Blake Miller31-May-05 6:30
Blake Miller31-May-05 6:30 
GeneralRe: What does "far" mean? Pin
Ryan Binns31-May-05 12:20
Ryan Binns31-May-05 12:20 
GeneralHit Dice rolling effect help. Pin
Link260028-May-05 14:02
Link260028-May-05 14:02 
GeneralRe: Hit Dice rolling effect help. Pin
David Crow28-May-05 16:38
David Crow28-May-05 16:38 
Generalvc6 and vc7 on the same machine Pin
Tankko28-May-05 10:47
Tankko28-May-05 10:47 
GeneralRe: vc6 and vc7 on the same machine Pin
Gary R. Wheeler28-May-05 11:34
Gary R. Wheeler28-May-05 11:34 
GeneralRe: vc6 and vc7 on the same machine Pin
Tom Archer29-May-05 13:17
Tom Archer29-May-05 13:17 
GeneralCombo Box bitmap Pin
neliocc28-May-05 9:29
neliocc28-May-05 9:29 
GeneralRe: Combo Box bitmap Pin
Tom Archer28-May-05 10:07
Tom Archer28-May-05 10:07 
GeneralRe: Combo Box bitmap Pin
Ravi Bhavnani28-May-05 18:17
professionalRavi Bhavnani28-May-05 18:17 
Generalstatus bar pane size Pin
Anonymous28-May-05 6:23
Anonymous28-May-05 6:23 
GeneralRe: status bar pane size Pin
Anonymous28-May-05 6:37
Anonymous28-May-05 6:37 
QuestionBYTE* to char* or BYTE* to CString ? Pin
ninck28-May-05 4:12
ninck28-May-05 4:12 
AnswerRe: BYTE* to char* or BYTE* to CString ? Pin
Jörgen Sigvardsson28-May-05 6:37
Jörgen Sigvardsson28-May-05 6:37 
AnswerRe: BYTE* to char* or BYTE* to CString ? Pin
Christian Graus29-May-05 0:36
protectorChristian Graus29-May-05 0:36 
AnswerRe: BYTE* to char* or BYTE* to CString ? Pin
neliocc29-May-05 4:25
neliocc29-May-05 4:25 

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.