home *** CD-ROM | disk | FTP | other *** search
- /* revision.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */
-
- #include <string.h>
- #include <os2emx.h>
-
- static char const revision[] = "10";
-
- ULONG emx_revision (CONSTPSZ name, LONG argc, const RXSTRING *argv,
- CONSTPSZ queuename, PRXSTRING retstr)
- {
- if (argc != 0)
- return (1);
- strcpy (retstr->strptr, revision);
- retstr->strlength = strlen (revision);
- return (0);
- }
-