От: | Аноним | ||
Дата: | 01.08.05 14:23 | ||
Оценка: |
От: | Анатолий Широков | ||
Дата: | 01.08.05 14:29 | ||
Оценка: | 2 (1) |
// dll.h
#ifdef __cplusplus
extern "C" {
#endif
void foo();
#ifdef __cplusplus
}
#endif
// dll.cpp
#include "dll.h"
extern "C" {
void foo()
{
...
}
}
От: | Аноним | ||
Дата: | 01.08.05 14:36 | ||
Оценка: |