dll.c 217 B

1234567891011
  1. #include "../inc/cs.h"
  2. #ifdef _WIN32
  3. BOOL APIENTRY DllMain(HANDLE hModule, DWORD dwReason, LPVOID lpReserved) {
  4. return(TRUE);
  5. }
  6. #endif
  7. CS_API const u_char *cs_libversion() {
  8. return ((const u_char *)CS_VERSION);
  9. }