Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はライブラリを使用していますがAPI_EXPORTED、ドキュメントに記載されているように、その前に追加する必要がある関数がいくつかあります。
API_EXPORTED
お気に入り:
API_EXPORTED int fpi_img_compare_print_data(struct fp_print_data *enrolled_print, struct fp_print_data *new_print)
このキーワードの用途がわかりません。
シンボルは、API_EXPORTED使用するライブラリに関連するヘッダー ファイルの 1 つで #define を使用して定義されたマクロです。
そのヘッダー ファイルを使用してライブラリをインポートする場合、マクロはおそらく__declspec(dllimport). ヘッダー ファイルを使用してライブラリをビルドすると、マクロはおそらく__declspec(dllexport). ヘッダー ファイルを調べることで、自分の目で確かめることができます。
__declspec(dllimport)
__declspec(dllexport)