What is dllspec(dllimport) and dllspec(dllexport) means

后端 未结 3 1894
庸人自扰
庸人自扰 2021-02-06 18:48

After googling, i came to know that Dllimport makes the function available for other modules,

is it mandatory to declare function with extern \"c\" identifier?

A

3条回答
  •  抹茶落季
    2021-02-06 19:34

    It also means that entries (in the form of static import and export tables) are created (by the linker) in the exe, dll..files, which document the dependencies between a provider and a consumer.

提交回复
热议问题