PARAMETERS.h 181 B

1234567891011121314
  1. #pragma once
  2. class PARAMETERS
  3. {
  4. public:
  5. PARAMETERS(void);
  6. ~PARAMETERS(void);
  7. public:
  8. bool killproc;
  9. DWORD dwProcId;
  10. std::string OldVerPath;
  11. std::string NewVerPath;
  12. };