hauzer
New Member
OBSApi behaves wonky when including various Windows headers alongside it. Take the following examples:
Compiles
Doesn't compile
Doesn't compile
Doesn't compile
And so on. I'm not sure if the git version has this fixed (I don't have VS2013), but if it's not, it should be as soon as possible.
Compiles
Code:
#include <OBSApi.h>
#include <Windows.h>
int main() { }
Doesn't compile
Code:
#include <Windows.h>
#include <OBSApi.h>
int main() { }
Doesn't compile
Code:
#include <sphelper.h>
#include <OBSApi.h>
int main() { }
Doesn't compile
Code:
#include <OBSApi.h>
#include <sphelper.h>
int main() { }
And so on. I'm not sure if the git version has this fixed (I don't have VS2013), but if it's not, it should be as soon as possible.
Last edited: