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.

21 lines
365 B

  1. // Copyright (c) 1997-2001 Microsoft Corporation, All Rights Reserved
  2. #ifndef __STARTUP__
  3. #define __STARTUP__
  4. class DllImportExport SnmpClassLibrary
  5. {
  6. private:
  7. protected:
  8. static LONG s_ReferenceCount ;
  9. SnmpClassLibrary () {} ;
  10. public:
  11. virtual ~SnmpClassLibrary () {}
  12. static BOOL Startup () ;
  13. static void Closedown () ;
  14. } ;
  15. #endif