home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sftick.zip / adv / mem / SHAREE.C < prev    next >
Text File  |  1994-04-21  |  598b  |  30 lines

  1. #define INCL_DOSMEMMGR
  2.  
  3. #include <os2.h>
  4. #include <stdio.h>
  5.  
  6. int main( void )
  7. {
  8.     PVOID   pSharedMem ;
  9.     APIRET  rc ;
  10.  
  11.  
  12.     /* get the shared memory */
  13.     rc = DosGetNamedSharedMem( &pSharedMem,
  14.                                "\\SHAREMEM\\MEMNAME",
  15.                                PAG_READ | PAG_WRITE ) ;
  16.  
  17.     printf ("\nrc from DosGetNamedSharedMem = %d", rc ) ;
  18.  
  19.     if ( !rc )
  20.         printf("\nString is %s", pSharedMem ) ;
  21.     printf("\nPress any key" ) ;
  22.     fflush( stdout ) ;
  23.     /* wait for a keypress */
  24.     getchar() ;
  25.     /* exit */
  26.  
  27.     return 0;
  28.  
  29. }
  30.