Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Should GImGui in imgui_internal.h be marked with IMGUI_API? #326

Closed
kylawl opened this issue Sep 9, 2015 · 9 comments
Closed

Should GImGui in imgui_internal.h be marked with IMGUI_API? #326

kylawl opened this issue Sep 9, 2015 · 9 comments
Labels

Comments

@kylawl
Copy link

kylawl commented Sep 9, 2015

It seems like that is the intention?

@ocornut
Copy link
Owner

ocornut commented Sep 9, 2015

Not sure what it would mean in term of linkage?

@kylawl
Copy link
Author

kylawl commented Sep 9, 2015

Without it, we get a link error. With it, we don't.

It seems like that would be the correct thing to do.

@ocornut
Copy link
Owner

ocornut commented Sep 9, 2015

Can you describe your setup? ImGui compiled into a Windows DLL? What crash do you get?

If IMGUI_API is used to fit something such as __declspec( dllimport ) it'll work for the variable but not if IMGUI_API is empty (the variable needs to be declared extern in the .h). So I may need two defines there and I don't know whats a more standard/best practicee

@kylawl
Copy link
Author

kylawl commented Sep 9, 2015

We include imgui directly into our engine and use your IMGUI_API macro to dll export it for use by other libraries.

Our imconfig.h sets up the defines such that if you are not exporting, you're importing.

Without IMGUI_API on externed global variables, it is not possible to access GImGui from across dll boundaries as the importing project will fail to link.

#ifdef ENGINE_DLL_EXPORTS
    #define IMGUI_API             __declspec(dllexport)
#else
    #define IMGUI_API             __declspec(dllimport)
#endif

@ocornut
Copy link
Owner

ocornut commented Sep 9, 2015

Ok. So I'll probably need internally in imgui.h to use and create a second macro that would default to "extern" whereas IMGUI_API would default to empty token.

@kylawl
Copy link
Author

kylawl commented Sep 9, 2015

In order to resolve this all I needed to do was change the line to this

extern IMGUI_API ImGuiState* GImGui;

I don't think it needs to be much more than that.

@ocornut
Copy link
Owner

ocornut commented Sep 9, 2015

Oh yeah, I'm so stupid, didn't realize that would work (I don't have a DLL project setup to test). Will do that.

@kylawl
Copy link
Author

kylawl commented Sep 9, 2015

Super, thanks.

@ocornut
Copy link
Owner

ocornut commented Sep 10, 2015

Done.

idbrii added a commit to idbrii/cpp-imgui that referenced this issue Mar 24, 2025
Includes my merged PRs and everything in my dev branch. Haven't tested
with it yet.

Changelog:
Test case for clip rect
HACK: more recent Windows SDK and VS2017; disable graph
Set size to amount of space required
Merge pull request ocornut#349 from maksw2/master
Merge pull request ocornut#347 from mgerhardy/341
Merge pull request ocornut#348 from mgerhardy/fixed-warning
Merge pull request ocornut#346 from mgerhardy/280
Merge pull request ocornut#345 from mgerhardy/322
Merge pull request ocornut#344 from rherilier/fix-gcc-warnings
Merge pull request ocornut#336 from rherilier/add-isusingviewmanipulate
Merge pull request ocornut#335 from RedSkittleFox/alternative_window
Merge pull request ocornut#334 from ocornut/fix-beginchildframe
dear imgui update and small fixes
Merge pull request ocornut#316 from Batres3/2DSupport
Merge pull request ocornut#326 from Sayama3/use-push-pop-id
Merge pull request ocornut#328 from georgeto/master
Merge pull request ocornut#330 from maritim/master
Merge pull request ocornut#331 from GiovanyH/patch-1
Merge pull request ocornut#318 from dougbinks/imgui_math_operators
Merge pull request ocornut#312 from kimidaisuki22/master
div 0 fixed
Merge pull request ocornut#301 from ZingBallyhoo/using-any
Merge pull request ocornut#300 from Clog41200/Configurable-limits
Merge pull request ocornut#298 from xDUDSSx/fix/rotation_circles
Merge pull request ocornut#297 from xDUDSSx/fix/vertical-aspect-scaling
Merge pull request ocornut#289 from ComputationalBiomechanicsLab/fix_isusing-ignores-setid
Merge pull request ocornut#291 from ocornut/fix_math_operators_include
Merge pull request ocornut#282 from MohitSethi99/master
Merge pull request ocornut#276 from pthom/virtual_destructors
Merge pull request ocornut#271 from idbrii/clip-parent
Merge pull request ocornut#270 from idbrii/btn-behaviour
Merge pull request ocornut#265 from mgerhardy/pr/fix-minor-formatting
Merge pull request ocornut#264 from mgerhardy/pr/div0
Merge pull request ocornut#269 from peter1745/hatched-line-thickness-enhancement
Merge pull request ocornut#259 from miyanyan/master
Merge branch 'master' of https://github.com/CedricGuillemet/ImGuizmo
update dear imgui
Merge pull request ocornut#256 from Aidiakapi/patch-1
Merge pull request ocornut#252 from aaronkirkham/master
Merge pull request ocornut#249 from rokups/rk/mouse-capture
Merge pull request ocornut#246 from mgerhardy/pr/viewmanipulate
removed commented code
fix click view cube
Merge pull request ocornut#231 from mgerhardy/master
Merge pull request ocornut#230 from mgerhardy/master
Merge pull request ocornut#228 from longod/master
Merge pull request ocornut#227 from madeso/master
AddBezierCubic
Merge pull request ocornut#226 from sherief/master
revert culling test commit
Merge pull request ocornut#203 from rokups/rk/misc-fixes
Merge pull request ocornut#212 from zhaijialong/fix-behind-camera-cull
Merge pull request ocornut#209 from VictorFouquet/fix_normalize
scale is always local
Merge pull request ocornut#202 from pezy/master
imguizmo namespace
Merge pull request ocornut#194 from JonathanHiggs/vcpkg-example
1.84 WIP
Merge pull request ocornut#197 from idbrii/seq-btn-color
Merge pull request ocornut#196 from idbrii/seq-big-handles
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants