16 lines
455 B
C++
16 lines
455 B
C++
|
// ControlRecord.cpp
|
||
|
|
||
|
#include "Registry.h"
|
||
|
#include "ControlRecord.h"
|
||
|
|
||
|
using namespace flt;
|
||
|
|
||
|
RegisterRecordProxy<PushLevelRecord> g_PushLevelProxy;
|
||
|
RegisterRecordProxy<PopLevelRecord> g_PopLevelProxy;
|
||
|
|
||
|
RegisterRecordProxy<PushSubfaceRecord> g_PushSubfaceProxy;
|
||
|
RegisterRecordProxy<PopSubfaceRecord> g_PopSubfaceProxy;
|
||
|
|
||
|
RegisterRecordProxy<PushExtensionRecord> g_PushExtensionProxy;
|
||
|
RegisterRecordProxy<PopExtensionRecord> g_PopExtensionProxy;
|