Click here to Skip to main content
15,913,669 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralNeed GetModuleFileName for UNIX. Pin
Alvaro Mendez25-Jan-01 6:13
Alvaro Mendez25-Jan-01 6:13 
GeneralRe: Need GetModuleFileName for UNIX. Pin
Roger Scudder25-Jan-01 9:24
Roger Scudder25-Jan-01 9:24 
GeneralRe: Need GetModuleFileName for UNIX. Pin
James R. Twine30-Jan-01 9:26
James R. Twine30-Jan-01 9:26 
GeneralPrinting problem!!! Pin
25-Jan-01 5:09
suss25-Jan-01 5:09 
GeneralRe: Printing problem!!! Pin
Michael A Barnhart25-Jan-01 6:18
Michael A Barnhart25-Jan-01 6:18 
QuestionWhat is a bit mask and when it is used?? Pin
25-Jan-01 4:37
suss25-Jan-01 4:37 
QuestionWhat is a bit mask and when it is used?? Pin
25-Jan-01 4:37
suss25-Jan-01 4:37 
AnswerRe: What is a bit mask and when it is used?? Pin
David Fedolfi25-Jan-01 6:16
David Fedolfi25-Jan-01 6:16 
bitmasking lets you use an unsigned datatype as a collection of flags. If you use an int then you get 32 flags that you can set. To set any of the flags you would use
var |= FlagToSet
and to check if a flag (single bit) is set you would
if (var & FlagToCheck)
which will check on a bit by bit basis and return the result. If the bit(s) specified in FlagToCheck are not set in var then the result will be 0. If any of the flags are set then it will be nonzero (actual result based on which bits are set).

QuestionInterface or Hook? Pin
Tom K25-Jan-01 3:03
Tom K25-Jan-01 3:03 
AnswerRe: Interface or Hook? Pin
Julien29-Jan-01 15:42
Julien29-Jan-01 15:42 
GeneralNT Service Question (Sleep vs idle) Pin
Michael A Barnhart25-Jan-01 3:01
Michael A Barnhart25-Jan-01 3:01 
GeneralRe: NT Service Question (Sleep vs idle) Pin
Michael A Barnhart26-Jan-01 3:11
Michael A Barnhart26-Jan-01 3:11 
QuestionCan a DLL be spied on? Pin
Matt Philmon25-Jan-01 2:55
Matt Philmon25-Jan-01 2:55 
AnswerRe: Can a DLL be spied on? Pin
29-Jan-01 2:30
suss29-Jan-01 2:30 
QuestionHow to visualize a large depot ??? Pin
24-Jan-01 23:35
suss24-Jan-01 23:35 
AnswerRe: How to visualize a large depot ??? Pin
25-Jan-01 2:40
suss25-Jan-01 2:40 
Generala prog like Spy++ Pin
Tom K24-Jan-01 21:23
Tom K24-Jan-01 21:23 
GeneralRe: a prog like Spy++ Pin
24-Jan-01 23:00
suss24-Jan-01 23:00 
GeneralRe: a prog like Spy++ Pin
Tom K25-Jan-01 1:41
Tom K25-Jan-01 1:41 
GeneralCObArray Assertion !!! Pin
24-Jan-01 20:54
suss24-Jan-01 20:54 
GeneralRe: CObArray Assertion !!! Pin
AlexMarbus25-Jan-01 7:47
AlexMarbus25-Jan-01 7:47 
GeneralRe: CObArray Assertion !!! Pin
25-Jan-01 20:29
suss25-Jan-01 20:29 
GeneralRe: CObArray Assertion !!! Pin
6-Feb-01 12:34
suss6-Feb-01 12:34 
GeneralLoadstring Fails on Win98 Pin
Lea Johnson24-Jan-01 18:02
Lea Johnson24-Jan-01 18:02 
GeneralRe: Loadstring Fails on Win98 Pin
Matt.W.24-Jan-01 19:05
Matt.W.24-Jan-01 19:05 

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.