home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_code1 / dll_make / simple.h < prev    next >
C/C++ Source or Header  |  1992-09-09  |  162b  |  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