Skip to main content
Participant
April 11, 2017
Question

What is PluginMain.def file?

  • April 11, 2017
  • 1 reply
  • 430 views

Hi,

Can any tell me about PuginMain.def file. What does it do?

It have "Export PluginMain" in it, what does that mean?

And what is "export" here?

Thanks

Kuldeep

This topic has been closed for replies.

1 reply

Inspiring
April 11, 2017

It's a module definition file, which can be used to export functions from a windows DLL. Most c++ code these days usually uses __declspec(dllexport) instead.

https://msdn.microsoft.com/en-us/library/d91k01sh.aspx

Determining Which Exporting Method to Use