home *** CD-ROM | disk | FTP | other *** search
/ What PC? 1997 October / WPCOCT97.iso / HTML / RES / RESOURCE / GAMES / BLAM / BLAMDEMO.ZIP / HMISET.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-11-17  |  48.0 KB  |  836 lines

  1. setup
  2. echo                Installation complete - type shock to run game  
  3.  
  4.  O   V     _insert_sorted ╘_bad_key ╒mouse_prompt Æhistory_exit e_init _insert_unsorted 4_complete_dir Å_complete_read_file ╣_prompt_end v_complete_edit_file ■_prompt_begin æ_complete_action '_complete_select φ_complete_load_macro _complete_select_all l_complete_delete_macro å_last_response ╕    pre_func 8     _history_buf ° le Selected!");
  5.     }
  6. }    
  7.  
  8.  
  9. d _dos_write( int __handle, void const __far *__buf, unsigned __count,
  10.                     unsigned *__bytes );
  11. extern int      dosexterr(struct _DOSERROR *);
  12. extern void     _harderr(register int (__far *__func)(unsigned __deverr,
  13.                         unsigned __errcode,unsigned __far *__devhdr));
  14. extern void     _hardresume(int __result);
  15. extern void     _hardretn(int __error);
  16. extern int      intdos(union REGS *, union REGS *);
  17. extern int      intdosx(union REGS *, union REGS *, struct SREGS *);
  18. extern void     sleep(unsigned __seconds);
  19.  
  20. #pragma pack();
  21. #define _DOS_H_INCLUDED
  22. #if defined(__WINDOWS_386__) || defined(__NT__) || ( defined(__OS2__) && defined(__386__) )
  23. #undef __far
  24. #endif
  25. #ifdef __cplusplus
  26. };
  27. #endif
  28. #endif
  29.     ═φ  ╘C┘   
  30. α_history_bu/*
  31.  *  conio.h    Console and Port I/O functions
  32.  *
  33.  *  Copyright by WATCOM International Corp. 1988-1994.  All rights reserved.
  34.  */
  35. #ifndef _CONIO_H_INCLUDED
  36. #ifdef __cplusplus
  37. extern "C" {
  38. #endif
  39.  
  40. #ifndef __VALIST
  41.  #ifdef  __HUGE__
  42.   typedef char __far *__va_list[1];
  43.  #else
  44.   typedef char *__va_list[1];
  45.  #endif
  46.  #define __VALIST
  47. #endif
  48.  
  49. extern char *cgets(char *__buf);
  50. extern int cputs(const char *__buf);
  51. extern int cprintf(const char *__fmt,...);
  52. extern int cscanf(const char *__fmt,...);
  53. extern int getch(void);
  54. extern int getche(void);
  55. extern int kbhit(void);
  56. extern unsigned inp(unsigned __port);
  57. extern unsigned inpw(unsigned __port);
  58. extern unsigned outp(unsigned __port, unsigned __value);
  59. extern unsigned outpw(unsigned __port,unsigned __value);
  60. #ifdef __386__
  61. extern unsigned inpd(unsigned __port);
  62. extern unsigned outpd(unsigned __port, unsigned __value);
  63. #endif
  64. extern int putch(int __c);
  65. extern int ungetch(int __c);
  66. extern int vcprintf( const char *__format, __va_list __arg );
  67. extern int vcscanf( const char *__format, __va_list __arg );
  68.  
  69. #ifdef    __INLINE_FUNCTIONS__
  70.  #pragma intrinsic(inp,inpw,outp,outpw)
  71.  #ifdef __386__
  72.   #pragma intrinsic(inpd,outpd)
  73.  #endif
  74. #endif
  75.  
  76. #define _CONIO_H_INCLUDED
  77. #ifdef __cplusplus
  78. };
  79. #endif
  80. #endif
  81.              #include <errno.h>
  82. #include <sys\types.h>
  83. #include <direct.h>
  84. #include <stdio.h>
  85. #include <dos.h>
  86. #include <graph.h>
  87. #include <process.h>
  88.  
  89. int cx,cy;
  90.  
  91. void get_istring(int x,int y,char *s,int maxlen)
  92. {
  93.  char c;
  94.  int i;      
  95.  
  96.  cy=y;
  97.  cx=x+_getgtextextent(s);
  98.  for(;;)
  99.     {
  100.       _moveto(x,cy);
  101.       _outgtext(s);
  102.      if(kbhit())
  103.         {
  104.          c=getch();
  105.          if(c==0x08)
  106.                  {
  107.                     cursor_off();
  108.                      i=strlen(s);
  109.                     if(i)
  110.                         s[i-1]=0;
  111.                      cx=xs+_getgtextextent(s);
  112.                 }
  113.  
  114. /* done */
  115.  
  116.           else if(c==0x0d)
  117.             return;
  118.  
  119. /* add char */
  120.  
  121.          else
  122.             {i=strlen(s);
  123.              if(i<maxlen)
  124.                   {s[i]=c;
  125.                    s[i+1]=0;
  126.                    cursor_off();
  127.                      cx=xs+_getgtextextent(s);
  128.                 }
  129.             }
  130.         }
  131.      else
  132.          flash_cursor();
  133.      delay(100);
  134.     }
  135.  
  136. }
  137.  
  138. /*************************************************************************
  139.  *
  140.  *                         String requester
  141.  *
  142.  *                                         
  143.  *
  144.  *
  145.  *
  146.  *************************************************************************/
  147.  
  148. void open_string_requester(int x,int y,char *s,
  149.                                     int ntexts,char *texts,int flags,char textcol)
  150. {int yoff,i;
  151.  
  152.  set_color(_GREY);
  153.  _rectangle(_GFILLINTERIOR,x,y,400,180);
  154.  set_color(textcol); 
  155.  for(i=0,yst=y+50;i<ntexts;i++,yoff+=10)
  156.     {
  157.      _moveto(x+50,yst);
  158.        _outgtext(texts[i]);
  159.     }
  160.  get_istring(x+100,y+100,s,30);
  161.  
  162. }
  163.  
  164.  
  165.  
  166. ] ~   d  i    /*
  167.  *  graph.h     Graphics functions
  168.  *
  169.  *  Copyright by WATCOM International Corp. 1988-1994.  All rights reserved.
  170.  */
  171. #ifndef _GRAPH_H_INCLUDED
  172. #ifdef __cplusplus
  173. extern "C" {
  174. #endif
  175. #pragma pack(1);
  176.  
  177. #if defined ( __386__ )
  178.     #define _FAR
  179.     #define _HUGE
  180. #else
  181.     #define _FAR    __far
  182.     #define _HUGE   __huge
  183. #endif
  184.  
  185. #pragma library (graph);
  186.  
  187. struct xycoord {                /* structure for pixel position */
  188.     short   xcoord;
  189.     short   ycoord;
  190. };
  191.  
  192. struct _wxycoord {              /* structure for window position*/
  193.     double  wx;
  194.     double  wy;
  195. };
  196.  
  197. struct rccoord {                /* structure for text position  */
  198.     short   row;
  199.     short   col;
  200. };
  201.  
  202. struct videoconfig {            /* structure for _getvideoconfig */
  203.     short   numxpixels;
  204.     short   numypixels;
  205.     short   numtextcols;
  206.     short   numtextrows;
  207.     short   numcolors;
  208.     short   bitsperpixel;
  209.     short   numvideopages;
  210.     short   mode;
  211.     short   adapter;
  212.     short   monitor;
  213.     short   memory;
  214. };
  215.  
  216. struct textsettings {           /* structure for _gettextsettings */
  217.     short   basevectorx;
  218.     short   basevectory;
  219.     short   txpath;
  220.     short   height;
  221.     short   width;
  222.     short   spacing;
  223.     short   horizalign;
  224.     short   vertalign;
  225. };
  226.  
  227. struct _fontinfo {              /* structure for _getfontinfo */
  228.     short   type;
  229.     short   ascent;
  230.     short   pixwidth;
  231.     short   pixheight;
  232.     short   avgwidth;
  233.     char    filename[ 81 ];
  234.     char    facename[ 32 ];
  235. };
  236.  
  237. /* Calling conventions for -fpi(87) are different than for -fpc */
  238. #if defined( __FPI__ )
  239.     #define _arc_w              _arc_w_87
  240.     #define _ellipse_w          _ellipse_w_87
  241.     #define _floodfill_w        _floodfill_w_87
  242.     #define _getimage_w         _getimage_w_87
  243.     #define _getpixel_w         _getpixel_w_87
  244.     #define _getviewcoord_w     _getviewcoord_w_87
  245.     #define _grtext_w           _grtext_w_87
  246.     #define _imagesize_w        _imagesize_w_87
  247.     #define _lineto_w           _lineto_w_87
  248.     #define _moveto_w           _moveto_w_87
  249.     #define _pie_w              _pie_w_87
  250.     #define _putimage_w         _putimage_w_87
  251.     #define _rectangle_w        _rectangle_w_87
  252.     #define _setcharsize_w      _setcharsize_w_87
  253.     #define _setcharspacing_w   _setcharspacing_w_87
  254.     #define _setpixel_w         _setpixel_w_87
  255.     #define _setwindow          _setwindow_87
  256. #endif
  257.  
  258. /* Video Setup and Query Functions */
  259.  
  260. short _FAR              _setvideomode( short );
  261. short _FAR              _setvideomoderows( short, short );
  262. struct videoconfig _FAR * _FAR
  263.             _getvideoconfig( struct videoconfig _FAR * );
  264. short _FAR              _grstatus( void );
  265. short _FAR              _setactivepage( short );
  266. short _FAR              _getactivepage( void );
  267. short _FAR              _setvisualpage( short );
  268. short _FAR              _getvisualpage( void );
  269.  
  270. #define _MAXRESMODE     (-3)    /* graphics mode with highest res. */
  271. #define _MAXCOLORMODE   (-2)    /* graphics mode with most colours */
  272. #define _DEFAULTMODE    (-1)    /* restore screen to original mode */
  273. #define _TEXTBW40       0       /* 40 x 25 text, 16 grey           */
  274. #define _TEXTC40        1       /* 40 x 25 text, 16/8 color        */
  275. #define _TEXTBW80       2       /* 80 x 25 text, 16 grey           */
  276. #define _TEXTC80        3       /* 80 x 25 text, 16/8 color        */
  277. #define _MRES4COLOR     4       /* 320 x 200, 4 color              */
  278. #define _MRESNOCOLOR    5       /* 320 x 200, 4 grey               */
  279. #define _HRESBW         6       /* 640 x 200, BW                   */
  280. #define _TEXTMONO       7       /* 80 x 25 text, BW                */
  281. #define _HERCMONO       11      /* 720 x 350, BW                   */
  282. #define _MRES16COLOR    13      /* 320 x 200, 16 color             */
  283. #define _HRES16COLOR    14      /* 640 x 200, 16 color             */
  284. #define _ERESNOCOLOR    15      /* 640 x 350, BW                   */
  285. #define _ERESCOLOR      16      /* 640 x 350, 4 or 16 color        */
  286. #define _VRES2COLOR     17      /* 640 x 480, BW                   */
  287. #define _VRES16COLOR    18      /* 640 x 480, 16 color             */
  288. #define _MRES256COLOR   19      /* 320 x 200, 256 color            */
  289. #define _URES256COLOR   0x100   /* 640 x 400, 256 color            */
  290. #define _VRES256COLOR   0x101   /* 640 x 480, 256 color            */
  291. #define _SVRES16COLOR   0x102   /* 800 x 600, 16 color             */
  292. #define _SVRES256COLOR  0x103   /* 800 x 600, 256 color            */
  293. #define _XRES16COLOR    0x104   /* 1024 x 768, 16 color            */
  294. #define _XRES256COLOR   0x105   /* 1024 x 768, 256 color           */
  295.  
  296. #define _NODISPLAY      (-1)    /* no display device            */
  297. #define _UNKNOWN        0       /* unknown adapter/monitor type */
  298.  
  299. #define _MDPA           1       /* monochrome display/printer adapter */
  300. #define _CGA            2       /* colour/graphics monitor adapter    */
  301. #define _HERCULES       3       /* Hercules monochrome adapter card   */
  302. #define _MCGA           4       /* PS/2 Model 30 monitor              */
  303. #define _EGA            5       /* enhanced graphics adapter          */
  304. #define _VGA            6       /* vector graphics array              */
  305. #define _SVGA           7       /* super VGA                          */
  306. #define _HGC            _HERCULES
  307.  
  308. #define _MONO           1       /* regular monochrome */
  309. #define _COLOR          2       /* regular color      */
  310. #define _ENHANCED       3       /* enhanced color     */
  311. #define _ANALOGMONO     5       /* analog monochrome  */
  312. #define _ANALOGCOLOR    6       /* analog color       */
  313.  
  314. #define _GROK                   0      /* no error                     */
  315. #define _GRERROR                (-1)   /* graphics error               */
  316. #define _GRMODENOTSUPPORTED     (-2)   /* video mode not supported     */
  317. #define _GRNOTINPROPERMODE      (-3)   /* function n/a in this mode    */
  318. #define _GRINVALIDPARAMETER     (-4)   /* invalid parameter(s)         */
  319. #define _GRINSUFFICIENTMEMORY   (-5)   /* out of memory                */
  320. #define _GRFONTFILENOTFOUND     (-6)   /* can't open font file         */
  321. #define _GRINVALIDFONTFILE      (-7)   /* font file has invalid format */
  322. #define _GRNOOUTPUT             1      /* nothing was done             */
  323. #define _GRCLIPPED              2      /* output clipped               */
  324.  
  325. /* Colour Setting and Query Functions */
  326.  
  327. short _FAR              _setcolor( short );
  328. short _FAR              _getcolor( void );
  329. long _FAR               _setbkcolor( long );
  330. long _FAR               _getbkcolor( void );
  331. long _FAR               _remappalette( short, long );
  332. short _FAR              _remapallpalette( long _FAR * );
  333. short _FAR              _selectpalette( short );
  334.  
  335. #define _BLACK          0x000000L
  336. #define _BLUE           0x2a0000L
  337. #define _GREEN          0x002a00L
  338. #define _CYAN           0x2a2a00L
  339. #define _RED            0x00002aL
  340. #define _MAGENTA        0x2a002aL
  341. #define _BROWN          0x00152aL
  342. #define _WHITE          0x2a2a2aL
  343. #define _GRAY           0x151515L
  344. #define _LIGHTBLUE      0x3F1515L
  345. #define _LIGHTGREEN     0x153f15L
  346. #define _LIGHTCYAN      0x3f3f15L
  347. #define _LIGHTRED       0x15153fL
  348. #define _LIGHTMAGENTA   0x3f153fL
  349. #define _YELLOW         0x153f3fL
  350. #define _BRIGHTWHITE    0x3f3f3fL
  351. #define _LIGHTYELLOW    _YELLOW
  352.  
  353. /* Shape and Curve Drawing Functions */
  354.  
  355. short _FAR              _lineto( short, short );
  356. short _FAR              _lineto_w( double, double );
  357. short _FAR              _rectangle( short, short, short, short, short );
  358. short _FAR              _rectangle_w( short, double, double, double, double );
  359. short _FAR              _rectangle_wxy( short, struct _wxycoord _FAR *,
  360.                            struct _wxycoord _FAR * );
  361. short _FAR              _arc( short, short, short, short, short, short,
  362.                   short, short );
  363. short _FAR              _arc_w( double, double, double, double, double,
  364.                 double, double, double );
  365. short _FAR              _arc_wxy( struct _wxycoord _FAR *,
  366.                   struct _wxycoord _FAR *,
  367.                   struct _wxycoord _FAR *,
  368.                   struct _wxycoord _FAR * );
  369. short _FAR              _ellipse( short, short, short, short, short );
  370. short _FAR              _ellipse_w( short, double, double, double, double );
  371. short _FAR              _ellipse_wxy( short, struct _wxycoord _FAR *,
  372.                       struct _wxycoord _FAR * );
  373. short _FAR              _pie( short, short, short, short, short, short,
  374.                   short, short, short );
  375. short _FAR              _pie_w( short, double, double, double, double,
  376.                 double, double, double, double );
  377. short _FAR              _pie_wxy( short, struct _wxycoord _FAR *,
  378.                   struct _wxycoord _FAR *,
  379.                   struct _wxycoord _FAR *,
  380.                   struct _wxycoord _FAR * );
  381. short _FAR              _polygon( short, short, struct xycoord _FAR * );
  382. short _FAR              _polygon_w( short, short, double _FAR * );
  383. short _FAR              _polygon_wxy( short, short, struct _wxycoord _FAR * );
  384. short _FAR              _floodfill( short, short, short );
  385. short _FAR              _floodfill_w( double, double, short );
  386. short _FAR              _setpixel( short, short );
  387. short _FAR              _setpixel_w( double, double );
  388. short _FAR              _getpixel( short, short );
  389. short _FAR              _getpixel_w( double, double );
  390. short _FAR              _getarcinfo( struct xycoord _FAR *,
  391.                      struct xycoord _FAR *,
  392.                      struct xycoord _FAR * );
  393.  
  394. /* Position Determination Functions */
  395.  
  396. struct xycoord _FAR     _getcurrentposition( void );
  397. struct _wxycoord _FAR   _getcurrentposition_w( void );
  398. struct xycoord _FAR     _getviewcoord( short, short );
  399. struct xycoord _FAR     _getviewcoord_w( double, double );
  400. struct xycoord _FAR     _getviewcoord_wxy( struct _wxycoord _FAR * );
  401. struct xycoord _FAR     _getphyscoord( short, short );
  402. struct _wxycoord _FAR   _getwindowcoord( short, short );
  403. struct xycoord _FAR     _moveto( short, short );
  404. struct _wxycoord _FAR   _moveto_w( double, double );
  405. struct xycoord _FAR     _setvieworg( short, short );
  406.  
  407. #define _getlogcoord   _getviewcoord        /* for compatibility */
  408. #define _setlogorg     _setvieworg
  409.  
  410. /* Output Determination Functions */
  411.  
  412. void _FAR               _setfillmask( unsigned char _FAR * );
  413. unsigned char _FAR * _FAR
  414.             _getfillmask( unsigned char _FAR * );
  415. void _FAR               _setlinestyle( unsigned short );
  416. unsigned short _FAR     _getlinestyle( void );
  417. short _FAR              _setplotaction( short );
  418. short _FAR              _getplotaction( void );
  419.  
  420. #define _setwritemode   _setplotaction      /* for compatibility */
  421. #define _getwritemode   _getplotaction
  422.  
  423. enum {                          /* plotting action */
  424.     _GOR, _GAND, _GPRESET, _GPSET, _GXOR
  425. };
  426.  
  427. /* Screen Manipulation Functions */
  428.  
  429. void _FAR               _clearscreen( short );
  430. void _FAR img *im)
  431.  
  432. {int xc,yc;
  433.  char *src,*dst,c;
  434.  
  435.  if(im->x+im->w>320)
  436.     im->w=320-im->x;
  437.  if(im->y+im->h>200)
  438.     im->h=200-im->y;
  439.  dst=scrptr+(320*im->y)+im->x;
  440.  src=im->data;
  441.  for(yc=0;yc<im->h;yc++)
  442.         {memcpy(dst,src,im->w);
  443.            src+=im->w;
  444.         dst+= 320;
  445.          }
  446. }
  447.  
  448. void hline(int x,int y,int l,char c)
  449.  
  450. {char *sp=(char *)scrptr+x+(y*320);
  451.  
  452.  for(;l;--l)
  453.      *sp++=c;
  454. }
  455.  
  456. void vline(int x,int y,int l,char c)
  457.  
  458. {char *sp=(char *)scrptr+x+(y*320);
  459.  
  460.  for(;l;--l)
  461.      {
  462.      *sp=c;
  463.     sp+=320;
  464.     }    
  465. }
  466.  
  467. void gen_qtab(int col,int scale,char *tab,char game_palette[][3])
  468. {
  469. // NB: Scale in range 0-255
  470.  
  471.     int    i,j;
  472.     int    r0,g0,b0;
  473.     int    r1,g1,b1;
  474.     int    lastcol,lastval;
  475.     int    comp;
  476.  
  477.     for(i=0;i<256;i++) {
  478.         r0=game_palette[col][0]+(((game_palette[i][0]-game_palette[col][0])*scale)>>8);
  479.         g0=game_palette[col][1]+(((game_palette[i][1]-game_palette[col][1])*scale)>>8);
  480.         b0=game_palette[col][2]+(((game_palette[i][2]-game_palette[col][2])*scale)>>8);
  481.         lastcol=0;
  482.         lastval=0x7fffffff;
  483.  
  484.         for(j=0;j<256;j++) {
  485.             r1=r0-game_palette[j][0];
  486.             g1=g0-game_palette[j][1];
  487.             b1=b0-game_palette[j][2];
  488.  
  489.             if(r1<0) r1=-r1;
  490.             if(g1<0) g1=-g1;
  491.             if(b1<0) b1=-b1;
  492.  
  493.             if(r1>=g1 && r1>=b1) {
  494.                 comp=r1<<8;
  495.                 if(g1>b1) {
  496.                     comp+=g1<<4;
  497.                     comp+=b1;
  498.                 } else {
  499.                     comp+=b1<<4;
  500.                     comp+=g1;
  501.                 }
  502.             } else if(g1>=r1 && g1>=b1) {
  503.                 comp=g1<<8;
  504.                 if(r1>b1) {
  505.                     comp+=r1<<4;
  506.                     comp+=b1;
  507.                 } else {
  508.                     comp+=b1<<4;
  509.                     comp+=r1;
  510.                 }
  511.             } else {
  512.                 /109-%88
  513. 8$#'''>-9-($%///0#4901%    111:# -%%0(($$,,-,&$
  514. %(77% $%  +$ $ $ $+ % $%+ $ $%+ 
  515. $$ ,
  516. %%,* 4444=444&,&&"<<<<01
  517. $&::%,(01/2 ,&$%088/ ,10(81 $%%18/-
  518. %088
  519.  
  520. % 
  521. $+'%$%$ 
  522. $%%$3
  523. $$$$$
  524. $$$$)!!)$$$!)$$)))))))!))))))!!!!$))!!)!0))$))!!!!*)!9!))!!!0#!*-($$))!!! -9!*+(%$))!!!((
  525. ,$$)))!0,-:--())))0:<9($-9()))-%-:-$$$09$$(:9%$$09   #9011###990-00-99(0 00///->'9,18-"9-//2%/-(1-- 
  526. 2/011$%:( 
  527. (%:-+$ (-00(//>$ ,:18'
  528. %$
  529. (,($%0($
  530. $%    $+$    %$$% $$ %$ +$ $ ($%=== ?7&    %(,76"""66""#$,&&&#<
  531.  
  532. :
  533. 6&%$$%9 -%
  534. & $,&
  535.      $%&<,$% (&
  536. ,
  537. $&%
  538. $&<, $(/1
  539. %%&$$
  540. $/
  541.  
  542. 
  543. %01/1$
  544. 
  545.     %18//8$2
  546.  
  547. $8
  548. '
  549. '      %+/        
  550.     $% -9
  551.   %$ 
  552. &     $$$$$    $)$$))$$$$)))!$$)))))!!)))$))$)!!!!!!!)))!)))!!!)))!!!!())!!09!!))!!!%)!(!)))!!)%:!:9!))))!,9(:":)%$))))09-(-:%$))))099(<#90-%%$))$0#""  9#-99-%),(1%-#" #----+)$%%0-9--111(
  553. 9::%%18/$0
  554. '''',,(
  555. 1 
  556. ''''%(&&-00/
  557. / (
  558. 99->
  559. (0(&2+$ %, $ % % $%+ $ $%+ 
  560. $$ (
  561. %%,* 4444=4 4&1
  562. &&<<<1 $:"&,%((>88'
  563. $:01$+
  564. 9( $%18//1$ $ $%8$ $ $((01$%$ 
  565. $%%$ .$$$$)!
  566. $)!!! $)))$$))$) $)))))$$)))
  567. $)))!!!!!))))!!
  568. )))!!!))$!    ))!!!!)    $))!!*"0)    ))!!!: ($)!    )!!!!-!    ))!!!: -$)
  569. $))!!!!!!#%%
  570. )!!!!!!## $$))!!!!)#-90
  571. %)!!!(-9
  572. %8))(-9$0-0--- %%%$)!%%    
  573. %1$)!(1 %$%10**- $%118>/ $$11/8'    80      1/8
  574. '    '2  $,,/88
  575. '
  576. 
  577. 
  578. ,&:///
  579. 
  580. $:<"//%
  581. -""&*$
  582.  :7% ## $ -"+ $ 00 $ %00 % 09# #  (- 9 7 -9- 46&&    %0-&&&46<<"
  583. &1112%$7<((::(&(%1111$%$%  :0(-$+ 
  584. % $$ / $%%$1
  585. $$%$%%$$ 11
  586. %1!-$$!!$$$$)!
  587. $))))) )))))$ $)))!!!))))!
  588. ))!!!!))!
  589. ))!!!!(%!
  590. $)!!!%%!
  591. ))!!!
  592.  $%!!
  593. ))!!!!(!
  594. ))!!!!:%)
  595. ))!!!#%$$
  596. $))!!!!!!! %    $)!!!!!)#-%))!!!)-#91%%0)))(99$-
  597. -(-99%1)!!90%00% %1)(% %10(,* %1/8
  598. 1
  599. %)
  600. ''    /12/8
  601.  
  602. ''/% 19
  603.  
  604. 1%-- 
  605. %&":%9-    $$$$&"0-
  606. $(::9---%    $? -0%00-0
  607. $%+ $$% $% $$% %$% $$$ 7%( 46&$&46<<<&&$ ,(::&"$ 
  608. %&$111 $%:11%$(-21
  609. $$1$ 
  610. %1 $ 2 $01
  611. $ $%$ 
  612. -
  613. ) $$)!)    $$))!)!$))$))))))!!!)$))$)))!!!))))!!)))!!!!)%$)!$))!!,!!))!!!
  614. !!$))!!! -%!$))!!!!$))))!!!!!#$))!!!!!!: 9$0$))!!!!!!,#--#$)!!!!)-#$%0)))99$)!8-99)*-$0--0((,02($-90!!1/8/%-0$1/
  615. '''1%-912
  616. '
  617. '81--
  618. $1/>9
  619. &--$ %12-&&:0
  620. $$$%%,-%$%&&$
  621. $% 7??$
  622. $ %
  623. $% $ $% ,
  624. $$+ &&
  625. $ 6"
  626. 
  627. %%% 4"<0 $%(,74"<
  628. %    $77
  629. &1    7(1    % (1    $ 1$%%$01$%!*
  630. 
  631. $$$$$$ $$)$)!$ $))))))))!)
  632. )))!!!!!))$))$)    ))!!!!!)))))$    $))!!!)))!)$)!!!*(!))!!!!-!))!!!! -!)))!!!!#$!!$))!!!!!!!())$))!!!!!)#-$)$)))-),#%$!!)))-0)09!!!(-9$)!!!)>19-9999-$01/1-0    %12-#
  633.  11/8    $ 1/8''    0%1
  634.  
  635. '
  636. &
  637. 12/&
  638. &$$$%12/-:$%((,,$$ $$%+ $$% $$% %$% %%$ 7$(, 46&,&46"<<1
  639. ,&&&&-0$
  640. &&((%
  641. &
  642. 1/($ $,,0001
  643. $+-$
  644. %  $$"3$)!)$ $    ))))))
  645. $$    $)$)!!!)$$))))))!!!$)$)))!!!!))))))!$$)))!!!!))$))$$))!!!!-$)))!!!#$$))!!! -$$))!!*    $))!!!(    $))!!!!! -(
  646.  
  647. )!!!!!!!##(0 $$))!!!,##-
  648. $$$%-09(99-%
  649. ))$$!,/-9999 )!!!*'09-99 !!!!!)10-9:-00 $811 111191 111/
  650. #/ %118    ' (1 1
  651. 9
  652.  & 1/,
  653. 9#:: 1/--&( 11(
  654.  $%0,,,$
  655. $$+$$%$$$ %$ 
  656. $ +$
  657. $ %
  658. $% ,
  659. $$% 4&&%
  660. %=4"&,746<<<11%
  661. :,,
  662. ,111
  663.  :&7/     (& (1    
  664.  
  665. 
  666. " 
  667.  
  668. %&%10%
  669. $(/2$$    
  670.  -/21
  671.  
  672. $+ (%
  673. 
  674. $+ %
  675.     $%    $$
  676. *$$)$
  677. $$$!!! $$))!!    $)$)))$)$$))!!!))!!!)$))!!!))!!$))!!!!*0!)$))!!!#!)!!!! #($))))!!*,))!!!:(
  678. :$)!!!!#-($))!!!!!##))!!!!!!,##09-$))!!!!+9#$))!!(9-1/)%-99$)9$-(0-0)!%1-    10((-/1--9-9    1/0--0$1/8''''1-9#-0$19'
  679. 9#9$    %):# 9$$((�$$,(-9:,$%+7&,$$% $$% %$% %%$+ 7$%( 46&
  680. %,&46"<-$
  681. (
  682. 
  683. -($
  684. :&&$
  685. $$
  686. :-/$$ %+((0
  687. $ -%
  688. %  $%%%%$(5$$)!))!! $))))$$$$))!)$$))))))!!)$)))))))!!)!!!)))))))))!!!!!)%!$))!)))!!!!!)(!)!$)!!!)($!!)!))!!!!%!))!$)!!)-$))))$)!!!!,0))$)!!!)0))!!!!!%))!!!!!)9%1%)))!!!!!!))$)))!!!!1(!)$0/-(9-%
  689. 
  690. $%$ 
  691. 1111%)!!     
  692. %1$111)!     
  693. 1/$$1/$**(%
  694. %,&&0%%1>%///1
  695. $&&&:$$%(%88
  696. ''/    %:&&,$$+8
  697. '            &$$%%>
  698. '        
  699. 
  700. %%%-90%$$$0&''
  701. / %0---9--0$$$<%    $$$%%$(<<1    
  702. $$%((9,
  703. % $%-(, $$%+-%
  704. $$%(#$
  705. $$%++$
  706. $$%%$%
  707. $$$%$%% $$$%$ 90111$
  708. $%$$$$ 40-
  709. %(,,,&"""610&&,-
  710. 
  711. , ,&<:
  712.  
  713. $&%    $ 
  714. ,%$    $ $$%$            $ 
  715. $ (
  716. %(
  717. $
  718. $1 %1 $
  719. "2
  720. $)$    $)!)    
  721. $))))     $$$))))$$
  722. $$$)$)!!    $$)))))))!!)!)$))))))))!!!))))!$)))))))!!!!!!!)!!)!!!!!(0))$)!!)!!!!,))$)!!$))!!!+$))!)!!!-$)))!!))))!!!!)$$)!!!!!,0$%$)$))!!!!!!$!,)))!!!!!-    10!)$)))!!,-$    /
  723. $$$$$$'(-0
  724. /
  725. 1%1/%%11$)!%
  726. %
  727. 1%1%1>)!
  728. 
  729. /%0$%1/3! $81$$$%0-1 /1$%+8888
  730. /-$0$$%%
  731.         '09-9$%%%%
  732.  
  733.             
  734. 2--9-0%12$/
  735. ''..:9#0$%1/
  736. '    %9
  737. "",-#  9$$%%-%$1(&"<"<#-%--%%%%$$%++$$,&9
  738. $%+%% $$%$$$% $$$% $$$% %$$% $$$%+ $%$% 7%((,,&
  739. """"66$&,-
  740. <&%11
  741. $,& &1 $  $(1 $ % $ 1     $  $+ %(1$%%$$
  742. $+(1%01$$$0))$$)!!
  743. $)))) $$$$)))$
  744. $$))!)    $$)))))))))!))$)))))))!!!!!)$!)!)))!!!!!!)!$)!!$)!!!!),!!)!!$))!!!$!)!)!!),()))$)!!,0)$)!!!!0))!!!!!))!!!!!)9$)%))!!!!!!,!)$)))!!!!9%)))%/$%)))))90$--%$)!%11/1%1/0/0090%--1111!9 90
  745. $%%%0()(119 01$$%+$>//%99%1$$%%$$)
  746.  
  747. '''#%$$%+)+''            9 -111%
  748. ''    '
  749. 1//88
  750.  
  751. << $$%
  752.  
  753. $1//&
  754. "
  755. 0$$%+++(0,    $%$%
  756. $%+ $ $% +
  757. $%+ $
  758. $$ +%
  759. $$% 
  760. $$% $
  761. $$%+=& $$$%&466<
  762. $ ,,,&&&
  763. 
  764. %%%$
  765. %% %
  766. $$% 1 
  767. $ $+11 $%
  768. $%%
  769. %%
  770. -$))!)
  771. $$$$))))    $))))$$))))))))))!))))))))!!!)!)))!!))!!!!!!!))$!)!)$))!!!!))$!$)!!$)!!)(!$)!$)!!!))$)!$)!!!(%!$))$)!!!)-$$$))!!!!)0$!!$)))!!!!-$!!!!)$)$))!!!!!,-0!))$$)!!!##    1$$)!((-# #-%8/%%)!)!!0-9'111$$)%$9/
  772. 1%1011%)!)(1%%//$$$%0($1////2 1/$$%%%88
  773.  
  774.  
  775. %1$$%
  776.  
  777. '        
  778. %%$%
  779. '        '.<"%10%8
  780. '''>&"$%1/
  781. ''/-&&%$$%%-%1$$    $$%++$$%$$%%
  782. $$% $
  783. $$% $
  784. $$% %
  785. $$% 
  786. $$$%+ 
  787. $%$% *
  788. %((,,&
  789. ""6666,&,,&"":$&7%%&&,/% $%,<&10%11 $ %$,:,+% $$      $ $
  790.     $+$
  791. !4$)$)!)$ $))$$$))$))) $$$!!)!$
  792. $$))!!))))    $$)))!)$$)))))))))$)))))))!!!!!)))!)))!!!!!!!$)!!))!!!!,0)!!$)!!!(()!$)!!!,)))!!)-()$)!!!!,$)$)!!!!)-$))))!!!!!0$$)%$)))!!!!!!-$!)!!$$))))!!-0$!!)))$($$$)(( #$,!9###011)!9/11%!!)#1%10))%-"9/111>1/811$%$1/(/88
  793.     ':0$$%88'    ;"    $$%188'    '"&    %$%8
  794.  
  795. >&&,$12/1//%$$%08
  796. 0%1% $$% $%+ $%$
  797. $% 
  798. $$% $
  799. $$% +
  800. $%+ $    $% 
  801. $$% +
  802. $$$%  (
  803. %%%,&4666"&(
  804.     ,7:&&
  805.  
  806. &
  807.  
  808.  
  809. $+,&
  810. 
  811. $&0%% $$$,,%/1 $%11 $  $+$
  812. $$$$$$$.    ))$)!! $$$
  813. $$$$)!    $$$))!!)!!)))))))))$)!$)))))!!!!!$$!)!))))))!!!!!-$$$)$))!)))!!!)%$$)!!$$)!!!!)!)!!!)-()!)!!,-))$)!!!-$)$)!!!!)$))!!!!!0%%$))!!!!!!)9$!!$)))!!!!!99%!!!$$)),)(%1'$1%$$%/    -%'$%%11$,%    9--$)9%$$%%>$!1% #$$%+$, <-121$$%+%1
  814.  
  815.  
  816.  
  817.  
  818. 8-#0%%%$$%
  819. ''        
  820. -10%%$$9'    :%$$'/$(
  821. 9&&&#&$$$%$1/#,$$%10:,$$%%,(    $$%++$
  822. $$% $ $$ +% $$%  $$$%+  $%$% * %(,,&
  823. ""6"66
  824. $,&,,<-$,4,
  825. & 
  826. "111
  827. $+%,:%% $$%$  $ $
  828. 
  829. $%$%    &8))  $)!))$$
  830. !)!!))$)!!$    $$)!!    
  831. )))     ))))))))))!)     $))))!!!!)))))     ))!!!!!!!!!)     $))!!!)!!!!!!)     $)!!!)!!!)     $)!))!!)     $)!))!!)     $)!))!!)     $)!!)!!!)     ))!))!!!)     $)!))!!!!!)$     $)!))!!!)0
  832. $111)!!)))))8
  833. 1    
  834. )($$$%(,!$
  835. $))0<$!)11))$%%09-%)!!(111188111%$1%11'''-8>//2
  836.  
  837. 821/'    '%-9-/'''1/'    - /    '
  838. 1,:''+ 
  839. /&$++%1&,0%1020$,&,-(1/
  840. '            /,%%9 ,$%%$&, %$+++#- 9$+%0 %-0$ $0#%090%$% +(-09%%$+ 0-0-$ $--    $+ +%%-
  841. $$%+ ?*$ ( =6
  842. -- %,4<<4$
  843. ,&
  844.  
  845. 6"<"&
  846. ,&
  847. :: $
  848. $,&<&%$ %&&$$ $%%+$ $$ %$%$%$$'4)))))$  !!!!))) $$!!! $) $)))))))))!
  849. $))))!!!)))))
  850. $))!!!!!!!!!!)
  851. ))!!!!!!!!!)
  852. $)!!!)!!!!)
  853. $)!))!!)
  854. $)!))!!)
  855. $)!))!!)
  856. $)!))!!!)
  857. ))!))!!!!
  858. $)!))!!!!!)$ $)!))!!!! 0/0)!)))))>8 0%$$,-($1,)$
  859. %%-09$) $00)!)
  860. %0%%%)!!$%$$%!1%00$%11/110%%1/1(//--0%1
  861.  
  862. 8$/(>%
  863. >>0-0$12''>((/'929#  -!%%1/'         '
  864. ("%(,(/        +//
  865. '&(&(''$0//><<:&&(//1%>>
  866. $$%&"<% 1'            %,&&$%%%$%% $+++$
  867. $+
  868. $ $     $% +
  869.     $+ $
  870.     $ $
  871.     $+ +%
  872.     $$%+ ?*$
  873.  
  874. ( =6&
  875. %,4<<$
  876. (&
  877.  
  878. 6"<"&%
  879. $,&
  880. ::,
  881. %(  $% %+ %$$$
  882. %+  $ $ $%%
  883. $+$%%$$0 
  884. $
  885. ))
  886. !!)$))$))!!$)))$)))))))))!)))))!!!)))))$))!!!!!!!!!))))!!!)!!!!!!$)!!!)!!!!)$)!))!!)$)!))!!)$)!))!!)$)!))!!!$))!))!!!!%%0$)!))!!!!!)$%9-%%$))!))!!!!!0  18!)))))/%#< !0$$$)%$!!$-#0%%!)1%%%2)(120111,*$/0%1/$)!>/11,*9$%(-9+$))'
  887. 82$%1
  888. + %9'
  889. ,%1>         /''>
  890. &,1/''+(//88&:,(
  891.  
  892. $%((----(1//:&&%$(($11%1/8''        $11%%$
  893. '            -%$$$+++$$$%+ %$%+ $+ $$+ $$%%$$%,$%+&(,
  894. $$,&
  895. 4%$ =7&&:? $ $++$$%$$%%$$%%%$+$    $$$%$%%    /
  896. 
  897.     $     $)$$$$$))$$!$$))))))))))!)))!!!))))))$))!!!))!!!!))!!!!!!)!!!!!!$)!)!!)$)!))!!)$)!))!!)$)!)!!!!)-$))!)!!!(9)!)!!!!!9$))!!!!!!))90$)))!)!!)),9$)!))))))()!)$0-9))-$))$111))111%11/11$$1/10///11'''1/8-8/%
  898.  
  899. 82$1/''
  900. ((/2''
  901. %1/        -         
  902. 1%/''+/
  903. '/$1''/$+++++++0/%//1%0$11 1'                $%%%$$+++$$+$ $$% +$+ $$ $$+ +%$$%+ ?*$( =6
  904. %,4"<&$%,&&
  905.  
  906. 6"<<<:/111::,<:1$
  907. $    ,,$%*$+$ $ $%$$%%$1
  908. $        $))$$    )!!)    $!)))!)$!!
  909. )))!)!)     $)))))!$$$$)$))))))))))!!!))))$))!!!!!!)!!))))!!!))!!!!))$)!!)!!!!)$)!))!!)$)!))!!)$)!))!!)$)!))!!!)%:$))!))!!!)--)!))!!!!)--0$))!))!!!!))-#)!))!)))!!)))))$$)!-))0
  910. ), -$)!0<#)($%1%11191111%88:,$%//
  911.         /12001/%//'''
  912. $%//            0$/8'9//        '
  913. %//'    '%8''. /        '1/''9       '81/8%111%0000$1111 1/8
  914. '8$%8'        
  915. 2%$$%$%+%$ $% $$%+ $+ $$+ $$% %$$% ,$%4&$,,,+4"&%&&&&7 46"
  916. 1$%,,,&&:(+0$ $+ $+$$$$$%$. 
  917. $))
  918.  
  919. ))$$)!$    $))!!!!)!!)))!)))!$$)))))))))))$)))))!!!)))))))!!!!!!!!!!)))!!!!!!!!!!)$)!!!!!!!)$)!!)!!)$)!))!!)$)!))!!)$)!))!!!))!))!!!)$)!))!!!!!)($))!!))!!!))---18!!!))))))89-%9$$)*($$1,,9))%1%)(911-)1%%1/)%$1*,$%0(+((!(
  920. 8$%12'' /''
  921. &%1-        > /9'<
  922. %$1(        //-.<<:''/$--,0//&
  923. $11%8'        
  924. $$111(,$%$$$+$$++$$%$ $$ $$ +%$$%+ ?*$( =66,, 4"<%$$,&&&
  925. 6"<""&11(
  926. &(,::-&6-$(<&%%$&"$$$,$$,,$$+$ $$ %$$$+%))$))!!$▀Z$=Z⌠╜∩▓꺬ëºTα vÇ▀ZT;8┴ZöπIⁿ  7íUæ    s    £Γx{╖æP ╜
  927. +▌    KWD∙:Φ U),░+╡d    r%
  928. ▌ 0f1╣. φêº╪Çëº(∙Y»Ω¬ëºçèº> JÇ╒E%I≥╘`If  ╥ì     i ⌡B0┴τ%:    aL╣ -1J∞!d@estroy⌡æ6≥ò-φ. ╪ëº╡è└º(π⌠`YäIçèº9ïºQ rÇÆ`iδéú╦üπⁿê°÷!äy─,j
  929. ╒┼▒3⌡
  930. NCö3'⌡╔╡èº.îº1O
  931. O¥%.îºüÇîºeƺ5TLCOLORBⁿTNí∙í∙í∙4⌡4⌡4⌡c∙4⌡╢∙4⌡")S9ïºüîº:⌠4@4⌡4σ■└Ae'.îº$w∙òùüîº=ìº(tw    /(xÖf▒hdc;tHDCs    ▀ I╫,#ƒßNhwnd1'ÇWNDre(@  0
  932.  âÿ═¿îº╒ìº&}i ¢dC║)¿ë²æ]ë
  933. (ßc
  934. ΘÉ
  935. /#K
  936. WK
  937. o║. By r≡espoB':ê60É= U7"'⌐
  938. Ç%æΘÄ/;=ìºĺp2"⌡"⌡<
  939. òê╒ìºÑĺDÇ VÇ"⌡}ë
  940. ░ tqQnIdentR^s▄/%xü(~,á$. ĺ╙ĺ( ² ]qæÑĺDÇź& 
  941. ╬#·öΓ⌠Γö
  942. K∙>Iò.K
  943. ½ÖAαpaint?├<╙ĺÇź* $Ç$₧îîRá~Default  A,'¼`_Dźαź8 @Ç╛Aéπ3£ΦµoVi~ê╨@ÜelectX!GÉ
  944. ÅZQÿ a`ÇźAɺ╨% └ï·í≥`s nev¡É√@
  945. >s. I/ =
  946. Ö'
  947. ù
  948. >¢    ¥αźJæº- (Ç;l
  949. sj¿
  950. %ï∩2i
  951. «rêadiL#»k,b┤.,     ô@imark,;&
  952. B'±K ì 7' ╡G@ï(typ╔lly blackå)à8h`σ^@|!
  953. o╒,    ╡
  954. (+Qpòápu$shÄ 
  955. Ök    ôKr^8le; ▒
  956. ouº─òx;»Aɺeƺé` ╥Ç_qg╟æπ\û$7ÖY╣>&BCÑY
  957. é>Z▒Y¥·_H╜YG=+
  958. ß╔Y)e }╒Yé┼G½FkVDLGαE DI╘vöVLISTêBOX@αMSG≡ORSCROLLBAR≡TATICNGí⌡╔JæºZôº1¢9OO₧%Zôº¡ôºαÖº┐░+≈+≈ +≈`ⁿ`ⁿ`ⁿt<+≈` +≈┬\+╟Seƺ¡Çôº:+≈`ⁿ+╖■+g'Zôº╘ôº$+≈ôÖ¡ôºgö@º(+3+≈&▓hdcDlg├(≈╔ ï*ç&P'τ')≈ûΓ╘ôº²öº&z)┼)≈)ù√!)gaà ±IdraΓw∩$ï≈'░Q    ô
  959. 7Åd¡┴╒▌ƒ{Çu
  960. ;göº8òºp2JⁿJⁿπôë²öº╦òºDΦ'Jⁿ'≈5G''p$≈╦%ú$πtQ#≈P7# . 8òº∙òº(%≈ \sò╦òºlû@º&╗+╧%≈ⁿ%≈%≈in%ç─0<∙òº¿ûºα* '≈'≈·bclûº
  961. ùº╨8'╞ië'≈'≈'╫]1)'a`¿ûºkùº%7)≈í≥)≈s)≈)æ₧
  962. ùºⁿùº-└ (Ç=-¬ΦlNote thak≤<jï    Æe@lf; yp?╖ügî* 
  963. !╡fZ┴░8Ω╡F-»kùºÖºél ▒÷;]ë▒÷▒÷_o▒÷â
  964. ▒÷▒÷_╢¢▒÷I▒÷▒÷▒÷ùû▒÷▒÷+2÷╩ⁿùº
  965. ܺ19
  966. O
  967. üOƒ%
  968. ܺ|ܺ╘┴º■]╟▓÷▐²▐²|═▓÷▓÷▓÷▓÷▐²W▐═o&Öº|ܺO` nÇPào▓⌡çÇ▐my╟÷Ä≤▌!⌠M5
  969.  '
  970. ܺúܺ$·²âå|ܺ&¢@º(·
  971.  
  972. j%·²ßxhdcEd?╬ ∙²¿≈}#`⌡φ ⌐δΦ-»
  973. úܺ╒Ç¢º&Φ
  974. <Φ²ΓΘ²P╫tδ∞-δ∞²╬÷∞]
  975. û¢┐&╜Θ U╧ ▌6f5╫▌3;&¢º£º2╫÷╫÷bÖû╒¢º⌐Ç£ºD 
  976. ■-╫÷ ²
  977. @╫&x²²╪ª}┘éQ ²7╙@. £º╫£º(■^uù⌐£ºL¥º&ÜÖ/₧'■pl▌÷■■▌FvA<╫£ºê¥º*▀÷■deL¥º<└º8 @Ç╩╝g■Çꥺ<└ºÖºé ô╨ Üelects 
  978. /G
  979. Åé[    ╫Ω. !ÿdfꥺá└º% Ç╠Ç åÿÇP The WM_CTLCOLOREDIT 
  980. is never  =√
  981. >s, it 
  982. Ö ='@
  983. / 
  984. >h. <└º╬└º(Ç  Çc0 ÿÿÇf0æ¢á└º╘┴ºv ║Ç7ÆPπ3Φµ3ë¢πIë$7     P\û p
  985. é>Z!#P¥·_H/PG=ä+
  986. ;P)e }G@ 01,τÇBTNαDLG'αLISTBOX?αMSG≡ORSCROLLBAR≡TATIC╕∙═╬└º═┬º1NO¥àOá%═┬º$├º A╚ºÄ≡ 
  987. EnableButton("up");Chang@Binding , "JI(`api32wh.hlp', `msg32')7DisKÉovr≤L_░gr`≡`@a≡iawmc_:g0W#╘┴º$├º:Ç DÇH,bΓ'╕Ç
  988. `å"ÇΘ    c÷±     π'═┬ºK├º$` ▌τµBòù$├ºα├º(É Ç/|"0½0 éék≡²hdcLB = (HDC) 
  989. ▀  /* Θof     ╜ƒßÇ*/hwnd%@WND)     £;y&á  0
  990.  2¼
  991. K├ºî─ºÉ&ú@cçñ≤éº =toP
  992. ßÅaæ DZIdrawíBy respo" /;
  993. 30= U
  994. /
  995. Ç%æΘÅ╤1 by 
  996. ¡
  997. /▌ƒ{ßφ;α├º╟─º2  4Ç2ORÿ=ü▀~Q(é=⌠â\4n╪èæâî─ºX┼ºD Vǰ#Rî½;8
  998. -â0é
  999. ░ ä1    
  1000. ▄ Ident≡ifie%ó δ╞êA)     £.*└"0. ╟─ºå┼ºP(╖╖ΣΩIsôX┼º∙┼@º&I' ╖dJ5I~n applicatio0n  [h:
  1001. K ⌡M1a . I
  1002. ½
  1003. /╗paint
  1004. ╞O├P<å┼º5╞º* $Ç$╝îîRZuDefau`lt Acs°ba∙┼ºù╞º8Ç @Ç┬Sé}hòéñu\÷\å\1Z&ed5╞ºⁿ╞º%hZ╚Z÷╡≥ ]÷. I]& =
  1005.  Ö'
  1006. ù[6. ù╞º*╟º([÷[½ⁿ╞ºA╚ºéα ╥ÇW▐#ε[÷├gF[û╣>&C#P[÷ ;0[å»ûg÷g÷c7g÷w7<αd÷J6d÷d╞∞%(°╠*╟º9╔º1L
  1007. üOCèOí%9╔ºÅ╔º¬╬º┌~α k÷k÷nk÷k÷k÷k÷k÷`ák÷═Vk╞V"A╚ºÅ╔º:ΦkFWek÷b±jV'9╔º╢╔º$j÷ö£Å╔ºJÇ╩º(jå9j÷PΦhdcMi÷±i
  1008. iû%@iµ&<  0
  1009.  i½╢╔º⌡╩º&⌠
  1010. !i÷ÜRhû■┴hFÉhûáh÷hF3h÷1bh÷;J╩º0╦º2h÷h÷ÿæë⌡╩º┴╦ºDuhΣ'Rh÷h÷h6Mφh÷ehûδçA) h÷"0. 0╦º∩╦º`(h÷hVsû┴╦ºb╠º&Φ▓ -─d8h÷h÷h÷h╓├0<∩╦º₧╠º* h÷{,Dh╓bdb╠º═º8 hF╝(h÷┼ⁿ┼▄\1├,dc₧╠ºd═º╨%├ ╞├ⁿ╖⌠
  1011. g÷.g÷,
  1012. . ═ºÆ═º(├ⁿgV¼d═º¬╬@ºégY g÷g÷g÷ï╧£├ⁿG0g÷ ╧ⁿα╧ⁿ▀=<αµZh÷h÷h÷h6√╧Æ═ºÑ╧º1V¥àO ÄOó%Ñ╧º╨º>╚╒º5²ARk÷╫ⁿ√╫ⁿk÷3╫ⁿ╫ⁿ╫ⁿk÷╫ⁿk÷)t+¬╬º╨ºO n¼ÇZ├k╫ 5    Ç╫l■∞ⁿ2Ç╓qâF▄ï&'Ñ╧º@╨º $⌠ⁿÜá╨º┌╨º(h⌠ A⌠ⁿ^°R1÷SB ≈ⁿ≈ ⁿδ≈î&ìª'áÄ╓Å&│@╨ºì╤º╨&┘#∙ⁿ∙£ )é√ⁿaò δ
  1013. Θ%Y δ
  1014. W
  1015. be` ║. Ö÷ì
  1016. v¢Ω<Φ ΘM
  1017. 
  1018.  
  1019. ï
  1020. -S ΩÉ;┌╨º╚╤º2²²0 ùÉì╤º_Ç╥ºDù^!ù÷ù÷
  1021. @-S²e -║
  1022. ¼pò1- ²╜╤ . ╚╤ºì╥º`(²]w¥_╥º╙º&Φî;¥÷¥÷²²¡vq<ì╥º@Ç╙º*
  1023. ²í÷
  1024. fk╙ºª╙@º8
  1025.  
  1026. ╓╖í÷»%
  1027. ² í÷fíik@╙º╘º≡%Ñe@^╩≥3╩Æ¡; ╩█
  1028. ÖÉ =' 
  1029. -. ª╙º=╘ºp(╢¬÷¬&û╘º>╒ºv└ ║ÇMx₧╧²M¬÷/0¥·}ì▀₧÷₧÷₧÷₧÷│åL8>Tα2Kk╨¢V °╠=╘º6╓º1FCèOáôOú%6╓ºº╓└º╝█ºEαⁿⁿƒÉ÷É÷ⁿⁿÉ÷KovÉ÷?uÉ÷` É÷≥VÉ╞q(>╒ºº╓ºOöÉTÉ÷åÉ÷ÑfÉ÷aì╞'6╓º╬╓º$ì÷ëîº╓ºW╫@º(ì]É"0ì÷═üètδ
  1030. cì÷.ëû%pφ ⌐δ|&╡╬╓º ╪@º&V
  1031. ) |÷|ªBy÷yZw÷w÷)w÷▌≈(`Θ|F%¡╡~&;W╫ºG╪º2p 4Ç2≥²¡£Æ ╪ºπ╪ºDΦ
  1032. %    $²~÷âcéa    éµ╪DC ü&c/ïq. â÷╓P. G╪ºÇ┘º(â÷!]sÿπ╪ºä┘ºá& 1╙dk5â÷ [x1 ⌡
  1033. │╠wàF
  1034. +I
  1035. ½ü÷wQ<┘º└┘º*, ÷åD!▌dgä┘º$┌º8└ @Ç╬17!²I`!²ªB}&fh└┘ºè┌º%║#
  1036. ╨ò╖╦≥╦bnz÷#]zv. $┌º╕┌└º(*%²%-Öè┌º╝█ºv ║Ç■3z÷%²0%²/0zû 1ì²²²²z÷Tαz÷z6╙W╕φ┴╕┌º⌐▄º1Σ ÄO)Pñ%⌐▄º⌠▄º z¿ªUT≈r÷²r÷a²²╛r÷²`Dzr÷-K╝█º⌠▄º:α DÇ0Φb]÷√]f÷αL'⌐▄º▌º$ ┌ⁿ6[⌠▄ºQÇ▌º'┌ ╢K╓UT
  1037. ╪    ₧┤╬▌º▐º2` 2Ç¥I∙%Γ╚v║æS A▒╠║ ;aæ,⌐_ δ
  1038. ╫δ
  1039. «cÇombo s @U(cut1
  1040. /) 0, ifh ön¬,êæ    O
  1041. W
  1042. %┐,Clipboard!CF_TDEXª ^╩Q▌º5▐º*(ÇÇ⌠pÄ
  1043. 6-▐ºk▐º, (ÅÄhñτY5*)5▐ºò▐º%
  1044. ▌ R▄╗σ. k▐º├▐ºp(
  1045. ⌠5 +|rò▐º?▀º1(qΣ4îπ1╪_Θpqvd⌡;,Ç
  1046. ⌠ed by░    ta=╙
  1047. undodne 9T1t EM_UNDO8
  1048. ·(├▐º ¿F  ZÇQd₧π"]UΓDÑíîσT╤╦!1)pplac|t┐o2n┴▒, KÇ4LE3$êC⌐.mòN╔ÇgΦ    dlΓ0    &ôHiTh·≈no effeèc
  1049. Θ@p%aCBS_DROP0DOWNª+ Σ∙√+?▀º ¿╝█ºn)?▀ºz¿E ZÇRÇåÿπ"]ÇëÇπäë_Bg P]í_@ WM_CLE@AR, 
  1050. 0OPY `PASTE Φ┼ ¿b¿1½áôOßPÑ%b¿¿¿┼¿
  1051. EnableButton("up");Chang@Binding , "JI(`api32wh.hlp', `msg32')7DisKÉovr≤L_░gr`≡`@a≡iawmc_:g0Fz¿¿¿:Ç DÇ8U1ÿÿÇΓ'Ç
  1052. å" ÇaÇé     'b¿╧¿Ç$ ê1¢ÿæ/╜¿¿î¿1 0Ç)├0m éé0c/* Respons e to ┐DDE_INITIATE */
  1053. ╫=     
  1054.   1Θof postn application.    ¥= MAKELPARAM(aApp, a└Topic);.ÉÇæ
  1055. ]╬seâê≡ê EXECUç≡ç≡ç≡ç(ä0) lPackedVal;90p   ½Ds æ3 Θb
  1056. ╤y
  1057. ╖ⁿ
  1058. !{≡{≡{≡{≡{≡{     ìyQ"╧¿▌¿z 0┬ÇE*bw⌠║äRmâSàêÅSaz╟¢S_ƒëBªºS─Σ╪ù│SΣä≤ê#`x&8╦C!iThe _notifies a ╧3(
  1059. )▀í÷
  1060. /r@eceipt6 ·_aΦ36Ʋc┬ü4áADVISI.░UNPX`POK7
  1061. æin  }case s,Ä}ÇREQUEST';î¿¿2Ç 4Ç2╨Rÿçâò|áQéç╘âB3 n╪ìp²▌¿ê¿╡Ç 8ü√; î;8æ▒éÇ
  1062. ·â0
  1063. └░╝æ6≡âDpQ0π╠φn┐zEτáEÉ0Cr╚#╩üò±:    
  1064. ä    
  1065. ▄ Iden±A
  1066. / Gr╤S
  1067. /@╣░
  1068.     £. Co`ntain╢╧
  1069. +    !ply╣Ñ.Γ#ß 0≡0P
  1070. ][
  1071. ±a ⌡iu∙≡ed. ╕≡9Γ╖≡╖≡╖`δsΘ ╜ Γ╗
  1072.  ▌
  1073. +╡·C    y)É ╡$ctüby 9
  1074. ÉUn$
  1075. <ram┴╢┼LowG╝wStatusô High0HhCommands that 
  1076. σ ╢T╙¬";¿├¿2!¬é│ä╒~¬│¬≥Γê¿Ñ¿R rÇ>6$¬;8Ü2πö╕l│°SâπΦ;è?╝┬x┘@B9Ä║ACK▒ ╜█a ser»ⁿ║C8½$ µ╔%a Çfull e*; ┘ )S└tructu₧√üééa ▀
  1077. 
  1078. {█
  1079. /c?1  ╖9U├¿▐    ¿f└ ÜǽßPîs Ç≤I≤I≤¼#=3═B°%å .≤.cs
  1080. «
  1081. ≡ver ≥≥≥≥≥≥≥┬aItem»;Ñ¿
  1082. ¿2óà½ä▀U"½U≥≡▐    ¿     ¿áRU;UR ;8U≥U≥U≥U≥U≥U≥'U≥U▓° ºt ▀¿T
  1083. O╕&3    ì[which%[τä <`. 
  1084. ¿7 ¿(└  Çªi∙    d)ÿ¼    4      ¿k ¿(5-på-pP!9≤ç07 ¿≥
  1085. ¿p└ «Ça├)▐≈ πº)╠V[πo°░IP Uë0╝ó
  1086. ÿ|F└ Exceú-< τ╫    ╨ñτO
  1087. /ƒ╛Ö╥ 
  1088. e¼·H╡
  1089. o╛ f╚uncf. s╓>╩f,-Ü ;[ÇK. I;IneithLÅá-na"mÜ╧no
  1090. \P ibe -Ç(even iÆü╢┌
  1091.  ï-Z
  1092. ^&√    nowledg¼&òmessa ge %╠ac1mpan╚&EB ╬║╨φZ=≡┘reu/ %/P
  1093. HPiW
  1094. A╡
  1095. 
  1096. ╨«it .Uc
  1097. Ça 
  1098. e
  1099. ûÆ≡'+∙=
  1100. Ö▒
  1101. +¢1╠ i|`gå
  1102. {Ç≡B╦Åk ¿
  1103. ¿o ¼Ç┘(eJtH£kV!∩]:KèT/Zπ╓x▌ìóZ¬èè─ A    
  1104.  #╝
  1105. !
  1106. Kÿ
  1107. «7a·ö
  1108. ╧sg╟ªqùiR 
  1109. «Q╞Rxôº╣Iâ
  1110. ╟■ï≈initiûa╧8#Ñ*⌡┌┤\▓jTERMINg3\
  1111. wa:╫ c└onfirmP,╚D
  1112. π╩ói
  1113. oWre  (
  1114. rvely▒¼negê )o└ Θ
  1115. ! =XX    ╖ÑoL╨UFò    UharÖ
  1116. 
  1117. â587int
  1118. einl
  1119.  . áMemoreââ1    fre╩ #f░Rele ,E▐rU╙
  1120. 3 úkJ;ï;P z>≥
  1121. ¿ä¿yα └Ç}₧twñ%┐╦Zpî»JÄ£v£º⌠ ╨¥L v%5ê⌠▓ |ì;£"!y,░ú¬ëgé₧2P∙Ta ε≤εchPDataW ë/┴Cσ =%F▒
  1122. E1+╡* Θ[LT1;J`üÅ≡aµ Rh- #╫<+rƒ?ì]ÿσ ≡Op▐∙∩# #⌐σcI=∙
  1123. ± }≡}└ö═!B}}¡èù≡ù cêöÿP,V╛,├æ⌠ÿû
  1124. ¿¿? LÇ-æ⌠╛≈æ>╪kmæW3≥32u$
  1125. «Kp⌠ï¡ΣF;N─    ⌐²ä¿┼¿╛  Jü√ù@åÿ ÄÉ,Ñ╣ù8à┼¥ñ»╝ƒ╘ƒ▀∞ƒ╝ ╘?ïà∞ƒ ╪α{ \┼Ä█ûV╒¬ ∞╖  ╥ ε╧rΦ(Ç╙?9Ç┐oMÇ₧àcÇUN)c⌠╚¿╣¿1K )P╞ÇPª%╣¿ Ç¿B¿┬á 
  1126. EnableButton("up");CÉhang@Bi▐( , "JI(`api32wh.hlp', `m@sg32')7D─isKÉovrL_░|gr`≡`@a≡awmc_:g0R┼¿ ¿:  DÇ>┼gΓ'╟ Ç
  1127. å"╪Ç╟
  1128. æΓ²░     φ '╣¿2¿$╠ 3╙
  1129. ¥ ¥ÿ ¿╧¿( $Ç1¡#0╞
  1130. ééf╨
  1131. ╫=      
  1132.  0/*8 Θô╖_Φÿ */    ¥= (LÇPARAM) )x;9 ╛Oÿ±4æ    ì╧5£┼2¿k¿&` ÇïJöô Ç╧3(1
  1133. p) s√OjTUaG&╗ GôÖ\ J╦¬ Gesu¼    yüç
  1134. ô[a j
  1135. δ
  1136. /    ìV┬;╧¿ª¿ 2ΓÅ=ü    î==î²&k¿╝¿b≡ ÆÇMΓ_;8ⁿ■7
  1137. _ⁿ■ⁿ╬    σ■σNg°Z▄■    £▄■¥    ▄■▄■Ω╣▄₧τV▌■▌n;ª¿≈¿2H▌Äaé▌>a▌■δ╝¿Γ@¿R▌▌^;8B1πàr3╛»╤Z▌■r8ÿg?üπü╞    {█Γ░R│
  1138. ╜that  ⁿæh±ûv
  1139. ⌐╩    Ä>╪%ac
  1140. : ∩■∩■¥∩^nà,ετ ╠I. ≈¿¿0(╪■╪^└3Γ¿╨¿&⌠@g÷/┘.▓)o7├ √
  1141. ?
  1142. )
  1143.  ùy_■ u─
  1144. ]ÿî, -<ê 
  1145. Iy┼![╒
  1146. )'@ ù4ì?%Ç╙
  1147. Not`
  1148. +JG= ⌡
  1149. I^ Ö[hot links┴Powarm
  1150. 07\α¿,¿▒ 0ü┴▌|╟?\ ╨íπεô║éZ├LΓ¥Ñog▌║p»B╦0└+²e≤π╨Æ÷g"Ñ▀PU>╨ⁿ¢{⌠{4ê )<π 2╣7~r`sVü¡GMEΘ,╨SHAR≤/¿tÅ■AB2ÇzR0¼╜0╖╪úO║²║²║²▄▌%┴Ç ╠≤aü 4æÑP@H $║φ⌡
  1151.  
  1152. / ╚â(sr)8¼#αpondsßz{±
  1153. 4
  1154. [ ═_(cli∩=░¬l╦üª╨¿╟@¿íÇ ü'!} o■ⁿ,Å╣Z≥'≥O]è ┴─⌡ ô²═)¥A≡╚#!
  1155. 1L35µ⌡⌠s@imilarÄ
  1156. >+-N~╝┤
  1157. φ≤fÇ/èz╞▌)╖VWìüQù
  1158. úA  1╧É. Cª_y₧=ûR┐R╧
  1159. «d⌡/læa 
  1160. e
  1161. û.╪ ë9¿F╨Pφobject; 
  1162. ,¿╟@¿┼¿/application  i
  1163. oU
  1164. /
  1165. üThe  G
  1166. K
  1167. «reuse 
  1168. / lPackedVal Ç
  1169. ╧by 9DDEram!'funcV 
  1170. «ΓtMRG!≡x%wStatus  ≤aslLow ╗ÇæaItem`High ║.N. ,¿⌡@¿(  ÇÇÿÿÇÇé %║╟@¿B¿Ü üu.0åÿπ╛≈æ╪3ë4π»B╦! Pεô║ZP£äkV#Pº)╠_/P:KèT;Po░IBPGP╠φn┐SPaz╟_Px&8ük@ Freæ╥,+T@V0\┴╣"¼*0V╤>¿æFUnp8≡c0WM_»_REQUESo Φ╞⌡@¿C¿1DßPëÅPº%C¿HC¿[Q¿
  1171. EnableButton("up");Chang@Binding , "JI(`api32wh.hlp', `msg32D')7DisKÉo╠vrL_░gr`≡`@ºa≡awmc_:g0FB¿HC¿: DÇB::bΓ'4Ç
  1172. å"ÇL    N'C¿oC¿$ FsÇÿ|2ÆûHC¿D¿( Ç-y"0¿ ééZ
  1173. ╫= └    
  1174.   /* Θof PpostC ¡ô*/    ¥= (LÇPARAM) ûs;90·ed ║DATA æ    ì╧5ª╩oC¿ºD¿&α Çò C:7#A ╧3:(╒)
  1175. *öÉs Da to╗sKöpas!"3    ì"
  1176. /s    o notify ┘
  1177. /availabil0ity δ1 Å;D¿ΓD¿2 4Ç2▀Rÿ=ü▀Ç~Qé=ΦéâΘ3n╪∞+ºD¿ⁿE¿b ÆÇW▓; î;8
  1178. !·â0é
  1179. á0┐ôÉT    
  1180.     
  1181. ▄  Iden╥iea╖ G¡QI.ò1    £. ^╗
  1182. +╡ªA    yXÑ╡8$ct╛_e╦π ┼%5is hDataÅ«NUL└L. ô *5 C%v;ΓD¿7F¿2%T*TAaéT1a    TíA£ⁿE¿╙G¿dα ûÇTA;8AT1π╖ùF#NU_ƒëªFíéâπΦx;è?nEzQ½╞0Rüa ▀
  1183. 
  1184. p{█aC╠2à ╒
  1185. /3æq    O¼Θ ièb│Uì-iX Gm2ì1sthat╔2-iU 
  1186. │≈S╟a warm@     ╕. A
  1187. @╣ÖT1║ 9~ü2EADVISE Çmessage└fDeferUpd bit $ Y╞%all eδ; ┘ )Struc`turesNßFÇContainUn ╧
  1188. +    !ß    ì[whi─ch╢3
  1189. «=#░W    ° < . 7F¿H¿( ≈ ÿ 4