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.

24 lines
242 B

  1. LPTSTR
  2. NewDup(
  3. IN LPCTSTR psz
  4. );
  5. class CNetResource
  6. {
  7. public:
  8. CNetResource(LPNETRESOURCE pnr);
  9. ~CNetResource();
  10. LPNETRESOURCE
  11. GetNetResource(
  12. VOID
  13. );
  14. private:
  15. BOOL _bValid;
  16. NETRESOURCE _nr;
  17. };