extern is an access-specifier in C which defines a global variable that is visible to all object modules.
1
vote
3answers
41 views
Declaring an extern variable as base and derived class pointers
Say we have a situation like this:
base.h:
class Base { };
derived.h:
#include "base.h"
class Derived : public Base { };
extern Derived *variable;
derived.cpp:
#include "derived.h"
Derived ...
0
votes
2answers
69 views
Extern “C” Usage With Pthreads in OO C++
I have a class that handles all communication with a particular piece of hardware. The hardware requires data updates via one socket, and broadcasts its IP for handshaking purposes on a known (and ...
0
votes
0answers
10 views
defining custom symbols with microsoft 'link' command
I am trying to use the microsoft 'link' command to link some of my code, however I cant figure out how to define addresses for external symbols in the code. ex:
extern void mySymbol(void* data);
int ...
4
votes
3answers
113 views
Why does initializing of an extern variable locally inside a function give an error?
This code compiles fine:
extern int i = 10;
void test()
{
std::cout << "Hi" << i << std::endl;
}
While this one gives an error:
void test()
{
extern int i = 10;
...
2
votes
5answers
69 views
Extern Variable - where should I place it?
I'm developing a small progran. I use Qt for the GUI. I have 2 Forms / Classes. MainWindow and AddProductDialog.
There is a variable (a std::string to be exact) which I need in both of them. I need ...
1
vote
1answer
46 views
extern keyword and setting string variables
I have a struct declared as extern conf_t conf.
typedef struct {
int home_dir_len;
char *home_dir;
int key_file_len;
char *key_file;
unsigned int max_mem;
...
1
vote
1answer
37 views
Make a class defined in extern “C” block able to reference method outside
I'm trying to write a simple plugin for Unity3d iOS which you might have heard about that streams video. I actually managed to do that, the streaming video bit works.
Now i'm trying to add ...
1
vote
1answer
82 views
C++ trouble with extern - undefined reference
main.cpp:
bool lgstatus;
User currentUser;
//...
int main(){ //... }
loginwindow.cpp:
void LoginWindow::on_cmdCreate_clicked()
{
extern bool lgstatus;
extern User currentUser;
//...
...
1
vote
1answer
49 views
Performance of external versus static function call
Is there typically a difference in performance between calling an extern function versus calling a static function? If so, what causes this difference -- aren't both calls mapped the same way (i.e. to ...
1
vote
0answers
8 views
How to calculate Index of extern shared array in Kernel function for 2D grid ?
I m trying to calculate histogram for 65536 range and hence i used extern shared array of size 65536 but confused to calculate its index....
Program is as follows
#include<stdio.h>
...
0
votes
2answers
47 views
using extern with different type but same name varable in C
I have int a[] in one C file. Now in another .c file i have extern int *a .
I need to know what will be the behavior if i try to access variable a in second file and why?
What all problems would ...
4
votes
5answers
93 views
An extern variable located in a function?
According to wikipedia:
http://en.wikipedia.org/wiki/External_variable
An external variable may also be declared inside a function.
What is the purpose of an extern variable being declared ...
0
votes
3answers
51 views
C++ variable extern declarations
I have declared some constants in a header file:
extern int g_iShortSize1FrameEncoded=30;
extern int g_iByteSize1FrameEncoded=(g_iShortSize1FrameEncoded*2);
extern int ...
0
votes
1answer
47 views
Extern Variable initialization
In my project I am working on it since last 6 months , i was using #define to define all URL in a FileManager class.but Now I came to know that I have to use two different URL depend on condition so ...
0
votes
2answers
59 views
Variables declared globally are external or static?
I have studied in c that variables that use keyword extern are externally referenced
for example:
Prog1.c
main(){
extern int a ;
a=2;
}
Prog2.c
int a=3;
these two programs are successfully compiled ...
-1
votes
1answer
71 views
undefined symbol of a struct pointer
I'm working on xinu, and I need to change some *.c files.
I have this struct in file ready.c:
struct newtimer{
struct newtimer* tnext;
struct newtimer* tprev;
int tkey;
int tprio;
...
0
votes
1answer
35 views
How can I pass a “global” pointer to a SDL_Surface to a render-function of a class in C++?
My following problem is related to my previous question here.
I want to pass a "global" screen to a render-function of a class. screen has to be a pointer to a SDL_Surface, because the initial ...
1
vote
1answer
46 views
getenv in Visual C++ 2012
I want to use a getenv function from C in my C++ project in Visual Studio 2012.
The code:
extern "C" System::SByte^ getenv(const System::SByte^ name);
and then in some function:
String^ h1 = ...
1
vote
4answers
67 views
C implicit extern for global variable, when does it happen, how does it work
I'm trying to understand the ways in which a C global variable can be shared between multiple files (compilation units). I've read the excellent question and answer here. However after doing a few ...
3
votes
2answers
54 views
Why is absence of array index in “extern char name[]” not affecting strlen(name) but causing error for sizeof(name)?
Now,from what I understand,the extern in the declaration of name[] tells the compiler that its definition is somewhere else (In my program,I have defined it below the part where I have used it).But ...
-2
votes
2answers
59 views
How to declare/use extern map in c++
I'm not very used and don't really understand the use of global variables in c++, and cannot manage to solve a problem here, although I'm nearly sure I'm using the declarations the right way.
I've got ...
2
votes
2answers
81 views
Accessing external function using function pointer in C
Im trying to link to a extern function using a pointer to it. But everytime I try, I get compiler errors that the extern function is undeclared. I have little experience with external functions, and ...
0
votes
2answers
58 views
C++ : extern variable inside namespace and printf vs cout
i have a little problem with printf and i don't know why !
=>kernel.h
#ifndef KERNEL_H
#define KERNEL_H
namespace kernel
{
extern const double h;
}
#endif // KERNEL_H
=>kernel.cpp
#include ...
-3
votes
2answers
66 views
AJAX post to external url [duplicate]
I am trying to post data with ajax to an external url with the following code:
$(document).ready(function(){
$('.submit_button').click(function() {
$.ajax({
type : 'POST',
...
0
votes
2answers
90 views
Is it good practice to define an extern variable for future 'unset' variables?
I am looking at some code sample. In a .h file, there is this declaration:
extern int NODATA;
which is used in many other files for variables that do not have a logical value.
Is it necessary ...
0
votes
3answers
48 views
Why is use of an array defined in File1 working in File2 (only declared there),even without “extern”?
Here I have two files externdemo1.c and externdemo2.c.In the first file,I have declared and initialized a character array arr at file scope.But I have declared it in the second file externdemo2.c ...
1
vote
4answers
49 views
trouble accessing external float array
I have the following program in two files
main.cpp
float POW10[300];
main(0
{
Fill_POW10();
}
Fill.cpp
extern float *POW10;
Fill_POW10()
{
for(int i=0;i<300;i++)
{
...
1
vote
1answer
92 views
Namespaces in C Headers
We have a code base where there are .cpp and .h, it is set up to be build with gcc
my understanding is that gcc will choose the appropriate compiler for the appropriate files so I believe (and ...
1
vote
3answers
73 views
Can you extern a #define variable in another file?
For example abc.c contains a variable
#define NAME "supreeth"
Can extern the variable NAME in def.c?
0
votes
1answer
109 views
iOS Pass data, singleton, extern or via protocols?
Hy all,
I am really stuck at data passing in my iOS app.
First i have a class with TabBarController and inside another two ViewController.
It's a container view with a daily and weekly calendar ...
0
votes
1answer
45 views
What is wrong with extern short i; i=2; ? gcc complains type conflict
The following code is similar to that of question Is there a difference between initializing a variable and assigning it a value immediately after declaration? downvoted twice, so I am at risk ;-)
...
1
vote
3answers
61 views
C Extern and Pointers
I'm new to C and i must say you i find this pointers and references thing a little bit too hard to undertand. I come from Java, so nothing of this really exists and altough once you get used to it, ...
0
votes
2answers
43 views
Accessing linker defined symbol in C
I have a linker symbol (let's call it __BASE_ADDR), defined in a linker command script, which contains the address of the longword after a longword that I need to use (e.g. I need to check longword at ...
1
vote
2answers
138 views
Undefined reference to global variable
I'm working with C, and the Quake 3 / ioquake engine. Note that this is not a game engine specific question, it's purely a C language query.
g_entities is a variable defined globally in the engine. ...
0
votes
1answer
72 views
exporting C local variables : JNI run-time behavior issue
I want to export some static variables in C library (libA for instance) to use them from outside in other C file.
I used to use extern keyword for the desktop application and it was working, however ...
1
vote
1answer
69 views
C++ game loading objects / global objects
I am still new to C++ so please forgive me if my question is unbearably obvious. I am (attempting) to code an RPG game. Everything is compiling nicely at the moment, however I now have to think about ...
1
vote
1answer
40 views
uninitialized extern NSString usage
In the following class:
MGTileMenu
various extern NSString's are defined in the following way for use as notifications:
.h
extern NSString *MGTileMenuWillDisplayNotification; // menu will be shown
...
1
vote
2answers
61 views
Calling functions using an array of pointers
I have the following files in my program, a header with certain function definitions, and a program with the body of the functions.
something.h
typedef struct _foo {
int id;
int lucky_number;
} ...
0
votes
0answers
21 views
How to refer to a certain dll when I have same namespaces?
In my C# project in Visual Studio 2010 I have added several references to DLLs and it seems that the namespaces of 2 of them have the same name. I get:
The type "zz" exists in both foo.dll and ...
3
votes
1answer
66 views
Extern array of pointers to function
A little bit of context first. My program features a header, work.h. This header contains a structure, some function definitions, and an extern array of pointers to my base functions.
work.h
...
1
vote
1answer
57 views
How do I access a class variable from an extern “C” function?
This is my basic code:
Here's the header file:
/** Include the necessary things **/
Class MyClass{
private:
std::string mystring;
/**
* Declare constructor, methods, yada yada ...
0
votes
2answers
269 views
Importing DLL functions in c# code
I have a DLL, whose functions i want to use in my c# code
Here are the functions of that DLL :
extern "C"
{
__declspec(dllimport)
const char* __stdcall ZAJsonRequestA(const char *szReq);
...
1
vote
1answer
60 views
C++ multiple instanced structs that can be called from other classes
I want to make multiple structs, with different settings...! They all hold the same variables (same names etc)! But different implementations! And this settings should be reachable from another ...
1
vote
1answer
84 views
Best practice to use extern struct or extern pointer to struct?
Say I have 3 files: file1.c, file2.c and globals.h. file1.c and file2.c both include globals.h. file1.c contains a struct that file2.c needs to use. Is it better to make the struct itself extern or ...
1
vote
2answers
155 views
The usage of extern in c++
I've having difficulty understanding how 'extern' works.
I've searched Google but there doesn't seem to be the particular example case I'm trying
If i have a file main.cpp which references one.h
and ...
1
vote
0answers
183 views
parse error before “extern” in C
Previously working program(compiled and linked) in C has stopped compiling with the following message without any coherent reason.
\Downloads\petsc-3.3-p6\include\mpiuni\mpi.h|119|error: parse error ...
0
votes
5answers
288 views
What is the use of Static local variable when we can get a global variable at the same cost?
In C ,what is the use of static storage class when an external variable can serve its purpose at the same cost ie. both occupy memory in the data segment of the executable.
I have much better scope ...
0
votes
1answer
131 views
Difference between MarshalAs(UnmanagedType.LPWStr) and Marshal.PtrToStringUni()
I would like to import a function like this:
[return: MarshalAs(UnmanagedType.LPWStr)]
[DllImport("DLL.dll", EntryPoint="FuncUtf16", ExactSpelling=true, PreserveSig=true, CharSet=CharSet.Unicode)]
...
3
votes
1answer
135 views
Android NDK and extern variables in C code
I have a library that I want to customize its work (I mean replacing the main of the library by my outside program so I can for example reorder the calls of the library's functions) and for that I had ...
0
votes
3answers
85 views
C++ and my global variable for mouse class
I'm so stuck, it's so annoying... I have windows message sending mouse coordinates and I have a game loop that sees those coordinates, but when I call upon a class that looks at the mouse coordinates, ...









