home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SOURCE / STARTUP / WIN / WINDGRPX.C_ / WINDGRPX.C
Encoding:
Text File  |  1993-02-08  |  519 b   |  19 lines

  1. /***
  2. *windgrpx.c - defines the exported stub function for _GetDGROUP() to check.
  3. *
  4. *   Copyright (c) 1989-1992, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. *   Defines an exported function.  _GetDGROUP() will check the prolog of this
  8. *   function to see if we are running in a dll or an exe.
  9. *
  10. *******************************************************************************/
  11.  
  12.  
  13. int _far _export _cdecl __ExportedStub( void );
  14.  
  15. int _far _export _cdecl __ExportedStub()
  16. {
  17.     return( 0 );
  18. }
  19.