Click here to Skip to main content
15,894,630 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionComparison of (int)DWORD Pin
Mikey_H21-Apr-09 4:27
Mikey_H21-Apr-09 4:27 
AnswerRe: Comparison of (int)DWORD Pin
Cedric Moonen21-Apr-09 4:32
Cedric Moonen21-Apr-09 4:32 
GeneralRe: Comparison of (int)DWORD Pin
Mikey_H21-Apr-09 4:42
Mikey_H21-Apr-09 4:42 
GeneralRe: Comparison of (int)DWORD Pin
Cedric Moonen21-Apr-09 4:46
Cedric Moonen21-Apr-09 4:46 
GeneralRe: Comparison of (int)DWORD [modified] Pin
Mikey_H21-Apr-09 5:07
Mikey_H21-Apr-09 5:07 
GeneralRe: Comparison of (int)DWORD Pin
Cedric Moonen21-Apr-09 7:20
Cedric Moonen21-Apr-09 7:20 
GeneralRe: Comparison of (int)DWORD Pin
Mikey_H21-Apr-09 7:24
Mikey_H21-Apr-09 7:24 
GeneralRe: Comparison of (int)DWORD Pin
Cedric Moonen21-Apr-09 8:22
Cedric Moonen21-Apr-09 8:22 
QuestionRe: Comparison of (int)DWORD Pin
David Crow21-Apr-09 7:56
David Crow21-Apr-09 7:56 
AnswerRe: Comparison of (int)DWORD Pin
Perry Holman21-Apr-09 7:13
Perry Holman21-Apr-09 7:13 
QuestionHow can i Discovery all user-defined process name from a unknow DLL Pin
SNArruda21-Apr-09 4:25
SNArruda21-Apr-09 4:25 
AnswerRe: How can i Discovery all user-defined process name from a unknow DLL Pin
Cedric Moonen21-Apr-09 4:51
Cedric Moonen21-Apr-09 4:51 
QuestionFormating a CString variable. Pin
V K 221-Apr-09 4:23
V K 221-Apr-09 4:23 
AnswerRe: Formating a CString variable. Pin
Code-o-mat21-Apr-09 5:24
Code-o-mat21-Apr-09 5:24 
AnswerRe: Formating a CString variable. Pin
Joe Woodbury21-Apr-09 5:24
professionalJoe Woodbury21-Apr-09 5:24 
QuestionRe: Formating a CString variable. Pin
David Crow21-Apr-09 7:53
David Crow21-Apr-09 7:53 
QuestionAdvanced blitting or bitmap mapping Pin
Niklas L21-Apr-09 2:20
Niklas L21-Apr-09 2:20 
AnswerRe: Advanced blitting or bitmap mapping Pin
CPallini21-Apr-09 2:31
mveCPallini21-Apr-09 2:31 
GeneralRe: Advanced blitting or bitmap mapping Pin
Niklas L21-Apr-09 2:41
Niklas L21-Apr-09 2:41 
GeneralRe: Advanced blitting or bitmap mapping Pin
Niklas L21-Apr-09 2:53
Niklas L21-Apr-09 2:53 
AnswerRe: Advanced blitting or bitmap mapping Pin
KarstenK21-Apr-09 3:02
mveKarstenK21-Apr-09 3:02 
AnswerRe: Advanced blitting or bitmap mapping Pin
Chris Losinger21-Apr-09 3:38
professionalChris Losinger21-Apr-09 3:38 
QuestionAs retriving the font name I need to retrieve glyf information from the ttf file Pin
Member 607421-Apr-09 1:44
Member 607421-Apr-09 1:44 
As retriving the font name I need to retrieve glyf information from the ttf file. look at the code below this is not full code just a piece of code

void TTFReader::ReadGlyf()
{
setPosition(m_glyfOffset);//get glyf offset from the ttf file

for(int c=0 ;c < m_glyphs.size();c++)
{
int gl = m_glyphs[c];

//unsigned short k = readWORD();
unsigned short numberOfContours = readWORD();
unsigned short minx1 = readWORD();
unsigned short miny1 = readWORD();
unsigned short maxx1 = readWORD();
unsigned short maxy1 = readWORD();

setPosition(m_glyfOffset+m_ttf_pos);
gl = m_glyphs[c];

}

}

my code is not working correctly mean not giving the exact value for eg the number of contours for one glyph.
QuestionS.M.A.R.T in Hard Disk Drive Pin
Abinash Mohanty21-Apr-09 1:21
Abinash Mohanty21-Apr-09 1:21 
QuestionRe: S.M.A.R.T in Hard Disk Drive Pin
David Crow21-Apr-09 7:52
David Crow21-Apr-09 7:52 

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.