home *** CD-ROM | disk | FTP | other *** search
/ PC/CD FUN 24 / cdimage.iso / dos / BLAM / HMISET.BAT < prev    next >
DOS Batch File  |  1995-11-17  |  49KB  |  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-%888$#'''>-9-($%///0#4901%    111:# -%%0(($$,,-,&$%(77% $%  +$ $ $ $+ % $%+ $ $%+ $$ ,%%,* 4444=444&,&&"<<<<01$&::%,(01/2 ,&$%088/ ,10(81 $%%18/-
  513. %088% 
  514. $+'%$%$ 
  515. $%%$3
  516. $$$$$
  517. $$$$)!!)$$$!)$$)))))))!))))))!!!!$))!!)!0))$))!!!!*)!9!))!!!0#!*-($$))!!! -9!*+(%$))!!!((
  518. ,$$)))!0,-:--())))0:<9($-9()))-%-:-$$$09$$(:9%$$09   #9011###990-00-99(0 00///->'9,18-"9-//2%/-(1-- 2/011$%:( 
  519. (%:-+$ (-00(//>$ ,:18'%$
  520. (,($%0($
  521. $%    $+$    %$$% $$ %$ +$ $ ($%=== ?7&    %(,76"""66""#$,&&&#<
  522.  
  523. :
  524. 6&%$$%9 -%
  525. & $,&
  526.      $%&<,$% (&
  527. ,
  528. $&%
  529. $&<, $(/1
  530. %%&$$
  531. $/
  532. %01/1$
  533.     %18//8$2
  534.  
  535. $8''      %+/            $% -9  %$ &     $$$$$    $)$$))$$$$)))!$$)))))!!)))$))$)!!!!!!!)))!)))!!!)))!!!!())!!09!!))!!!%)!(!)))!!)%:!:9!))))!,9(:":)%$))))09-(-:%$))))099(<#90-%%$))$0#""  9#-99-%),(1%-#" #----+)$%%0-9--111(9::%%18/$0'''',,(1 ''''%(&&-00// (
  536. 99->(0(&2+$ %, $ % % $%+ $ $%+ $$ (%%,* 4444=4 4&1&&<<<1 $:"&,%((>88' $:01$+9( $%18//1$ $ $%8$ $ $((01$%$ 
  537. $%%$ .$$$$)!$)!!! $)))$$))$) $)))))$$)))
  538. $)))!!!!!))))!!
  539. )))!!!))$!    ))!!!!)    $))!!*"0)    ))!!!: ($)!    )!!!!-!    ))!!!: -$)
  540. $))!!!!!!#%%
  541. )!!!!!!## $$))!!!!)#-90
  542. %)!!!(-9
  543. %8))(-9$0-0--- %%%$)!%%    %1$)!(1 %$%10**- $%118>/ $$11/8'    80      1/8'    '2  $,,/88',&:///$:<"//%-""&*$ :7% ## $ -"+ $ 00 $ %00 % 09# #  (- 9 7 -9- 46&&    %0-&&&46<<"
  544. &1112%$7<((::(&(%1111$%$%  :0(-$+ % $$ / $%%$1
  545. $$%$%%$$ 11
  546. %1!-$$!!$$$$)!$))))) )))))$ $)))!!!))))!
  547. ))!!!!))!
  548. ))!!!!(%!
  549. $)!!!%%!
  550. ))!!!
  551.  $%!!
  552. ))!!!!(!
  553. ))!!!!:%)
  554. ))!!!#%$$
  555. $))!!!!!!! %    $)!!!!!)#-%))!!!)-#91%%0)))(99$--(-99%1)!!90%00% %1)(% %10(,* %1/81%)''    /12/8''/% 191%-- %&":%9-    $$$$&"0-
  556. $(::9---%    $? -0%00-0
  557. $%+ $$% $% $$% %$% $$$ 7%( 46&$&46<<<&&$ ,(::&"$ 
  558. %&$111 $%:11%$(-21$$1$ %1 $ 2 $01
  559. $ $%$ -) $$)!)    $$))!)!$))$))))))!!!)$))$)))!!!))))!!)))!!!!)%$)!$))!!,!!))!!!
  560. !!$))!!! -%!$))!!!!$))))!!!!!#$))!!!!!!: 9$0$))!!!!!!,#--#$)!!!!)-#$%0)))99$)!8-99)*-$0--0((,02($-90!!1/8/%-0$1/'''1%-912''81--
  561. $1/>9
  562. &--$ %12-&&:0$$$%%,-%$%&&$$% 7??$$ %$% $ $% ,$$+ &&$ 6"%%% 4"<0 $%(,74"<
  563. %    $77
  564. &1    7(1    % (1    $ 1$%%$01$%!*
  565.  $$$$$$ $$)$)!$ $))))))))!)
  566. )))!!!!!))$))$)    ))!!!!!)))))$    $))!!!)))!)$)!!!*(!))!!!!-!))!!!! -!)))!!!!#$!!$))!!!!!!!())$))!!!!!)#-$)$)))-),#%$!!)))-0)09!!!(-9$)!!!)>19-9999-$01/1-0    %12-#
  567.  11/8    $ 1/8''    0%1'
  568. &
  569. 12/&
  570. &$$$%12/-:$%((,,$$ $$%+ $$% $$% %$% %%$ 7$(, 46&,&46"<<1,&&&&-0$&&((%&
  571. 1/($ $,,0001$+-$%  $$"3$)!)$ $    ))))))
  572. $$    $)$)!!!)$$))))))!!!$)$)))!!!!))))))!$$)))!!!!))$))$$))!!!!-$)))!!!#$$))!!! -$$))!!*    $))!!!(    $))!!!!! -(
  573.  
  574. )!!!!!!!##(0 $$))!!!,##-
  575. $$$%-09(99-%
  576. ))$$!,/-9999 )!!!*'09-99 !!!!!)10-9:-00 $811 111191 111/#/ %118    ' (1 19
  577.  & 1/,
  578. 9#:: 1/--&( 11(
  579.  $%0,,,$$$+$$%$$$ %$ $ +$$ %$% ,$$% 4&&%%=4"&,746<<<11%
  580. :,,
  581. ,111
  582.  :&7/     (& (1    
  583. " %&%10% $(/2$$      -/21
  584. $+ (%
  585. 
  586. $+ %
  587.     $%    $$
  588. *$$)$$$$!!! $$))!!    $)$)))$)$$))!!!))!!!)$))!!!))!!$))!!!!*0!)$))!!!#!)!!!! #($))))!!*,))!!!:(
  589. :$)!!!!#-($))!!!!!##))!!!!!!,##09-$))!!!!+9#$))!!(9-1/)%-99$)9$-(0-0)!%1-    10((-/1--9-9    1/0--0$1/8''''1-9#-0$19'9#9$    %):# 9$$((�$$,(-9:,$%+7&,$$% $$% %$% %%$+ 7$%( 46&%,&46"<-$(
  590. 
  591. -($:&&$$$
  592. :-/$$ %+((0$ -%%  $%%%%$(5$$)!))!! $))))$$$$))!)$$))))))!!)$)))))))!!)!!!)))))))))!!!!!)%!$))!)))!!!!!)(!)!$)!!!)($!!)!))!!!!%!))!$)!!)-$))))$)!!!!,0))$)!!!)0))!!!!!%))!!!!!)9%1%)))!!!!!!))$)))!!!!1(!)$0/-(9-%$%$ 1111%)!!     %1$111)!     1/$$1/$**(%
  593. %,&&0%%1>%///1
  594. $&&&:$$%(%88''/    %:&&,$$+8'            &$$%%>'        %%%-90%$$$0&''/ %0---9--0$$$<%    $$$%%$(<<1    
  595. $$%((9,
  596. % $%-(, $$%+-%
  597. $$%(#$
  598. $$%++$
  599. $$%%$%
  600. $$$%$%% $$$%$ 90111$$%$$$$ 40-%(,,,&"""610&&,-
  601. 
  602. , ,&<:
  603.  
  604. $&%    $ 
  605. ,%$    $ $$%$            $ 
  606. $ (
  607. %(
  608. $
  609. $1 %1 $"2
  610. $)$    $)!)    
  611. $))))     $$$))))$$
  612. $$$)$)!!    $$)))))))!!)!)$))))))))!!!))))!$)))))))!!!!!!!)!!)!!!!!(0))$)!!)!!!!,))$)!!$))!!!+$))!)!!!-$)))!!))))!!!!)$$)!!!!!,0$%$)$))!!!!!!$!,)))!!!!!-    10!)$)))!!,-$    /$$$$$$'(-0
  613. /1%1/%%11$)!%%1%1%1>)!/%0$%1/3! $81$$$%0-1 /1$%+8888/-$0$$%%        '09-9$%%%%            2--9-0%12$/''..:9#0$%1/'    %9
  614. "",-#  9$$%%-%$1(&"<"<#-%--%%%%$$%++$$,&9
  615. $%+%% $$%$$$% $$$% $$$% %$$% $$$%+ $%$% 7%((,,&
  616. """"66$&,-
  617. <&%11$,& &1 $  $(1 $ % $ 1     $  $+ %(1$%%$$$+(1%01$$$0))$$)!! $)))) $$$$)))$
  618. $$))!)    $$)))))))))!))$)))))))!!!!!)$!)!)))!!!!!!)!$)!!$)!!!!),!!)!!$))!!!$!)!)!!),()))$)!!,0)$)!!!!0))!!!!!))!!!!!)9$)%))!!!!!!,!)$)))!!!!9%)))%/$%)))))90$--%$)!%11/1%1/0/0090%--1111!9 90$%%%0()(119 01$$%+$>//%99%1$$%%$$)'''#%$$%+)+''            9 -111%''    '
  619. 1//88<< $$%$1//&
  620. "
  621. 0$$%+++(0,    $%$%
  622. $%+ $ $% +
  623. $%+ $
  624. $$ +%
  625. $$% 
  626. $$% $
  627. $$%+=& $$$%&466<
  628. $ ,,,&&&%%%$%% %$$% 1 $ $+11 $% $%% %%-$))!)
  629. $$$$))))    $))))$$))))))))))!))))))))!!!)!)))!!))!!!!!!!))$!)!)$))!!!!))$!$)!!$)!!)(!$)!$)!!!))$)!$)!!!(%!$))$)!!!)-$$$))!!!!)0$!!$)))!!!!-$!!!!)$)$))!!!!!,-0!))$$)!!!##    1$$)!((-# #-%8/%%)!)!!0-9'111$$)%$9/1%1011%)!)(1%%//$$$%0($1////2 1/$$%%%88%1$$%'        %%$%'        '.<"%10%8'''>&"$%1/''/-&&%$$%%-%1$$    $$%++$$%$$%%$$% $$$% $$$% %$$% $$$%+ $%$% *%((,,&
  630. ""6666,&,,&"":$&7%%&&,/% $%,<&10%11 $ %$,:,+% $$      $ $    $+$
  631. !4$)$)!)$ $))$$$))$))) $$$!!)!$
  632. $$))!!))))    $$)))!)$$)))))))))$)))))))!!!!!)))!)))!!!!!!!$)!!))!!!!,0)!!$)!!!(()!$)!!!,)))!!)-()$)!!!!,$)$)!!!!)-$))))!!!!!0$$)%$)))!!!!!!-$!)!!$$))))!!-0$!!)))$($$$)(( #$,!9###011)!9/11%!!)#1%10))%-"9/111>1/811$%$1/(/88    ':0$$%88'    ;"    $$%188'    '"&    %$%8>&&,$12/1//%$$%080%1% $$% $%+ $%$
  633. $% 
  634. $$% $
  635. $$% +
  636. $%+ $    $% 
  637. $$% +
  638. $$$%  (
  639. %%%,&4666"&(
  640.     ,7:&&
  641.  
  642. &
  643.  
  644. $+,&
  645. 
  646. $&0%% $$$,,%/1 $%11 $  $+$
  647. $$$$$$$.    ))$)!! $$$
  648. $$$$)!    $$$))!!)!!)))))))))$)!$)))))!!!!!$$!)!))))))!!!!!-$$$)$))!)))!!!)%$$)!!$$)!!!!)!)!!!)-()!)!!,-))$)!!!-$)$)!!!!)$))!!!!!0%%$))!!!!!!)9$!!$)))!!!!!99%!!!$$)),)(%1'$1%$$%/    -%'$%%11$,%    9--$)9%$$%%>$!1% #$$%+$, <-121$$%+%18-#0%%%$$%''        -10%%$$9'    :%$$'/$(9&&&#&$$$%$1/#,$$%10:,$$%%,(    $$%++$
  649. $$% $ $$ +% $$%  $$$%+  $%$% * %(,,&
  650. ""6"66$,&,,<-$,4,
  651. & 
  652. "111$+%,:%% $$%$  $ $
  653. $%$%    &8))  $)!))$$
  654. !)!!))$)!!$    $$)!!    )))     ))))))))))!)     $))))!!!!)))))     ))!!!!!!!!!)     $))!!!)!!!!!!)     $)!!!)!!!)     $)!))!!)     $)!))!!)     $)!))!!)     $)!!)!!!)     ))!))!!!)     $)!))!!!!!)$     $)!))!!!)0
  655. $111)!!)))))81    
  656. )($$$%(,!$
  657. $))0<$!)11))$%%09-%)!!(111188111%$1%11'''-8>//2821/'    '%-9-/'''1/'    - /    '1,:''+ 
  658. /&$++%1&,0%1020$,&,-(1/'            /,%%9 ,$%%$&, %$+++#- 9$+%0 %-0$ $0#%090%$% +(-09%%$+ 0-0-$ $--    $+ +%%-
  659. $$%+ ?*$ ( =6
  660. -- %,4<<4$,&
  661.  
  662. 6"<"&
  663. ,&
  664. :: $
  665. $,&<&%$ %&&$$ $%%+$ $$ %$%$%$$'4)))))$  !!!!))) $$!!! $) $)))))))))!
  666. $))))!!!)))))
  667. $))!!!!!!!!!!)
  668. ))!!!!!!!!!)
  669. $)!!!)!!!!)
  670. $)!))!!)
  671. $)!))!!)
  672. $)!))!!)
  673. $)!))!!!)
  674. ))!))!!!!
  675. $)!))!!!!!)$ $)!))!!!! 0/0)!)))))>8 0%$$,-($1,)$
  676. %%-09$) $00)!)
  677. %0%%%)!!$%$$%!1%00$%11/110%%1/1(//--0%18$/(>%>>0-0$12''>((/'929#  -!%%1/'         '("%(,(/        +//'&(&(''$0//><<:&&(//1%>>$$%&"<% 1'            %,&&$%%%$%% $+++$
  678. $+
  679. $ $     $% +
  680.     $+ $
  681.     $ $
  682.     $+ +%
  683.     $$%+ ?*$
  684.  
  685. ( =6&
  686. %,4<<$ (&
  687.  
  688. 6"<"&% $,&
  689. ::, %(  $% %+ %$$$ %+  $ $ $%%$+$%%$$0 
  690. $
  691. ))
  692. !!)$))$))!!$)))$)))))))))!)))))!!!)))))$))!!!!!!!!!))))!!!)!!!!!!$)!!!)!!!!)$)!))!!)$)!))!!)$)!))!!)$)!))!!!$))!))!!!!%%0$)!))!!!!!)$%9-%%$))!))!!!!!0  18!)))))/%#< !0$$$)%$!!$-#0%%!)1%%%2)(120111,*$/0%1/$)!>/11,*9$%(-9+$))'82$%1+ %9',%1>         /''>
  693. &,1/''+(//88&:,($%((----(1//:&&%$(($11%1/8''        $11%%$'            -%$$$+++$$$%+ %$%+ $+ $$+ $$%%$$%,$%+&(,
  694. $$,&
  695. 4%$ =7&&:? $ $++$$%$$%%$$%%%$+$    $$$%$%%    /
  696.     $     $)$$$$$))$$!$$))))))))))!)))!!!))))))$))!!!))!!!!))!!!!!!)!!!!!!$)!)!!)$)!))!!)$)!))!!)$)!)!!!!)-$))!)!!!(9)!)!!!!!9$))!!!!!!))90$)))!)!!)),9$)!))))))()!)$0-9))-$))$111))111%11/11$$1/10///11'''1/8-8/%82$1/''((/2''%1/        -         1%/''+/'/$1''/$+++++++0/%//1%0$11 1'                $%%%$$+++$$+$ $$% +$+ $$ $$+ +%$$%+ ?*$( =6
  697. %,4"<&$%,&&
  698.  
  699. 6"<<<:/111::,<:1$
  700. $    ,,$%*$+$ $ $%$$%%$1
  701. $        $))$$    )!!)    $!)))!)$!!
  702. )))!)!)     $)))))!$$$$)$))))))))))!!!))))$))!!!!!!)!!))))!!!))!!!!))$)!!)!!!!)$)!))!!)$)!))!!)$)!))!!)$)!))!!!)%:$))!))!!!)--)!))!!!!)--0$))!))!!!!))-#)!))!)))!!)))))$$)!-))0
  703. ), -$)!0<#)($%1%11191111%88:,$%//        /12001/%//'''
  704. $%//            0$/8'9//        '
  705. %//'    '%8''. /        '1/''9       '81/8%111%0000$1111 1/8'8$%8'        2%$$%$%+%$ $% $$%+ $+ $$+ $$% %$$% ,$%4&$,,,+4"&%&&&&7 46"
  706. 1$%,,,&&:(+0$ $+ $+$$$$$%$. 
  707. $))
  708. ))$$)!$    $))!!!!)!!)))!)))!$$)))))))))))$)))))!!!)))))))!!!!!!!!!!)))!!!!!!!!!!)$)!!!!!!!)$)!!)!!)$)!))!!)$)!))!!)$)!))!!!))!))!!!)$)!))!!!!!)($))!!))!!!))---18!!!))))))89-%9$$)*($$1,,9))%1%)(911-)1%%1/)%$1*,$%0(+((!(8$%12'' /''&%1-        > /9'<
  709. %$1(        //-.<<:''/$--,0//&
  710. $11%8'        $$111(,$%$$$+$$++$$%$ $$ $$ +%$$%+ ?*$( =66,, 4"<%$$,&&&
  711. 6"<""&11(
  712. &(,::-&6-$(<&%%$&"$$$,$$,,$$+$ $$ %$$$+%))$))!!$▀Z$=Z⌠╜∩▓꺬ëºTα vÇ▀ZT;8┴ZöπIⁿ  7íUæ    s    £Γx{╖æP ╜+▌    KWD∙:Φ U),░+╡d    r%
  713. ▌ 0f1╣. φêº╪Çëº(∙Y»Ω¬ëºçèº> JÇ╒E%I≥╘`If  ╥ì     i ⌡B0┴τ%:    aL╣ -1J∞!d@estroy⌡æ6≥ò-φ. ╪ëº╡è└º(π⌠`YäIçèº9ïºQ rÇÆ`iδéú╦üπⁿê°÷!äy─,j
  714. ╒┼▒3⌡
  715. NCö3'⌡╔╡èº.îº1OO¥%.îºüÇîºeƺ5TLCOLORBⁿTNí∙í∙í∙4⌡4⌡4⌡c∙4⌡╢∙4⌡")S9ïºüîº:⌠4@4⌡4σ■└Ae'.îº$w∙òùüîº=ìº(tw    /(xÖf▒hdc;tHDCs    ▀ I╫,#ƒßNhwnd1'ÇWNDre(@  0
  716.  âÿ═¿îº╒ìº&}i ¢dC║)¿ë²æ]ë
  717. (ßcaìΘÉ/#KWKo║. By r≡espoB':ê60É= U7"'⌐Ç%æΘÄ/;=ìºĺp2"⌡"⌡<òê╒ìºÑĺDÇ VÇ"⌡}ë░ tqQnIdentR^s▄/%xü(~,á$. ĺ╙ĺ( ² ]qæÑĺDÇź& ╬#·öΓ⌠Γö
  718. K∙>Iò.K ½ÖAαpaint?├<╙ĺÇź* $Ç$₧îîRá~Default  A,'¼`_Dźαź8 @Ç╛Aéπ3£ΦµoVi~ê╨@ÜelectX!GÉÅZQÿ a`ÇźAɺ╨% └ï·í≥`s nev¡É√@>s. I/ =
  719. Ö'
  720. ù>¢    ¥αźJæº- (Ç;lsj¿%ï∩2i
  721. «rêadiL#»k,b┤.,     ô@imark,;&B'±K ì 7' ╡G@ï(typ╔lly blackå)à8h`σ^@|!
  722. o╒,    ╡(+Qpòápu$shÄ 
  723. Ök    ôKr^8le; ▒
  724. ouº─òx;»Aɺeƺé` ╥Ç_qg╟æπ\û$7ÖY╣>&BCÑY
  725. é>Z▒Y¥·_H╜YG=+
  726. ß╔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    ô7Åd¡┴╒▌ƒ{Çu
  727. ;göº8òºp2JⁿJⁿπôë²öº╦òºDΦ'Jⁿ'≈5G''p$≈╦%ú$πtQ#≈P7# . 8òº∙òº(%≈ \sò╦òºlû@º&╗+╧%≈ⁿ%≈%≈in%ç─0<∙òº¿ûºα* '≈'≈·bclûº
  728. ùº╨8'╞ië'≈'≈'╫]1)'a`¿ûºkùº%7)≈í≥)≈s)≈)æ₧
  729. ùºⁿùº-└ (Ç=-¬ΦlNote thak≤<jï    Æe@lf; yp?╖ügî* 
  730. !╡fZ┴░8Ω╡F-»kùºÖºél ▒÷;]ë▒÷▒÷_o▒÷â▒÷▒÷_╢¢▒÷I▒÷▒÷▒÷ùû▒÷▒÷+2÷╩ⁿùºÜº19OüOƒ%ܺ|ܺ╘┴º■]╟▓÷▐²▐²|═▓÷▓÷▓÷▓÷▐²W▐═o&Öº|ܺO` nÇPào▓⌡çÇ▐my╟÷Ä≤▌!⌠M5
  731.  'ܺúܺ$·²âå|ܺ&¢@º(·j%·²ßxhdcEd?╬ ∙²¿≈}#`⌡φ ⌐δΦ-»
  732. úܺ╒Ç¢º&Φ<Φ²ΓΘ²P╫tδ∞-δ∞²╬÷∞]û¢┐&╜Θ U╧ ▌6f5╫▌3;&¢º£º2╫÷╫÷bÖû╒¢º⌐Ç£ºD ■-╫÷ ²@╫&x²²╪ª}┘éQ ²7╙@. £º╫£º(■^uù⌐£ºL¥º&ÜÖ/₧'■pl▌÷■■▌FvA<╫£ºê¥º*▀÷■deL¥º<└º8 @Ç╩╝g■Çꥺ<└ºÖºé ô╨ Üelects /GÅé[    ╫Ω. !ÿdfꥺá└º% Ç╠Ç åÿÇP The WM_CTLCOLOREDIT 
  733. is never  =√>s, it 
  734. Ö ='@/ >h. <└º╬└º(Ç  Çc0 ÿÿÇf0æ¢á└º╘┴ºv ║Ç7ÆPπ3Φµ3ë¢πIë$7     P\û p
  735. é>Z!#P¥·_H/PG=ä+
  736. ;P)e }G@ 01,τÇBTNαDLG'αLISTBOX?αMSG≡ORSCROLLBAR≡TATIC╕∙═╬└º═┬º1NO¥àOá%═┬º$├º A╚ºÄ≡ 
  737. EnableButton("up");Chang@Binding , "JI(`api32wh.hlp', `msg32')7DisKÉovr≤L_░gr`≡`@a≡iawmc_:g0W#╘┴º$├º:Ç DÇH,bΓ'╕Ç`å"ÇΘ    c÷±     π'═┬ºK├º$` ▌τµBòù$├ºα├º(É Ç/|"0½0 éék≡²hdcLB = (HDC) ▀  /* Θof     ╜ƒßÇ*/hwnd%@WND)     £;y&á  0
  738.  2¼
  739. K├ºî─ºÉ&ú@cçñ≤éº =toP
  740. ßÅaæ DZIdrawíBy respo" /;
  741. 30= U/Ç%æΘÅ╤1 by ¡/▌ƒ{ßφ;α├º╟─º2  4Ç2ORÿ=ü▀~Q(é=⌠â\4n╪èæâî─ºX┼ºD VÇ°#Rî½;8
  742. -â0é░ ä1    ▄ Ident≡ifie%ó δ╞êA)     £.*└"0. ╟─ºå┼ºP(╖╖ΣΩIsôX┼º∙┼@º&I' ╖dJ5I~n applicatio0n  [h:
  743. K ⌡M1a . I½/╗paint╞O├P<å┼º5╞º* $Ç$╝îîRZuDefau`lt Acs°ba∙┼ºù╞º8Ç @Ç┬Sé}hòéñu\÷\å\1Z&ed5╞ºⁿ╞º%hZ╚Z÷╡≥ ]÷. I]& =
  744.  Ö'
  745. ù[6. ù╞º*╟º([÷[½ⁿ╞ºA╚ºéα ╥ÇW▐#ε[÷├gF[û╣>&C#P[÷ ;0[å»ûg÷g÷c7g÷w7<αd÷J6d÷d╞∞%(°╠*╟º9╔º1Lü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
  746. iû%@iµ&<  0
  747.  i½╢╔º⌡╩º&⌠
  748. !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═º╨%├ ╞├ⁿ╖⌠g÷.g÷,. ═ºÆ═º(├ⁿ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ò δΘ%Y δWbe` ║. Ö÷ìv¢Ω<Φ ΘMï -S ΩÉ;┌╨º╚╤º2²²0 ùÉì╤º_Ç╥ºDù^!ù÷ù÷@-S²e -║¼pò1- ²╜╤ . ╚╤ºì╥º`(²]w¥_╥º╙º&Φî;¥÷¥÷²²¡vq<ì╥º@Ç╙º*
  749. ²í÷
  750. fk╙ºª╙@º8
  751. ╓╖í÷»%
  752. ² í÷fíik@╙º╘º≡%Ñe@^╩≥3╩Æ¡; ╩█
  753. ÖÉ =' -. ª╙º=╘º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δ
  754. cì÷.ëû%pφ ⌐δ|&╡╬╓º ╪@º&V
  755. ) |÷|ªBy÷yZw÷w÷)w÷▌≈(`Θ|F%¡╡~&;W╫ºG╪º2p 4Ç2≥²¡£Æ ╪ºπ╪ºDΦ%    $²~÷âcéa    éµ╪DC ü&c/ïq. â÷╓P. G╪ºÇ┘º(â÷!]sÿπ╪ºä┘ºá& 1╙dk5â÷ [x1 ⌡│╠wàF+I½ü÷wQ<┘º└┘º*, ÷åD!▌dgä┘º$┌º8└ @Ç╬17!²I`!²ªB}&fh└┘ºè┌º%║#╨ò╖╦≥╦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╪    ₧┤╬▌º▐º2` 2Ç¥I∙%Γ╚v║æS A▒╠║ ;aæ,⌐_ δ
  756. ╫δ
  757. «cÇombo s @U(cut1/) 0, ifh ön¬,êæ    O
  758. W%┐,Clipboard!CF_TDEXª ^╩Q▌º5▐º*(ÇÇ⌠pÄ
  759. 6-▐ºk▐º, (ÅÄhñτY5*)5▐ºò▐º%
  760. ▌ R▄╗σ. k▐º├▐ºp(
  761. ⌠5 +|rò▐º?▀º1(qΣ4îπ1╪_Θpqvd⌡;,Ç
  762. ⌠ed by░    ta=╙undodne 9T1t EM_UNDO8
  763. ·(├▐º ¿F  ZÇQd₧π"]UΓDÑíîσT╤╦!1)pplac|t┐o2n┴▒, KÇ4LE3$êC⌐.mòN╔ÇgΦ    dlΓ0    &ôHiTh·≈no effeècΘ@p%aCBS_DROP0DOWNª+ Σ∙√+?▀º ¿╝█ºn)?▀ºz¿E ZÇRÇåÿπ"]ÇëÇπäë_Bg P]í_@ WM_CLE@AR, 0OPY `PASTE Φ┼ ¿b¿1½áôOßPÑ%b¿¿¿┼¿
  764. EnableButton("up");Chang@Binding , "JI(`api32wh.hlp', `msg32')7DisKÉovr≤L_░gr`≡`@a≡iawmc_:g0Fz¿¿¿:Ç DÇ8U1ÿÿÇΓ'Çå" ÇaÇé     'b¿╧¿Ç$ ê1¢ÿæ/╜¿¿î¿1 0Ç)├0m éé0c/* Respons e to ┐DDE_INITIATE */╫=       1Θof postn application.    ¥= MAKELPARAM(aApp, a└Topic);.ÉÇæ]╬seâê≡ê EXECUç≡ç≡ç≡ç(ä0) lPackedVal;90p   ½Ds æ3 Θb╤y
  765. ╖ⁿ
  766. !{≡{≡{≡{≡{≡{     ìyQ"╧¿▌¿z 0┬ÇE*bw⌠║äRmâSàêÅSaz╟¢S_ƒëBªºS─Σ╪ù│SΣä≤ê#`x&8╦C!iThe _notifies a ╧3(
  767. )▀í÷/r@eceipt6 ·_aΦ36Ʋc┬ü4áADVISI.░UNPX`POK7
  768. æin  }case s,Ä}ÇREQUEST';î¿¿2Ç 4Ç2╨Rÿçâò|áQéç╘âB3 n╪ìp²▌¿ê¿╡Ç 8ü√; î;8æ▒éÇ
  769. ·â0└░╝æ6≡âDpQ0π╠φn┐zEτáEÉ0Cr╚#╩üò±:    
  770. ä    ▄ Iden±A/ Gr╤S/@╣░    £. Co`ntain╢╧+    !ply╣Ñ.Γ#ß 0≡0P][±a ⌡iu∙≡ed. ╕≡9Γ╖≡╖≡╖`δsΘ ╜ Γ╗
  771.  ▌+╡·C    y)É ╡$ctüby 9ÉUn$<ram┴╢┼LowG╝wStatusô High0HhCommands that σ ╢T╙¬";¿├¿2!¬é│ä╒~¬│¬≥Γê¿Ñ¿R rÇ>6$¬;8Ü2πö╕l│°SâπΦ;è?╝┬x┘@B9Ä║ACK▒ ╜█a ser»ⁿ║C8½$ µ╔%a Çfull e*; ┘ )S└tructu₧√üééa ▀
  772. 
  773. {█/c?1  ╖9U├¿▐    ¿f└ ÜǽßPîs Ç≤I≤I≤¼#=3═B°%å .≤.cs
  774. «≡ver ≥≥≥≥≥≥≥┬aItem»;Ñ¿
  775. ¿2óà½ä▀U"½U≥≡▐    ¿     ¿áRU;UR ;8U≥U≥U≥U≥U≥U≥'U≥U▓° ºt ▀¿T
  776. O╕&3    ì[which%[τä <`. 
  777. ¿7 ¿(└  Çªi∙    d)ÿ¼    4      ¿k ¿(5-på-pP!9≤ç07 ¿≥¿p└ «Ça├)▐≈ πº)╠V[πo°░IP Uë0╝ó
  778. ÿ|F└ Exceú-< τ╫    ╨ñτO/ƒ╛Ö╥ e¼·H╡
  779. o╛ f╚uncf. s╓>╩f,-Ü ;[ÇK. I;IneithLÅá-na"mÜ╧no\P ibe -Ç(even iÆü╢┌
  780.  ï-Z
  781. ^&√    nowledg¼&òmessa ge %╠ac1mpan╚&EB ╬║╨φZ=≡┘reu/ %/PHPiW
  782. A╡
  783. 
  784. ╨«it .Uc
  785. Ça 
  786. e
  787. ûÆ≡'+∙=Ö▒+¢1╠ i|`gå
  788. {Ç≡B╦Åk ¿
  789. ¿o ¼Ç┘(eJtH£kV!∩]:KèT/Zπ╓x▌ìóZ¬èè─ A    
  790.  #╝!
  791. Kÿ
  792. «7a·ö
  793. ╧sg╟ªqùiR 
  794. «Q╞Rxôº╣Iâ
  795. ╟■ï≈initiûa╧8#Ñ*⌡┌┤\▓jTERMINg3\
  796. wa:╫ c└onfirmP,╚Dπ╩ói
  797. oWre  (rvely▒¼negê )o└ Θ
  798. ! =XX    ╖ÑoL╨UFò    UharÖ
  799. 
  800. â587int
  801. einl
  802.  . áMemoreââ1    fre╩ #f░Rele ,E▐rU╙3 úkJ;ï;P z>≥¿ä¿yα └Ç}₧twñ%┐╦Zpî»JÄ£v£º⌠ ╨¥L v%5ê⌠▓ |ì;£"!y,░ú¬ëgé₧2P∙Ta ε≤εchPDataW ë/┴Cσ =%F▒E1+╡* Θ[LT1;J`üÅ≡aµ Rh- #╫<+rƒ?ì]ÿσ ≡Op▐∙∩# #⌐σcI=∙ ± }≡}└ö═!B}}¡èù≡ù cêöÿP,V╛,├æ⌠ÿû
  803. ¿¿? LÇ-æ⌠╛≈æ>╪kmæW3≥32u$
  804. «Kp⌠ï¡ΣF;N─    ⌐²ä¿┼¿╛  Jü√ù@åÿ ÄÉ,Ñ╣ù8à┼¥ñ»╝ƒ╘ƒ▀∞ƒ╝ ╘?ïà∞ƒ ╪α{ \┼Ä█ûV╒¬ ∞╖  ╥ ε╧rΦ(Ç╙?9Ç┐oMÇ₧àcÇUN)c⌠╚¿╣¿1K )P╞ÇPª%╣¿ Ç¿B¿┬á 
  805. EnableButton("up");CÉhang@Bi▐( , "JI(`api32wh.hlp', `m@sg32')7D─isKÉovrL_░|gr`≡`@a≡awmc_:g0R┼¿ ¿:  DÇ>┼gΓ'╟ Çå"╪Ç╟æΓ²░     φ '╣¿2¿$╠ 3╙
  806. ¥ ¥ÿ ¿╧¿( $Ç1¡#0╞
  807. ééf╨╫=       0/*8 Θô╖_Φÿ */    ¥= (LÇPARAM) )x;9 ╛Oÿ±4æ    ì╧5£┼2¿k¿&` ÇïJöô Ç╧3(1
  808. p) s√OjTUaG&╗ GôÖ\ J╦¬ Gesu¼    yüçô[a jδ/    ìV┬;╧¿ª¿ 2ΓÅ=ü    î==î²&k¿╝¿b≡ ÆÇMΓ_;8ⁿ■7
  809. _ⁿ■ⁿ╬    σ■σNg°Z▄■    £▄■¥    ▄■▄■Ω╣▄₧τV▌■▌n;ª¿≈¿2H▌Äaé▌>a▌■δ╝¿Γ@¿R▌▌^;8B1πàr3╛»╤Z▌■r8ÿg?üπü╞    {█Γ░R│
  810. ╜that  ⁿæh±ûv
  811. ⌐╩    Ä>╪%ac: ∩■∩■¥∩^nà,ετ ╠I. ≈¿¿0(╪■╪^└3Γ¿╨¿&⌠@g÷/┘.▓)o7├ √
  812. ?)
  813.  ùy_■ u─]ÿî, -<ê 
  814. Iy┼![╒)'@ ù4ì?%Ç╙
  815. Not`+JG= ⌡
  816. I^ Ö[hot links┴Powarm07\α¿,¿▒ 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 $║φ⌡/ ╚â(sr)8¼#αpondsßz{± 4
  817. [ ═_(cli∩=░¬l╦üª╨¿╟@¿íÇ ü'!} o■ⁿ,Å╣Z≥'≥O]è ┴─⌡ ô²═)¥A≡╚#!1L35µ⌡⌠s@imilarÄ>+-N~╝┤φ≤fÇ/èz╞▌)╖VWìüQùúA  1╧É. Cª_y₧=ûR┐R╧
  818. «d⌡/læa 
  819. e
  820. û.╪ ë9¿F╨Pφobject; 
  821. ╗,¿╟@¿┼¿/application  i
  822. oU/
  823. üThe  G
  824. K
  825. «reuse / lPackedVal Ç
  826. ╧by 9DDEram!'funcV 
  827. «Γ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¿
  828. EnableButton("up");Chang@Binding , "JI(`api32wh.hlp', `msg32D')7DisKÉo╠vrL_░gr`≡`@ºa≡awmc_:g0FB¿HC¿: DÇB::bΓ'4Çå"ÇL    N'C¿oC¿$ FsÇÿ|2ÆûHC¿D¿( Ç-y"0¿ ééZ╫= └      /* Θof PpostC ¡ô*/    ¥= (LÇPARAM) ûs;90·ed ║DATA æ    ì╧5ª╩oC¿ºD¿&α Çò C:7#A ╧3:(╒)*öÉs Da to╗sKöpas!"3    ì"/s    o notify ┘/availabil0ity δ1 Å;D¿ΓD¿2 4Ç2▀Rÿ=ü▀Ç~Qé=ΦéâΘ3n╪∞+ºD¿ⁿE¿b ÆÇW▓; î;8
  829. !·â0éá0┐ôÉT    
  830.     ▄  Iden╥iea╖ G¡QI.ò1    £. ^╗
  831. ▌+╡ª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 ▀
  832. 
  833. p{█aC╠2à ╒/3æq    O¼Θ ièb│Uì-iX Gm2ì1sthat╔2-iU │≈S╟a warm@     ╕. A
  834. @╣ÖT1║ 9~ü2EADVISE Çmessage└fDeferUpd bit $ Y╞%all eδ; ┘ )Struc`turesNßFÇContainUn ╧+    !ß    ì[whi─ch╢3
  835. «=#░W    ° < . 7F¿H¿( ≈ ÿ 4