Click here to Skip to main content
15,912,507 members

Lim Bio Liong - Professional Profile



Summary

    Blog RSS
64,961
Author
1,663
Authority
588
Debator
112
Organiser
1,019
Participant
0
Editor
0
Enquirer
Lim Bio Liong is a Specialist at a leading Software House in Singapore.

Bio has been in software development for over 10 years. He specialises in C/C++ programming and Windows software development.

Bio has also done device-driver development and enjoys low-level programming. Bio has recently picked up C# programming and has been researching in this area.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralWhen do we use extern "C"? Is this a compiler-specific feature? Pin
Lim Bio Liong19-Mar-06 5:39
Lim Bio Liong19-Mar-06 5:39 
The extern "C" declaration is used to tell the C++ compiler not to mangle the symbol which is being declared.

When the C++ compiler encounters a function name like "DisplayCurrentThreadId()" which has not been declared as extern "C", it will emit a symbol for it which will look like the following :

?DisplayCurrentThreadId@@YAXXZ
The actual symbol produced depends on the compiler used (the above was produced by VC++ 6.0). This symbol will be used in the resulting OBJ file for linking purposes.

C++ has a variety of reasons for symbol name mangling, of course. But the reason for the mangling of function names (both class functions and global ones) is to enable function name overloading (i.e. using the same function name with different parameter types).

If extern "C" was used to declare the function, the symbol produced for it could be:

_DisplayCurrentThreadId
This depends on the compiler used. But the bottom line is that no function name overloading will be allowed (since the C language does not support this, hence extern "C").

GeneralRe: When do we use extern "C"? Is this a compiler-specific feature? Pin
Yaki_1513-Sep-06 3:58
Yaki_1513-Sep-06 3:58 
GeneralConcerning Proxy/Stub DLLs [modified] Pin
Lim Bio Liong18-Mar-06 5:36
Lim Bio Liong18-Mar-06 5:36 
GeneralRe: Concerning Proxy/Stub DLLs [modified] Pin
Lim Bio Liong2-May-07 23:17
Lim Bio Liong2-May-07 23:17 
GeneralRe: Concerning Proxy/Stub DLLs Pin
Lim Bio Liong20-Jun-08 1:08
Lim Bio Liong20-Jun-08 1:08 
Generaluse of mem_fun1 and mem_fun_ref in for_each() Pin
Lim Bio Liong13-Mar-06 0:24
Lim Bio Liong13-Mar-06 0:24 
GeneralRe: use of mem_fun1 and mem_fun_ref in for_each() Pin
Lim Bio Liong13-Mar-06 0:28
Lim Bio Liong13-Mar-06 0:28 
GeneralEclipse CDT Pin
Lim Bio Liong4-Mar-06 6:34
Lim Bio Liong4-Mar-06 6:34 
GeneralRelease Minimum Dependency Project Settings Pin
Lim Bio Liong4-Mar-06 5:54
Lim Bio Liong4-Mar-06 5:54 
GeneralRe: Release Minimum Dependency Project Settings Pin
Lim Bio Liong4-Mar-06 5:56
Lim Bio Liong4-Mar-06 5:56 
GeneralTemplate Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:31
Lim Bio Liong21-Feb-06 4:31 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:32
Lim Bio Liong21-Feb-06 4:32 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:33
Lim Bio Liong21-Feb-06 4:33 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:34
Lim Bio Liong21-Feb-06 4:34 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Lim Bio Liong21-Feb-06 4:36
Lim Bio Liong21-Feb-06 4:36 
GeneralRe: Template Explicit Specialization & Policy-Based Design Pin
Jubith26-Mar-08 3:56
Jubith26-Mar-08 3:56 
GeneralAdvanced C++ : Placement New Pin
Lim Bio Liong19-Feb-06 19:44
Lim Bio Liong19-Feb-06 19:44 
GeneralRe: Advanced C++ : Placement New Pin
Lim Bio Liong19-Feb-06 19:51
Lim Bio Liong19-Feb-06 19:51 
GeneralDCOM Settings on Server side (WinXP SP2) Pin
Lim Bio Liong15-Feb-06 1:34
Lim Bio Liong15-Feb-06 1:34 
GeneralINI File Comments Pin
Lim Bio Liong1-Feb-06 23:38
Lim Bio Liong1-Feb-06 23:38 
GeneralCLASS_E_NOTLICENSED when trying to instantiate VB Controls Pin
Lim Bio Liong30-Dec-05 1:31
Lim Bio Liong30-Dec-05 1:31 
GeneralHow to call a COM C# component from VC++ Pin
Lim Bio Liong14-Dec-05 2:46
Lim Bio Liong14-Dec-05 2:46 
GeneralRe: How to call a COM C# component from VC++ Pin
Lim Bio Liong14-Dec-05 2:46
Lim Bio Liong14-Dec-05 2:46 
GeneralApartment Types of .NET Components Running as COM Objects Pin
Lim Bio Liong25-Nov-05 12:47
Lim Bio Liong25-Nov-05 12:47 
GeneralSTA's and message pumps in win32.programmer.ole Pin
Lim Bio Liong10-Nov-05 17:41
Lim Bio Liong10-Nov-05 17:41 

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.