Example #1
0
        public void MakeManagedPointer()
        {
            PEAPI.Type type;
            use_type_spec = true;
            is_ref        = true;

            Pair p = new Pair(peapi_type, "&");

            type = type_table [p] as PEAPI.Type;
            if (type == null)
            {
                type           = new PEAPI.ManagedPointer(peapi_type);
                type_table [p] = type;
            }
            peapi_type = type;
        }
Example #2
0
                public void MakeManagedPointer ()
                {
                        PEAPI.Type type;
                        use_type_spec = true;
                        is_ref = true;

                        Pair p = new Pair (peapi_type, "&");
                        type = type_table [p] as PEAPI.Type;
                        if (type == null) {
                                type = new PEAPI.ManagedPointer (peapi_type);
                                type_table [p] = type;
                        }
                        peapi_type = type;
                }