C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C2263
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2263
 
     function returns pointer based on __self
 
     A function attempted to return a pointer based on the __self
     segment. Since __self refers to the code segment of the function,
     it is impossible to return this base to another function.
 
     Modify the return statement so that it returns a different type,
     such as a far pointer or a pointer based on void.
                                    -♦-