Clone of PhatAC @ https://github.com/floaterxk/PhatAC

AccountDatabase.h 227B

12345678910111213141516
  1. #pragma once
  2. class CAccountDatabase
  3. {
  4. public:
  5. CAccountDatabase(CDatabase *);
  6. BOOL CheckAccount(const char *, const char *, int *accessLevel, std::string& actualAccount);
  7. private:
  8. CDatabase *m_DB;
  9. SQLHANDLE m_hSTMT;
  10. };