5
votes
5answers
886 views
extern “C”
Hello, Stack Overflow!
I was wondering what exactly putting 'extern "C"' in your C++ program does.
Thanks!
4
votes
3answers
108 views
‘operater 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);
…
4
votes
4answers
305 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 …
4
votes
3answers
478 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 su …
3
votes
1answer
429 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 …
3
votes
8answers
632 views
C++ best way to define cross-file constants
Hi,
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:
con …
2
votes
2answers
82 views
Using extern in C doesn’t work as expected
Hi, I have created two files:
tunables.h
#ifndef TUNABLES_H
#define TUNABLES_H
void tunables_load_conservative();
void tunables_load_aggressive();
extern int timer_x;
#endif /* …
2
votes
4answers
129 views
How to set up a C++ function so that it can be used by p/invoke?
Hopefully this is a brainlessly easy question, but it shows my lack of expertise with C++. I'm a C# programmer, and I've done extensive work with P/Invoke in the past with other p …
2
votes
5answers
168 views
Extern Function???
Simple1.c
------------------------------------
#include"stdio.h"
int f1(int x, int y)
{
printf("%d %d", x, y);
return x+y;
}
-----------------------------------
Simple2.c
-------- …
2
votes
4answers
228 views
Why do some const variables referring to some exported const variables get the value 0?
Consider the following. I have two exported constants as follows:
// somefile.h
extern const double cMyConstDouble;
extern const double cMyConstDouble2;
and
// somefile.cpp
con …
2
votes
6answers
383 views
Is this extern harmless
main.h
extern int array[100];
main.c
#include "test.h"
int array[100] = {0};
int main(void)
{
/* do_stuff_with_array */
}
In the main.c module, the array is defined, a …
2
votes
3answers
727 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 th …
1
vote
5answers
111 views
Question on extern specifier in C
How does the following example usage of extern specifer behave.
We have a global variable int x both in files one.c and two.c
We want to use these in three.c so have declared this …
1
vote
1answer
71 views
C-DLL from C++ source
I have a C-Wrapper for my C++ Framework. Since this should run on mac and windows I am using scons:
env = Environment()
env.Append(CPPPATH = ['./'])
env.Append(LIBS = 'kernel32.li …
1
vote
1answer
40 views
use of extern methods between dll projects?
I have a debug condition to manage memory where I have
extern void* operator new(unsigned int size, const char* file, int line);
extern void operator delete(void* address, …
