Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
6answers
1k views

What does mean for a name or type to have a certain language linkage?

According to (c) ANSI ISO/IEC 14882:2003, page 127: Linkage specifications nest. When linkage specifications nest, the innermost one determines the language. A linkage specification does not ...
24
votes
6answers
6k views

what does extern “C” in C++ source?

I was wondering what exactly putting 'extern "C"' in your C++ program does. like in : extern "C" { void foo(); }
12
votes
6answers
857 views

Why do you need “extern C” for C++ callbacks to C functions?

I find such examples in Boost code. namespace boost { namespace { extern "C" void *thread_proxy(void *f) { .... } } // anonymous void thread::thread_start(...) { ...
10
votes
2answers
86 views

No linkage at block scope?

Do all variables declared in a block have 'no linkage'? For example: 1: If I declare a static variable: void foo() { static int i; } Would it have an internal linkage or no linkage? If no ...
9
votes
3answers
149 views

Why can extern be applied to definitions?

Why is this legal? extern int foo = 0xF00; // Gets a warning, still compiles extern void bar() { // No warning int x; } Is there a reason to why this is allowed?
9
votes
3answers
2k views

Javascript and WebGL, external scripts

Just curious; How do I place my webgl shaders, in an external file? Currently I'm having; <script id="shader-fs" type="x-shader/x-fragment"> #ifdef GL_ES precision ...
8
votes
3answers
816 views

How to name a constant in Objective-C?

What's the naming convention for constants in Objective-C (or most widely used way to name them)? Is there a different criteria for extern constants? Some styles I have seen: NSString* const ...
8
votes
8answers
718 views

Newbie question: When to use extern “C” { //code }?

Maybe I'm not understanding the differences between C and C++, but when and why do we need to use: extern "C" { ? Apparently its a "linkage convention"? I read about it briefly and noticed that ...
8
votes
2answers
365 views

Why does this separate definition cause an error?

Solution: This is an interesting problem, because sometimes we have no choice but to declare an explicitly qualified name. std::string convert(); namespace tools { class Numeric { // ... ...
7
votes
3answers
214 views

C++ global extern “C” friend can't reach private member on namespaced class

Please consider the code: #include <iostream> using namespace std; extern "C" void foo( void ); namespace A { template< int No > class Bar { private: ...
7
votes
5answers
319 views

How do I share a global variable between c files?

If i define a global variable in a .c file, how can i use the value of the same variable in another .c file? file1.c #include<stdio.h> int i=10; int main() { printf("%d",i); return 0; } ...
7
votes
2answers
144 views

Using C-style struct/typedef from within C++

I have a project that is mixing C and C++. In a C header file, I have code like this: typedef struct mystruct* mystruct; struct mystruct { // whatever struct needs }; And to use this in the ...
7
votes
5answers
267 views

why does following program work

I wrote following program #include<stdio.h> main () { extern int i; printf("\n%d",i); } int i=30; I was expecting an error message as i is initialized after main but on the ...
7
votes
3answers
922 views

How to declare my very own CGRectZero like constant?

This is a newbie C/Objective-C question :-) Let say I want a CGRectOne and a CGRectTwo constants. How can I declare that? Thanks, Jérémy
6
votes
5answers
634 views

Reasons to use Static functions and variables in C

I wonder about the use of the static keyword as scope limiting for variables in a file, in C. The standard way to build a C program as I see it is to: have a bunch of c files defining functions and ...
6
votes
5answers
521 views

Is extern keyword really necessary?

... #include "test1.h" int main(..) { count << aaa <<endl; } aaa is defined in test1.h,and I didn't use extern keyword,but still can reference aaa. So I doubt is extern really ...
6
votes
5answers
302 views

What is the Effect of Declaring 'extern “C”' in the Header to a C++ Shared Library?

Based on this question I understand the purpose of the construct in linking C libraries with C++ code. Now suppose the following: I have a '.so' shared library compiled with a C++ compiler. The ...
6
votes
8answers
2k views

How does an “extern C” declaration work?

I'm taking a programming languages course and we're talking about the "extern C" declaration. How does this declaration work at a deeper level other than "it interfaces C and C++"? How does this ...
6
votes
4answers
1k views

Is extern “C” only required on the function declaration?

I wrote a C++ function that I need to call from a C program. To make it callable from C, I specified extern "C" on the function declaration. I then compiled the C++ code, but the compiler (Dignus ...
6
votes
3answers
1k views

Does extern “C” have any effect in C?

I just got some C code that uses extern "C" to declare external functions like this: extern "C" void func(); Is this valid C? I'm getting an error at this line, but I'm not sure if it's because ...
5
votes
2answers
103 views

Block scope linkage C standard

The following identifiers have no linkage: an identifier declared to be anything other than an object or a function; an identifier declared to be a function parameter; a block scope identifier for an ...
5
votes
4answers
167 views

extern C and struct method

Given the following C++ code, #ifdef __cplusplus extern "C" { #endif struct foo { void getNum() { } }; #ifdef __cplusplus } #endif int main (int ...
5
votes
4answers
114 views

Externing functions in C++

When externing a function in the cpp file does the compiler treat these differently? extern void foo(char * dataPtr); void foo(char *); extern void foo(char * ); I am wondering because I have ...
5
votes
2answers
179 views

extern variable - why?

I've heard that you shouldn't define anything in header files, because of the possibility of multiple defines, but if you have include guards, this shouldn't happen, right? What other reasons are ...
5
votes
5answers
624 views

Why can't templates be within extern “C” blocks?

This is a follow-up question to an answer to Is it possible to typedef a pointer-to-extern-“C”-function type within a template? This code fails to compile with g++, Visual C/C++, and Comeau C/C++ ...
5
votes
1answer
293 views

Extern struct in C

I have a C file generated with F2C (Fortan to C translator) that contains the following C structure: struct { real rez, pi, st; } const_; How can I declare this const_ variable as an external ...
5
votes
4answers
532 views

Linkage of various const/static variables

I have a few questions about the linkage from the following variables. By examples of 7.1.1/7 of C++03 and experimenting with compilers (Comeau, Clang and GCC), I came to the following linkage kinds: ...
5
votes
5answers
640 views

Should functions be made “extern” in header files?

Should functions be made extern in header files? Or are they extern by default? For example, should I write this: // birthdays.h struct person find_birthday(const char* name); or this: // ...
5
votes
4answers
749 views

The C++ 'new' keyword and C [closed]

Possible Duplicate: Use the keyword class as a variable name in C++ In a C header file of a library I'm using one of the variables is named 'new'. Unfortunately, I'm using this library in a ...
5
votes
2answers
2k views

What does the extern keyword mean?

What does the extern keyword mean? I've seen that in front of an function declaration like extern void DoFoo ...
5
votes
3answers
4k views

Forward-declare enum in Objective-C

I'm having trouble with enum visibility in an Objective-C program. I have two header files, and one defines a typedef enum. Another file needs to use the typedef'd type. In straight C, I would simply ...
5
votes
1answer
4k views

Linking extern variables in C

In Unix, I have got three main files. Ones of them as a library and the other one as a program. MyLib.c and MyLic.h are the library. main.c is the program. In MyLic.h I have a declaration (extern ...
5
votes
5answers
14k views

“Unable to find an entry point named [function] in dll” (c++ to c# type conversion)

I have a dll which comes from a third party, which was written in C++. Here is some information that comes from the dll documentation: //start documentation RECO_DATA{ wchar_t Surname[200]; wchar_t ...
4
votes
3answers
81 views

extern keyword “missing type specifier”

I'm creating a DLL using Visual C++ Express, and when declaring extern ValveInterfaces* VIFace inside Required.h, the compiler is telling me that ValveInterfaces isn't defined. (I want to expose ...
4
votes
3answers
103 views

Trying to use extern in reverse order

When we have an exe or dll and a static library attached to it, we are able to use extern keyword to access static library's variables and/or functions from the exe or dll. To make things simpler, ...
4
votes
6answers
146 views

C — Accessing a non-const through const declaration

Is accessing a non-const object through a const declaration allowed by the C standard? E.g. is the following code guaranteed to compile and output 23 and 42 on a standard-conforming platform? ...
4
votes
1answer
120 views

friendship with extern “C” function seems to require :: to qualify name

Trying to make a class friends with an extern "C" function, this code works: #include <iostream> extern "C" { void foo(); } namespace { struct bar { // without :: this refuses to ...
4
votes
2answers
98 views

external array definition

I would like to define array of strings in different cpp file, but there seems to be some discrepancy between definition and declaration when I try to make pointer (array element) also const. Using ...
4
votes
2answers
140 views

How to use switch with extern constants?

Some code.cpp file contains extern const int v1; extern const int v2; extern const int v3; extern const int v4; int _tmain(int argc, _TCHAR* argv[]) { int aee = v1; switch (aee) { ...
4
votes
3answers
511 views

How does extern work in C#?

Whenever I look deeply enough into reflector I bump into extern methods with no source. I read the msdn documentation at http://msdn.microsoft.com/en-us/library/e59b22c5(v=vs.80).aspx. What I got ...
4
votes
3answers
315 views

Is it possible to typedef a pointer-to-extern-“C”-function type within a template?

I want to add a public typedef to a template for a pointer to a function-taking-one-argument that uses "C" language linkage. I tried: extern "C" { template <typename return_t_, typename ...
4
votes
9answers
461 views

global variables in C++

In a C++ multi-threaded application with many classes, i am trying to find out what are the methods to define a global variable C style, define it as global in any one source file, define it as ...
4
votes
4answers
227 views

Trouble with 'extern' Keyword

I have a set of global variables and a method in a cpp file. int a; int b; int c; void DoStuff() { } in the header file I have declared them explicitly with the extern keyword. My problem is ...
4
votes
2answers
808 views

extern variables in static library, using Objective-C

I've built a static library, to be linked in my iPhone apps. This library uses some global variables and functions, like in C. My problem is, when using for example: extern void do_stuff (const int ...
4
votes
2answers
490 views

Problem with extern keyword in C++

What's the difference between the following two declarations? I thought they were equivalent, but the first sample works, and the second does not. I mean it compiles and runs, but the bitmap display ...
4
votes
4answers
987 views

Mixing extern and const

Can I mix extern and const, as extern const? If yes, does the const qualifier impose it's reign only within the scope it's declared in or should it exactly match the declaration of the translational ...
4
votes
3answers
814 views

'operator new': redefinition, different linkage (using _dllspec on redefined new operator)

I am using __declspec(dllimport/export) on a debug version of new as such: #ifdef _DEBUG DECLSPECCORE extern void* operator new(unsigned int size, const char* file, int line); extern void* ...
4
votes
3answers
5k views

What are the requirements for C++ template parameters?

If you are using a template in C++ that takes an integer value as a parameter, are there any requirements on an integer variable used as the parameter that are different than if the variable was used ...
4
votes
8answers
2k views

C++ best way to define cross-file constants

I am working on a game and have an interesting question. I have some game-wide constant values that I want to implement in one file. Right now I have something like this: constants.cpp extern const ...
3
votes
2answers
45 views

Late binding to a library with “extern” defined variables

I'm trying to late bind my program to a DLL. I know how to import its methods but in one its header files, I have a definition like this: EXTERN_C const IID SomeVariable; How can I refer to this ...

1 2 3 4 5