Running asm procedure in cpp file
问题 I am trying to run procedure from asm file in cpp file but i get such errors: Error 1 error LNK2019: unresolved external symbol _calka referenced in function _main D:\Addem\main.obj Project Error 2 error LNK1120: 1 unresolved externals D:\Addem\Debug\Project.exe 1 1 Project Here is my main.cpp: #include <iostream> using namespace std; extern "C" void calka(); int main() { calka(); system("Pause"); return 0; } And my calka.asm ; The calka Subroutine (calka.asm) public _calka INCLUDELIB