home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / EMXLIB8F.ZIP / EMX / LIB / MT / REVISION.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-01-02  |  424 b   |  17 lines

  1. /* revision.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */
  2.  
  3. #include <string.h>
  4. #include <os2emx.h>
  5.  
  6. static char const revision[] = "10";
  7.  
  8. ULONG emx_revision (CONSTPSZ name, LONG argc, const RXSTRING *argv,
  9.                     CONSTPSZ queuename, PRXSTRING retstr)
  10. {
  11.   if (argc != 0)
  12.     return (1);
  13.   strcpy (retstr->strptr, revision);
  14.   retstr->strlength = strlen (revision);
  15.   return (0);
  16. }
  17.