Click here to Skip to main content
15,908,173 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CButton with Bitmap Transparency Pin
Lane Yu8-Oct-05 8:24
Lane Yu8-Oct-05 8:24 
QuestionRe: CButton with Bitmap Transparency Pin
fjlv20058-Oct-05 9:14
fjlv20058-Oct-05 9:14 
AnswerRe: CButton with Bitmap Transparency Pin
PJ Arends8-Oct-05 18:23
professionalPJ Arends8-Oct-05 18:23 
AnswerRe: CButton with Bitmap Transparency Pin
Lane Yu8-Oct-05 18:46
Lane Yu8-Oct-05 18:46 
Questionuse of extern keyword Pin
swaapu8-Oct-05 2:46
swaapu8-Oct-05 2:46 
AnswerRe: use of extern keyword Pin
G Haranadh8-Oct-05 3:08
G Haranadh8-Oct-05 3:08 
AnswerRe: use of extern keyword Pin
Bob Stanneveld8-Oct-05 7:02
Bob Stanneveld8-Oct-05 7:02 
AnswerRe: use of extern keyword Pin
John R. Shaw8-Oct-05 22:14
John R. Shaw8-Oct-05 22:14 
The extern keyword simply states that the variable or function is declared in a seperate translational unit. That is it is declared and defined in a seperate file from the one that depends on it.

Declaring a function prototype as external, only serves to inform the coder that it is declared and defined in another file.

Defining a variable as external, informs the complire that it is declared and defined golobaly in another file. The difference between a function protype and a global variable, is that a global variable must be declared external and a prototype is external by default.

I've workd with C code that required alot on global variables (dealing with hardware specific addresses). In that case a file was set off to the side to define all the hardware specific data (global variables), which needed to be declared as extern.

INTP
Every thing is relative...
Questionhow to use ADO to store and retrieve image data from Oracle using VC++ Pin
snprani8-Oct-05 2:07
snprani8-Oct-05 2:07 
GeneralRe: how to use ADO to store and retrieve image data from Oracle using VC++ Pin
G Haranadh8-Oct-05 9:53
G Haranadh8-Oct-05 9:53 
QuestionHow to use CByteArray to store images into PostgreSQL database from VC++ Pin
snprani8-Oct-05 2:06
snprani8-Oct-05 2:06 
QuestionGNFS and SNFS Pin
RedDragon2k8-Oct-05 1:20
RedDragon2k8-Oct-05 1:20 
QuestionInteraction between dialog boxes Pin
swaapu7-Oct-05 23:58
swaapu7-Oct-05 23:58 
AnswerRe: Interaction between dialog boxes Pin
Intertherain8-Oct-05 2:20
Intertherain8-Oct-05 2:20 
GeneralRe: Interaction between dialog boxes Pin
swaapu8-Oct-05 2:50
swaapu8-Oct-05 2:50 
GeneralRe: Interaction between dialog boxes Pin
Mircea Puiu8-Oct-05 21:12
Mircea Puiu8-Oct-05 21:12 
Question(Urgent help need)Enabling UNICODE support in VC++ Pin
Amit j Patil7-Oct-05 22:21
Amit j Patil7-Oct-05 22:21 
AnswerRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Supriya Tonape7-Oct-05 22:34
Supriya Tonape7-Oct-05 22:34 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Amit j Patil7-Oct-05 22:53
Amit j Patil7-Oct-05 22:53 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Supriya Tonape7-Oct-05 23:19
Supriya Tonape7-Oct-05 23:19 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Amit j Patil7-Oct-05 23:29
Amit j Patil7-Oct-05 23:29 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Supriya Tonape7-Oct-05 23:52
Supriya Tonape7-Oct-05 23:52 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Amit j Patil8-Oct-05 0:06
Amit j Patil8-Oct-05 0:06 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Supriya Tonape8-Oct-05 0:17
Supriya Tonape8-Oct-05 0:17 
GeneralRe: (Urgent help need)Enabling UNICODE support in VC++ Pin
Amit j Patil8-Oct-05 0:57
Amit j Patil8-Oct-05 0:57 

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.