Answers for "c export dll function"

0

c export dll function

//main.cpp

extern "C" {
  #include "foo.h"
}

int main() {
  foo(22);
}
Posted by: Guest on March-09-2022

Browse Popular Code Answers by Language