Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

11 rindas
205 B

  1. #ifndef SUB_H
  2. #define SUB_H
  3. #ifdef _DLLAPI
  4. #define DLLAPI _declspec(dllexport)
  5. #else
  6. #define DLLAPI _declspec(dllimport)
  7. #endif
  8. int DLLAPI sub(int a, int b);
  9. bool DLLAPI Sub(int a, int b, int *d);
  10. #endif