mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 18:59:09 +00:00
The exporter is a single DLL.
So we don't need to __declspec(dllimport) ANYTHING. This stops more linker warnings.
This commit is contained in:
@ -315,7 +315,7 @@ TSTR plClothingMtl::GetSubTexmapTVName(int i)
|
|||||||
return GetSubTexmapSlotName(i);
|
return GetSubTexmapSlotName(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
DllExport Texmap *plClothingMtl::GetTexmap(int index, int layer)
|
Texmap *plClothingMtl::GetTexmap(int index, int layer)
|
||||||
{
|
{
|
||||||
return fBasicPB->GetTexmap(ParamID(LayerToPBIdx[layer]), 0, index);
|
return fBasicPB->GetTexmap(ParamID(LayerToPBIdx[layer]), 0, index);
|
||||||
}
|
}
|
||||||
|
@ -133,7 +133,7 @@ public:
|
|||||||
plClothingElement *FindElementByName(char *name);
|
plClothingElement *FindElementByName(char *name);
|
||||||
|
|
||||||
int GetTilesetIndex() { return fBasicPB->GetInt(ParamID(kTileset)); }
|
int GetTilesetIndex() { return fBasicPB->GetInt(ParamID(kTileset)); }
|
||||||
DllExport Texmap *GetTexmap(int index, int layer);
|
Texmap *GetTexmap(int index, int layer);
|
||||||
Texmap *GetThumbnail() { return fBasicPB->GetTexmap(ParamID(kThumbnail)); }
|
Texmap *GetThumbnail() { return fBasicPB->GetTexmap(ParamID(kThumbnail)); }
|
||||||
const char *GetDescription() { return fBasicPB->GetStr(ParamID(kDescription)); }
|
const char *GetDescription() { return fBasicPB->GetStr(ParamID(kDescription)); }
|
||||||
const char *GetCustomText() { return fBasicPB->GetStr(ParamID(kCustomTextSpecs)); }
|
const char *GetCustomText() { return fBasicPB->GetStr(ParamID(kCustomTextSpecs)); }
|
||||||
|
@ -167,11 +167,11 @@ public:
|
|||||||
|
|
||||||
// void SetNumSubTexmaps(int num);
|
// void SetNumSubTexmaps(int num);
|
||||||
|
|
||||||
DllExport Control *GetAmbColorController();
|
Control *GetAmbColorController();
|
||||||
DllExport Control *GetColorController();
|
Control *GetColorController();
|
||||||
DllExport Control *GetOpacityController();
|
Control *GetOpacityController();
|
||||||
DllExport Control *GetWidthController();
|
Control *GetWidthController();
|
||||||
DllExport Control *GetHeightController();
|
Control *GetHeightController();
|
||||||
|
|
||||||
// From MtlBase and Mtl
|
// From MtlBase and Mtl
|
||||||
void SetAmbient(Color c, TimeValue t);
|
void SetAmbient(Color c, TimeValue t);
|
||||||
|
Reference in New Issue
Block a user