home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_03_01 / 3n01068a < prev    next >
Text File  |  1991-10-30  |  515b  |  18 lines

  1. switch(wParam)
  2. {
  3. /* ... */
  4.    case PROGRAMMER:
  5.      ProgrammerRoutine();       /* Explicit call to programmer
  6.      break;                      * defined code here serves to
  7.                                  * override default code in the
  8.                                  * .WMC file
  9.                                  */
  10. /*...*/
  11.    default:
  12.      BLDDefDialogProc();        /* Call default routine in .WMC
  13.                                  * file here
  14.                                  */
  15.      break;
  16. }
  17.  
  18.