Hello, John!
I'll try to explain that i want to do. I have some functions written in asm and kept in dll (primary), i want to permit access to them from any other exe of dll program (secondary). Declaring them in 'primary' dll, in which they are kept, i can write fuctions in 'cpp' which will use that asm-functions, in same 'primary' dll. But i cant access them from any other 'secondary' projects, even if i put them to export list of my 'primary' dll. Because that asm-functions are absent in this export list. I dont want to make pseuso-functions in 'cpp' which will call asm-functions.
What should i put something more to .def file?
Happy programming!))