Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

11 rader
227 B

  1. #ifndef MUL_H
  2. #define MUL_H
  3. #ifdef _DLLAPI
  4. #define DLLAPI _declspec(dllexport)
  5. #else
  6. #define DLLAPI _declspec(dllimport)
  7. #endif
  8. extern "C" int DLLAPI mul(int a, int b);
  9. extern "C" bool DLLAPI chen(int a, int b, int *e);
  10. #endif