Click here to Skip to main content
15,891,375 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Function to pointer problem Pin
Chris Losinger9-Aug-12 8:34
professionalChris Losinger9-Aug-12 8:34 
GeneralRe: Function to pointer problem Pin
_Flaviu9-Aug-12 8:38
_Flaviu9-Aug-12 8:38 
GeneralRe: Function to pointer problem Pin
enhzflep9-Aug-12 8:43
enhzflep9-Aug-12 8:43 
GeneralRe: Function to pointer problem Pin
_Flaviu9-Aug-12 19:11
_Flaviu9-Aug-12 19:11 
GeneralRe: Function to pointer problem Pin
wangweixu9-Aug-12 20:14
wangweixu9-Aug-12 20:14 
GeneralRe: Function to pointer problem Pin
Joan M9-Aug-12 23:48
professionalJoan M9-Aug-12 23:48 
QuestionGood bootstrapping resources Pin
Brandon-X120009-Aug-12 2:10
Brandon-X120009-Aug-12 2:10 
AnswerRe: Good bootstrapping resources Pin
Randor 9-Aug-12 5:03
professional Randor 9-Aug-12 5:03 
Brandon,

If you are still working on this nuclearBoot[^] bootstrap project... then you should forget about doing this from a MBR bootstrap. How exactly do you plan on mounting NTFS/FAT32/exFAT drives? Do you realize that you would need to implement your own filesystem parsers? At such a low level... you would be dealing with raw disk sectors unless you plan on parsing these file systems yourself.

If I were you I would take a look at BusyBox[^] and use that for your project. It can be customized to do everything you want...

1.) It is customizable and bootable.
2.) It can mount NTFS,FAT,FAT32,Ext2/3/4 and more...
3.) You easily could move/delete/backup files from your application.
4.) You could fill a drive with zeros by doing 'dd if=/dev/zero of=/dev/sda bs=1M'
5.) You could fill a drive with randomness by doing 'dd if=/dev/urandom of=/dev/sda bs=1M'
6.) Everything is open source! You could modify or improve the source code.

Best Wishes,
-David Delaune
GeneralMessagebox Pin
sarfaraznawaz8-Aug-12 21:24
sarfaraznawaz8-Aug-12 21:24 
QuestionRe: Messagebox Pin
Eugen Podsypalnikov8-Aug-12 21:40
Eugen Podsypalnikov8-Aug-12 21:40 
GeneralRe: Messagebox PinPopular
pasztorpisti8-Aug-12 23:23
pasztorpisti8-Aug-12 23:23 
GeneralRe: Messagebox Pin
sarfaraznawaz10-Aug-12 1:27
sarfaraznawaz10-Aug-12 1:27 
GeneralRe: Messagebox Pin
pasztorpisti10-Aug-12 2:27
pasztorpisti10-Aug-12 2:27 
GeneralRe: Messagebox Pin
sarfaraznawaz12-Aug-12 19:39
sarfaraznawaz12-Aug-12 19:39 
GeneralRe: Messagebox Pin
pasztorpisti12-Aug-12 19:50
pasztorpisti12-Aug-12 19:50 
GeneralRe: Messagebox Pin
pasztorpisti9-Aug-12 20:55
pasztorpisti9-Aug-12 20:55 
QuestionHow to check if a character is from keyboard in MFC Pin
Andraw1118-Aug-12 10:50
Andraw1118-Aug-12 10:50 
QuestionRe: How to check if a character is from keyboard in MFC Pin
Eugen Podsypalnikov8-Aug-12 11:03
Eugen Podsypalnikov8-Aug-12 11:03 
AnswerRe: How to check if a character is from keyboard in MFC Pin
Software_Developer8-Aug-12 20:05
Software_Developer8-Aug-12 20:05 
GeneralRe: How to check if a character is from keyboard in MFC Pin
Peter_in_27808-Aug-12 20:25
professionalPeter_in_27808-Aug-12 20:25 
GeneralRe: How to check if a character is from keyboard in MFC Pin
Software_Developer8-Aug-12 21:43
Software_Developer8-Aug-12 21:43 
JokeRe: How to check if a character is from keyboard in MFC Pin
Eugen Podsypalnikov8-Aug-12 22:17
Eugen Podsypalnikov8-Aug-12 22:17 
QuestionCB_SELECTSTRING related question Pin
tagopi8-Aug-12 0:24
tagopi8-Aug-12 0:24 
AnswerRe: CB_SELECTSTRING related question Pin
Eugen Podsypalnikov8-Aug-12 0:33
Eugen Podsypalnikov8-Aug-12 0:33 
GeneralRe: CB_SELECTSTRING related question Pin
tagopi8-Aug-12 0:36
tagopi8-Aug-12 0:36 

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.