Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
2.5 KiB

  1. #ifdef __cplusplus
  2. extern "C"
  3. {
  4. #endif
  5. #ifndef APIENTRY
  6. #define APIENTRY FAR PASCAL
  7. #endif
  8. void APIENTRY DK2SetupAlgorithmString ( LPSTR String, WORD Cmd );
  9. void APIENTRY DK2SetMaximumIterations( WORD MaxIter );
  10. void APIENTRY DK2Sub_ReadRandomNumbers( WORD DataReg,
  11. LPSTR Id,
  12. LPSTR PKey,
  13. WORD Seed,
  14. LPSTR Buffer );
  15. void APIENTRY DK2Sub_ReadMemory( WORD DataReg,
  16. LPSTR Id,
  17. LPSTR PKey,
  18. WORD Seed,
  19. WORD Address,
  20. LPSTR Buffer );
  21. void APIENTRY DK2Sub_WriteMemory( WORD DataReg,
  22. LPSTR Id,
  23. LPSTR PKey,
  24. WORD Seed,
  25. WORD Address,
  26. WORD SecretCounter,
  27. LPSTR Password,
  28. LPSTR DUSN,
  29. LPSTR Buffer );
  30. void APIENTRY DK2Sub_ReadDownCounter( WORD DataReg,
  31. LPSTR Id,
  32. LPSTR PKey,
  33. LPDWORD DownCounter );
  34. void APIENTRY DK2Sub_SubtractDownCounter( WORD DataReg,
  35. LPSTR Id,
  36. LPSTR PKey,
  37. DWORD SubValue,
  38. LPDWORD DownCounter );
  39. void APIENTRY DK2Sub_RestartDownCounter( WORD DataReg,
  40. LPSTR Id,
  41. LPSTR PKey,
  42. WORD SecretCounter,
  43. LPSTR Password,
  44. LPSTR DUSN,
  45. DWORD DownCounter );
  46. void APIENTRY DK2Sub_AccessNormalCommands( WORD DataReg,
  47. LPSTR Id,
  48. LPSTR PKey,
  49. WORD Disable );
  50. void APIENTRY DK2Algorithm( WORD Iterations,
  51. LPSTR AlgoStr,
  52. LPSTR PrivKey );
  53. #ifdef __cplusplus
  54. }
  55. #endif