Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7013605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:24:46+00:00 2026-05-27T22:24:46+00:00

I recently tried to create a global header file which would have all definitions

  • 0

I recently tried to create a global header file which would have all definitions of error codes (i.e. NO_ERROR, SDL_SCREEN_FLIP_ERROR, etc.) these would just be integers which I would define here.

I included these in both of my .cpp files, however I am getting an error where it is stated that I am defining then twice.

globals.h:

#pragma once

// error related globals
int SCREEN_LOAD_ERROR = 1;
int NO_ERROR = 0;

main.cpp:

#include "globals.h"
#include "cTile.h"
/* rest of the code */

cTile.h:

#pragma once
#include "globals.h"

class cTile {
};

It is complaining that SCREEN_LOAD_ERROR and NO_ERROR are defined twice, but as far as I know #pragma once should prevent this (I also tried #ifndef, but this also did not work).

compiler output:

1>main.obj : error LNK2005: “int SCREEN_LOAD_ERROR” (?SCREEN_LOAD_ERROR@@3HA) already defined in cTile.obj
1>main.obj : error LNK2005: “int NO_ERROR” (?NO_ERROR@@3HA) already defined in cTile.obj

Am I missing something?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:24:47+00:00Added an answer on May 27, 2026 at 10:24 pm

    Do not declare variables inside your header file.
    When you declare a variable in header file a copy of the variable gets created in each translation unit where you include the header file.

    Solution is:
    Declare them extern inside one of your header file and define them in exactly one of your cpp file.

    globals.h:

    extern int SCREEN_LOAD_ERROR;
    extern int NO_ERROR;
    

    globals.cpp:

    #include "globals.h"
    int SCREEN_LOAD_ERROR = 0;
    int NO_ERROR = 0;
    

    main.cpp:

    #include "globals.h"
    

    cTile.h:

    #include "globals.h"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have had a number of problems with ScrollViews. Recently I tried to create
Recently I tried to explain some poorly designed code to my project manager. All
I have been recently digging into Mobile Programming, I practically tried out the J2ME
I recently tried to create an object like this: var carousel = { $slider:
I recently started testing web_app_theme plugin. In Create button I have something like this...
I recently installed VS2010 beta 2 and tried to create a new Visual C++
I recently wrote a Java playing card game and have all the game logic
I have recently tried using the Silverlight NUnit Project template (the one from Jamie
I've recently tried to create a property for a Vector2 field, just to realize
I've recently tried to set my default application icon with a .ico file I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.