Leaked source code of windows server 2003
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.

23 lines
358 B

  1. //
  2. // Install.h
  3. //
  4. #pragma once
  5. void Install_SetWorkgroupName(LPCTSTR pszWorkgroup, BOOL* pfRebootRequired);
  6. class CLogFile
  7. {
  8. public:
  9. HRESULT Initialize(LPCSTR pszPath);
  10. HRESULT Write(LPCSTR psz);
  11. HRESULT Write(LPCWSTR psz);
  12. HRESULT Uninitialize();
  13. protected:
  14. HANDLE _hLogFile;
  15. };
  16. extern CLogFile g_logFile;