home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool.zip / OOL / samples / sample5 / empty.cpp < prev    next >
C/C++ Source or Header  |  1996-10-25  |  212b  |  19 lines

  1. /*
  2.  * create an empty dll to use as a resource dll
  3.  */
  4.  
  5. extern "C" {
  6.  
  7.    int __dll_initialize( void )
  8.    {
  9.         return 1;
  10.    }
  11.  
  12.  
  13.    int __dll_terminate( void )
  14.    {
  15.         return 1;
  16.    }
  17.  
  18.  
  19. }