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.
次のようなSerial.dllファイルを含むライブラリがあります。Serial.def
Serial.dll
Serial.def
EXPORTS ValidateSerial GenerateSerial
GenerateSerial関数を C++ Win32 アプリケーションにインポートしたいと考えています。インターネットで DLL の使用に関するトピックを検索しましたが、アイデアが思い浮かびません... 誰か助けてくれませんか?
GenerateSerial
あなたが提供した情報は、2つの機能名のみを示しています。LoadLibraryとを実行してアドレスを取得できますGetProcAddress。ただし、それらを使用するには、適切な署名と、引数と戻り値の規則を知る必要があります。
LoadLibrary
GetProcAddress
ドキュメンテーション (または .h ファイル) がなければ、それほど遠くまで行くことはできません。