Click here to Skip to main content
15,884,237 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Link Error Which .lib to include Pin
ForNow22-Mar-15 16:50
ForNow22-Mar-15 16:50 
GeneralRe: Link Error Which .lib to include Pin
Frankie-C23-Mar-15 0:36
Frankie-C23-Mar-15 0:36 
GeneralRe: Link Error Which .lib to include Pin
ForNow23-Mar-15 2:10
ForNow23-Mar-15 2:10 
AnswerRe: Link Error Which .lib to include Pin
Frankie-C22-Mar-15 0:19
Frankie-C22-Mar-15 0:19 
QuestionMALLOC FUNCTION IMPLEMENTATION Pin
Member 1154244420-Mar-15 10:45
Member 1154244420-Mar-15 10:45 
GeneralRe: MALLOC FUNCTION IMPLEMENTATION Pin
PIEBALDconsult20-Mar-15 11:35
mvePIEBALDconsult20-Mar-15 11:35 
QuestionRe: MALLOC FUNCTION IMPLEMENTATION Pin
jeron120-Mar-15 11:56
jeron120-Mar-15 11:56 
AnswerRe: MALLOC FUNCTION IMPLEMENTATION Pin
jschell20-Mar-15 13:03
jschell20-Mar-15 13:03 
A very simple and realistically non-worthwhile implementation is simple. Your malloc calls new with an byte array. Then your free, which you would also implement would use delete to delete the array.

If you want a learning experience however then you should do the following in the specified order.
1. Learn what stack and list are and how to implement them.
2. Specifically learn how to implement them using sequential memory and not just pointers.
3. Learn how malloc is generally implemented. You will need substantial understanding of 1/2 to understand this.
4. Implement your own heap management. (Which you will understand after doing 1/2/3.)
QuestionHow to use MFC to design an app that can connect 2 types of database Pin
DHLao19-Mar-15 17:36
DHLao19-Mar-15 17:36 
AnswerRe: How to use MFC to design an app that can connect 2 types of database Pin
Jochen Arndt19-Mar-15 22:38
professionalJochen Arndt19-Mar-15 22:38 
GeneralRe: How to use MFC to design an app that can connect 2 types of database Pin
DHLao19-Mar-15 23:06
DHLao19-Mar-15 23:06 
GeneralRe: How to use MFC to design an app that can connect 2 types of database Pin
Jochen Arndt19-Mar-15 23:29
professionalJochen Arndt19-Mar-15 23:29 
AnswerRe: How to use MFC to design an app that can connect 2 types of database Pin
jschell20-Mar-15 13:06
jschell20-Mar-15 13:06 
QuestionTo copy path of selected file or folder Pin
Member 1147315918-Mar-15 7:33
Member 1147315918-Mar-15 7:33 
QuestionRe: To copy path of selected file or folder Pin
jeron118-Mar-15 8:11
jeron118-Mar-15 8:11 
AnswerREPOST Pin
Richard Deeming18-Mar-15 8:37
mveRichard Deeming18-Mar-15 8:37 
QuestionHow to fast read excel file, with VC2005 Pin
lichengbyd18-Mar-15 2:46
lichengbyd18-Mar-15 2:46 
AnswerRe: How to fast read excel file, with VC2005 Pin
Jochen Arndt18-Mar-15 3:09
professionalJochen Arndt18-Mar-15 3:09 
GeneralRe: How to fast read excel file, with VC2005 Pin
lichengbyd18-Mar-15 3:50
lichengbyd18-Mar-15 3:50 
GeneralRe: How to fast read excel file, with VC2005 Pin
Jochen Arndt18-Mar-15 4:02
professionalJochen Arndt18-Mar-15 4:02 
GeneralRe: How to fast read excel file, with VC2005 Pin
lichengbyd18-Mar-15 4:30
lichengbyd18-Mar-15 4:30 
QuestionWriting Vector object into a .txt file Pin
Member 935023718-Mar-15 0:16
Member 935023718-Mar-15 0:16 
AnswerRe: Writing Vector object into a .txt file Pin
Jochen Arndt18-Mar-15 0:46
professionalJochen Arndt18-Mar-15 0:46 
GeneralRe: Writing Vector object into a .txt file Pin
Member 935023718-Mar-15 1:38
Member 935023718-Mar-15 1:38 
AnswerRe: Writing Vector object into a .txt file Pin
Jochen Arndt18-Mar-15 1:59
professionalJochen Arndt18-Mar-15 1:59 

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.