Help for this page

Select Code to Download


  1. or download this
    typedef struct s_USERINFO{
        CString m_username;
    ...
    void test ( USERINFO* thisUserInfo ) {
        thisUserInfo->m_username = "Pigsy's Perfect Ten";
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
        print $$reference->{username}, "\n";
    }
    print $Record1{username}, "\n";