frontend-tools: Rename some files

Changing the name of certain captions source files so it specifies which
caption API the files are for.  "mssapi" for Microsoft's speech API.
This commit is contained in:
jp9000 2017-03-28 16:42:14 -07:00
parent 0206227b75
commit 1e37017d4e
4 changed files with 4 additions and 4 deletions

View File

@ -45,10 +45,10 @@ if(WIN32)
set(frontend-tools_PLATFORM_SOURCES
${frontend-tools_PLATFORM_SOURCES}
captions.cpp
captions-stream.cpp)
captions-mssapi-stream.cpp)
set(frontend-tools_PLATFORM_HEADERS
captions.hpp
captions-stream.hpp)
captions-mssapi-stream.hpp)
set(frontend-tools_PLATFORM_UI
forms/captions.ui)
endif()

View File

@ -1,4 +1,4 @@
#include "captions-stream.hpp"
#include "captions-mssapi-stream.hpp"
#include <mmreg.h>
#include <util/windows/CoTaskMemPtr.hpp>
#include <util/threading.h>

View File

@ -1,5 +1,5 @@
#include <obs-frontend-api.h>
#include "captions-stream.hpp"
#include "captions-mssapi-stream.hpp"
#include "captions.hpp"
#include "tool-helpers.hpp"
#include <sphelper.h>