home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / CODIGO_1 / DLL_MAKE / SIMPLE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-09-09  |  162 b   |  10 lines

  1. // Header file for Simple DLL
  2.  
  3. #ifndef __SIMPLE_H
  4. #define __SIMPLE_H
  5.  
  6. #include <windows.h>
  7.  
  8. extern "C" int FAR pascal _export SquareInt( int x );
  9.  
  10. #endif