-
|
Something must have changed in my header order as I am now all of a sudden getting errors when compiling in windows: Looks like AddJob is defined as a macro in winspool.h: #ifdef UNICODE
#define AddJob AddJobW
#else
#define AddJob AddJobA
#endif // !UNICODEIs there a recommended way of avoiding this? |
Beta Was this translation helpful? Give feedback.
Answered by
jrouwe
Apr 5, 2025
Replies: 1 comment 1 reply
-
|
I would just do |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
wirepair
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would just do
#undef AddJobbefore including Jolt