mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-05-06 06:14:43 -04:00
deps,shared,frontend-tools: Move obs-scripting to shared folder
This commit is contained in:
28
shared/obs-scripting/cstrcache.cpp
Normal file
28
shared/obs-scripting/cstrcache.cpp
Normal file
@@ -0,0 +1,28 @@
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
|
||||
#include "cstrcache.h"
|
||||
|
||||
using namespace std;
|
||||
|
||||
struct const_string_table {
|
||||
unordered_map<string, string> strings;
|
||||
};
|
||||
|
||||
static struct const_string_table table;
|
||||
|
||||
const char *cstrcache_get(const char *str)
|
||||
{
|
||||
if (!str || !*str)
|
||||
return "";
|
||||
|
||||
auto &strings = table.strings;
|
||||
auto pair = strings.find(str);
|
||||
|
||||
if (pair == strings.end()) {
|
||||
strings[str] = str;
|
||||
pair = strings.find(str);
|
||||
}
|
||||
|
||||
return pair->second.c_str();
|
||||
}
|
||||
Reference in New Issue
Block a user