Click here to Skip to main content
15,922,015 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Richard MacCutchan12-Jul-10 8:39
mveRichard MacCutchan12-Jul-10 8:39 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
hypheni12-Jul-10 21:05
hypheni12-Jul-10 21:05 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Richard MacCutchan12-Jul-10 22:01
mveRichard MacCutchan12-Jul-10 22:01 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Tim De Baets13-Jul-10 4:00
Tim De Baets13-Jul-10 4:00 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Tim De Baets13-Jul-10 4:35
Tim De Baets13-Jul-10 4:35 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Richard MacCutchan13-Jul-10 5:50
mveRichard MacCutchan13-Jul-10 5:50 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
hypheni13-Jul-10 8:24
hypheni13-Jul-10 8:24 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Richard MacCutchan13-Jul-10 21:45
mveRichard MacCutchan13-Jul-10 21:45 
GeneralRe: How to code a skinned UI like in Windows Media Player? Pin
Tim De Baets14-Jul-10 2:00
Tim De Baets14-Jul-10 2:00 
QuestionVisual C++ 2010 - 2008 Feature Pack Documentation Pin
bob1697212-Jul-10 5:11
bob1697212-Jul-10 5:11 
QuestionGettign value from console to MFC Pin
Anu_Bala12-Jul-10 2:19
Anu_Bala12-Jul-10 2:19 
AnswerRe: Gettign value from console to MFC Pin
Rajesh R Subramanian12-Jul-10 3:46
professionalRajesh R Subramanian12-Jul-10 3:46 
QuestionCLineTracker and CRectTracker project arhitecture Pin
mesajflaviu12-Jul-10 1:48
mesajflaviu12-Jul-10 1:48 
QuestionHow to use arthimetic operation Pin
raju_shiva12-Jul-10 1:02
raju_shiva12-Jul-10 1:02 
AnswerRe: How to use arthimetic operation Pin
Aescleal12-Jul-10 1:26
Aescleal12-Jul-10 1:26 
AnswerRe: How to use arthimetic operation Pin
Cedric Moonen12-Jul-10 1:30
Cedric Moonen12-Jul-10 1:30 
GeneralRe: How to use arthimetic operation Pin
raju_shiva12-Jul-10 1:46
raju_shiva12-Jul-10 1:46 
GeneralRe: How to use arthimetic operation Pin
Cedric Moonen12-Jul-10 2:00
Cedric Moonen12-Jul-10 2:00 
GeneralRe: How to use arthimetic operation Pin
raju_shiva12-Jul-10 2:23
raju_shiva12-Jul-10 2:23 
GeneralRe: How to use arthimetic operation Pin
Cedric Moonen12-Jul-10 2:26
Cedric Moonen12-Jul-10 2:26 
AnswerRe: How to use arthimetic operation Pin
Maximilien12-Jul-10 1:31
Maximilien12-Jul-10 1:31 
QuestionFCB and BIOS file operations Pin
Jayapal Chandran12-Jul-10 0:28
Jayapal Chandran12-Jul-10 0:28 
AnswerRe: FCB and BIOS file operations Pin
Code-o-mat12-Jul-10 0:49
Code-o-mat12-Jul-10 0:49 
AnswerRe: FCB and BIOS file operations Pin
Aescleal12-Jul-10 1:09
Aescleal12-Jul-10 1:09 
I can't really tell from your question but you appear to be trying to find out:

- whether C stdio (FILE *) still exists. It does and works just as well as it always did. Please note that DOS FCBs were nothing to do with C's stdio library although ancient C compilers may have used them internally.

- whether the low level BIOS wrapper interface from 16 bit versions of C still exists. The answer to that one is that even if it does you won't be able to call it from a Windows app as Windows has a habit of killing apps that try using the BIOS to write to things they shouldn't.

You don't need to issue interrupts to get system services in Windows. Interrupts were just a way of providing a small (but complex) interface to the operating system. These days the userland libraries in your OS do that for you. In Windows they're NTDLL, GDI and KERNEL. Just call the functions and don't worry about the underlying details.

There are ways of monitoring file behaviour - security software does it all the time. You have to write a file system filter driver to do this though. If you do a Google search you'll find loads of confusing information to sift through.

Cheers,

Ash
GeneralRe: FCB and BIOS file operations Pin
Jayapal Chandran12-Jul-10 1:40
Jayapal Chandran12-Jul-10 1:40 

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.