Make the csri.h header a relative include and wrap it with __WINDOWS__, in the
future I'll remove all of these ifdefs and fix the windows vcproj files so we can have the same includes for all operating systems. Originally committed to SVN as r1916.
This commit is contained in:
parent
cdd49b02b4
commit
db5580f1cc
1 changed files with 5 additions and 1 deletions
|
@ -44,8 +44,12 @@
|
|||
#ifdef WIN32
|
||||
#define CSRIAPI
|
||||
#endif
|
||||
#include "csri/csri.h"
|
||||
|
||||
ifdef __WINDOWS__
|
||||
#include "../csri/include/csri/csri.h"
|
||||
#else
|
||||
#include "csri/csri.h"
|
||||
#fi
|
||||
|
||||
/////////////////////////////////////////////////
|
||||
// Common Subtitles Rendering Interface provider
|
||||
|
|
Loading…
Reference in a new issue