<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Комментарии на: В продолжение &#8220;почти прокси&#8221;</title>
	<atom:link href="https://autolisp.ru/2014/02/12/seems-like-proxy-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://autolisp.ru/2014/02/12/seems-like-proxy-2/</link>
	<description>LISP для AutoCAD</description>
	<lastBuildDate>Tue, 24 Feb 2026 16:11:05 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2014/02/12/seems-like-proxy-2/comment-page-1/#comment-60987</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Fri, 01 Apr 2016 17:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=1646#comment-60987</guid>
		<description><![CDATA[Благодаря &lt;a href=&quot;http://forum.dwg.ru/showpost.php?p=1519369&amp;postcount=8&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;сообщению VVA&lt;/a&gt; выяснилось, что (цитирую):
&quot;Начиная с 2013 версии вместо acwipeout.arx нужно грузить acismui.arx &quot;]]></description>
		<content:encoded><![CDATA[<p>Благодаря <a href="http://forum.dwg.ru/showpost.php?p=1519369&#038;postcount=8" target="_blank" rel="nofollow">сообщению VVA</a> выяснилось, что (цитирую):<br />
"Начиная с 2013 версии вместо acwipeout.arx нужно грузить acismui.arx "</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2014/02/12/seems-like-proxy-2/comment-page-1/#comment-52299</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Tue, 24 Jun 2014 12:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=1646#comment-52299</guid>
		<description><![CDATA[В продолжение...
Задумал я тут внимательнее посмотреть, где и как хранятся модули, отвечающие за маскировку. Нарисовал код
[cc lang=&quot;cadlisp&quot;](vl-load-com)

(defun get-wipeout-loader (/ res key)

  (foreach reghive
	   (setq res &#039;((&quot;HKEY_LOCAL_MACHINE&quot;) (&quot;HKEY_CURRENT_USER&quot;)))
    (foreach item
	     (cond
	       ((vl-remove-if-not
		  (function
		    (lambda (x) (wcmatch (strcase x) &quot;*WIPEOUT*&quot;))
		  )
		  (vl-registry-descendents
		    (strcat (car reghive)
			    &quot;\\&quot;
			    (vlax-product-key)
			    &quot;\\Applications&quot;
		    )
		    nil
		  )
		) ;_ end of vl-remove-if-not
	       )
	       (t
		(vl-remove-if-not
		  (function
		    (lambda (x) (wcmatch (strcase x) &quot;*WIPEOUT*&quot;))
		  )
		  (vl-registry-descendents
		    (strcat
		      (car reghive)
		      &quot;\\&quot;
		      (substr (vlax-product-key)
			      1
			      (vl-string-search &quot;:&quot; (vlax-product-key))
		      )
		      &quot;\\Applications&quot;
		    ) ;_ end of strcat
		    nil
		  ) ;_ end of vl-registry-descendents
		) ;_ end of vl-remove-if-not
	       )
	     ) ;_ end of vl-remove-if-not
      (if (or
	    (setq key (vl-registry-read
			(strcat	(car reghive)
				&quot;\\&quot;
				(vlax-product-key)
				&quot;\\Applications\\&quot;
				item
			)
			&quot;LOADER&quot;
		      ) ;_ end of vl-registry-read
	    ) ;_ end of setq
	    (setq
	      key (vl-registry-read
		    (strcat
		      (car reghive)
		      &quot;\\&quot;
		      (substr (vlax-product-key)
			      1
			      (vl-string-search &quot;:&quot; (vlax-product-key))
		      )
		      &quot;\\Applications\\&quot;
		      item
		    ) ;_ end of strcat
		    &quot;LOADER&quot;
		  ) ;_ end of vl-registry-read
	    ) ;_ end of setq
	  ) ;_ end of or
	(setq res
	       (subst
		 (cons
		   (car reghive)
		   (cons (cons item key) (cdr (assoc (car reghive) res)))
		 )
		 (assoc (car reghive) res)
		 res
	       ) ;_ end of subst
	) ;_ end of setq
      ) ;_ end of if
    ) ;_ end of foreach
  ) ;_ end of foreach
  res
) ;_ end of defun[/cc]
И в результате получил:
&lt;table width=&quot;100%&quot; border=&quot;1&quot; cellpadding=&quot;2&quot; cellspacing=&quot;0&quot;&gt;
&lt;tr&gt;&lt;td&gt;Версия AutoCAD&lt;/td&gt;&lt;td&gt;Результат выполнения (get-wipeout-loader)&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;2009&lt;/td&gt;&lt;td&gt;[cc lang=&quot;cadlisp&quot;]&#039;((&quot;HKEY_LOCAL_MACHINE&quot;
   (&quot;AcWipeoutUI&quot; . &quot;C:\\Program Files\\AutoCAD Architecture 2009\\AcWipeout.arx&quot;)
   (&quot;WipeOut&quot; . &quot;AcWipeoutObj17.dbx&quot;)
   )
  (&quot;HKEY_CURRENT_USER&quot;)
  )[/cc]&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;2013&lt;/td&gt;&lt;td&gt;[cc lang=&quot;cadlisp&quot;]&#039;((&quot;HKEY_LOCAL_MACHINE&quot; (&quot;WipeOut&quot; . &quot;acismobj19.dbx&quot;))
  (&quot;HKEY_CURRENT_USER&quot;)
  )[/cc]&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;2014&lt;/td&gt;&lt;td&gt;[cc lang=&quot;cadlisp&quot;]&#039;((&quot;HKEY_LOCAL_MACHINE&quot; (&quot;WipeOut&quot; . &quot;acismobj19.dbx&quot;))
  (&quot;HKEY_CURRENT_USER&quot;)
  )[/cc]&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td&gt;2015&lt;/td&gt;&lt;td&gt;[cc lang=&quot;cadlisp&quot;]&#039;((&quot;HKEY_LOCAL_MACHINE&quot; (&quot;WipeOut&quot; . &quot;acismobj20.dbx&quot;))
  (&quot;HKEY_CURRENT_USER&quot;)
 )[/cc]&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;

Получается, что можно аналогичным образом получить каждый dbx/arx и его загружать, что ли?]]></description>
		<content:encoded><![CDATA[<p>В продолжение...<br />
Задумал я тут внимательнее посмотреть, где и как хранятся модули, отвечающие за маскировку. Нарисовал код</p>
<div class="codecolorer-container cadlisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;height:300px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br />9<br />10<br />11<br />12<br />13<br />14<br />15<br />16<br />17<br />18<br />19<br />20<br />21<br />22<br />23<br />24<br />25<br />26<br />27<br />28<br />29<br />30<br />31<br />32<br />33<br />34<br />35<br />36<br />37<br />38<br />39<br />40<br />41<br />42<br />43<br />44<br />45<br />46<br />47<br />48<br />49<br />50<br />51<br />52<br />53<br />54<br />55<br />56<br />57<br />58<br />59<br />60<br />61<br />62<br />63<br />64<br />65<br />66<br />67<br />68<br />69<br />70<br />71<br />72<br />73<br />74<br />75<br />76<br />77<br />78<br />79<br />80<br />81<br />82<br />83<br />84<br /></div></td><td><div class="cadlisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;"><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vl-load-com</span><span style="color: #66cc66;">&#41;</span><br />
<br />
<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">defun</span> get<span style="color: #66cc66;">-</span>wipeout<span style="color: #66cc66;">-</span>loader <span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">/</span> res key<span style="color: #66cc66;">&#41;</span><br />
<br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">foreach</span> reghive<br />
&nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">setq</span> res '<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_LOCAL_MACHINE&quot;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_CURRENT_USER&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">foreach</span> item<br />
&nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">cond</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vl-remove-if-not</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">function</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">lambda</span> <span style="color: #66cc66;">&#40;</span>x<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">wcmatch</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">strcase</span> x<span style="color: #66cc66;">&#41;</span> <span style="color: #ff0000;">&quot;*WIPEOUT*&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">vl-registry-descendents</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">strcat</span> <span style="color: #66cc66;">&#40;</span><span style="color: #b1b100;">car</span> reghive<span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #ff0000;">&quot;<span style="color: #000099; font-weight: bold;">\&quot;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (vlax-product-key)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\\Applications<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; )<br />
&nbsp; &nbsp; &nbsp; &nbsp; nil<br />
&nbsp; &nbsp; &nbsp; )<br />
&nbsp; &nbsp; ) ;_ end of vl-remove-if-not<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(t<br />
&nbsp; &nbsp; (vl-remove-if-not<br />
&nbsp; &nbsp; &nbsp; (function<br />
&nbsp; &nbsp; &nbsp; &nbsp; (lambda (x) (wcmatch (strcase x) &quot;</span><span style="color: #66cc66;">*</span>WIPEOUT<span style="color: #66cc66;">*</span><span style="color: #ff0000;">&quot;))<br />
&nbsp; &nbsp; &nbsp; )<br />
&nbsp; &nbsp; &nbsp; (vl-registry-descendents<br />
&nbsp; &nbsp; &nbsp; &nbsp; (strcat<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (car reghive)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (substr (vlax-product-key)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (vl-string-search &quot;</span>:<span style="color: #ff0000;">&quot; (vlax-product-key))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\\Applications<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ) ;_ end of strcat<br />
&nbsp; &nbsp; &nbsp; &nbsp; nil<br />
&nbsp; &nbsp; &nbsp; ) ;_ end of vl-registry-descendents<br />
&nbsp; &nbsp; ) ;_ end of vl-remove-if-not<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;)<br />
&nbsp; &nbsp; &nbsp; &nbsp;) ;_ end of vl-remove-if-not<br />
&nbsp; &nbsp; &nbsp; (if (or<br />
&nbsp; &nbsp; &nbsp; (setq key (vl-registry-read<br />
&nbsp; &nbsp; &nbsp; (strcat (car reghive)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; (vlax-product-key)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\\Applications\<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; item<br />
&nbsp; &nbsp; &nbsp; )<br />
&nbsp; &nbsp; &nbsp; &quot;</span>LOADER<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ) ;_ end of vl-registry-read<br />
&nbsp; &nbsp; &nbsp; ) ;_ end of setq<br />
&nbsp; &nbsp; &nbsp; (setq<br />
&nbsp; &nbsp; &nbsp; &nbsp; key (vl-registry-read<br />
&nbsp; &nbsp; &nbsp; &nbsp; (strcat<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (car reghive)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (substr (vlax-product-key)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (vl-string-search &quot;</span>:<span style="color: #ff0000;">&quot; (vlax-product-key))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; )<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>\\Applications\<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; item<br />
&nbsp; &nbsp; &nbsp; &nbsp; ) ;_ end of strcat<br />
&nbsp; &nbsp; &nbsp; &nbsp; &quot;</span>LOADER<span style="color: #ff0000;">&quot;<br />
&nbsp; &nbsp; &nbsp; ) ;_ end of vl-registry-read<br />
&nbsp; &nbsp; &nbsp; ) ;_ end of setq<br />
&nbsp; &nbsp; ) ;_ end of or<br />
&nbsp; (setq res<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(subst<br />
&nbsp; &nbsp; &nbsp;(cons<br />
&nbsp; &nbsp; &nbsp; &nbsp;(car reghive)<br />
&nbsp; &nbsp; &nbsp; &nbsp;(cons (cons item key) (cdr (assoc (car reghive) res)))<br />
&nbsp; &nbsp; &nbsp;)<br />
&nbsp; &nbsp; &nbsp;(assoc (car reghive) res)<br />
&nbsp; &nbsp; &nbsp;res<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;) ;_ end of subst<br />
&nbsp; ) ;_ end of setq<br />
&nbsp; &nbsp; &nbsp; ) ;_ end of if<br />
&nbsp; &nbsp; ) ;_ end of foreach<br />
&nbsp; ) ;_ end of foreach<br />
&nbsp; res<br />
) ;_ end of defun</span></div></td></tr></tbody></table></div>
<p>И в результате получил:</p>
<table width="100%" border="1" cellpadding="2" cellspacing="0">
<tr>
<td>Версия AutoCAD</td>
<td>Результат выполнения (get-wipeout-loader)</td>
</tr>
<tr>
<td>2009</td>
<td>
<div class="codecolorer-container cadlisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br />4<br />5<br />6<br /></div></td><td><div class="cadlisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">'<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_LOCAL_MACHINE&quot;</span><br />
&nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;AcWipeoutUI&quot;</span> . <span style="color: #ff0000;">&quot;C:<span style="color: #000099; font-weight: bold;">\\</span>Program Files<span style="color: #000099; font-weight: bold;">\\</span>AutoCAD Architecture 2009<span style="color: #000099; font-weight: bold;">\\</span>AcWipeout.arx&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp;<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;WipeOut&quot;</span> . <span style="color: #ff0000;">&quot;AcWipeoutObj17.dbx&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; &nbsp;<span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_CURRENT_USER&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#41;</span></div></td></tr></tbody></table></div>
</td>
</tr>
<tr>
<td>2013</td>
<td>
<div class="codecolorer-container cadlisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br /></div></td><td><div class="cadlisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">'<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_LOCAL_MACHINE&quot;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;WipeOut&quot;</span> . <span style="color: #ff0000;">&quot;acismobj19.dbx&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_CURRENT_USER&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#41;</span></div></td></tr></tbody></table></div>
</td>
</tr>
<tr>
<td>2014</td>
<td>
<div class="codecolorer-container cadlisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br /></div></td><td><div class="cadlisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">'<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_LOCAL_MACHINE&quot;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;WipeOut&quot;</span> . <span style="color: #ff0000;">&quot;acismobj19.dbx&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_CURRENT_USER&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#41;</span></div></td></tr></tbody></table></div>
</td>
</tr>
<tr>
<td>2015</td>
<td>
<div class="codecolorer-container cadlisp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;"><div>1<br />2<br />3<br /></div></td><td><div class="cadlisp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap;">'<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_LOCAL_MACHINE&quot;</span> <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;WipeOut&quot;</span> . <span style="color: #ff0000;">&quot;acismobj20.dbx&quot;</span><span style="color: #66cc66;">&#41;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp; <span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;HKEY_CURRENT_USER&quot;</span><span style="color: #66cc66;">&#41;</span><br />
&nbsp;<span style="color: #66cc66;">&#41;</span></div></td></tr></tbody></table></div>
</td>
</tr>
</table>
<p>Получается, что можно аналогичным образом получить каждый dbx/arx и его загружать, что ли?</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2014/02/12/seems-like-proxy-2/comment-page-1/#comment-51258</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Thu, 13 Feb 2014 15:50:30 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=1646#comment-51258</guid>
		<description><![CDATA[Пока плюнул разбираться, rss снес]]></description>
		<content:encoded><![CDATA[<p>Пока плюнул разбираться, rss снес</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Кулик Алексей aka kpblc</title>
		<link>https://autolisp.ru/2014/02/12/seems-like-proxy-2/comment-page-1/#comment-51257</link>
		<dc:creator><![CDATA[Кулик Алексей aka kpblc]]></dc:creator>
		<pubDate>Thu, 13 Feb 2014 05:08:16 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=1646#comment-51257</guid>
		<description><![CDATA[&lt;p&gt;Я видел, но сейчас нет времени разбираться.&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<p>Я видел, но сейчас нет времени разбираться.</p>
]]></content:encoded>
	</item>
	<item>
		<title>От: Георгий</title>
		<link>https://autolisp.ru/2014/02/12/seems-like-proxy-2/comment-page-1/#comment-51256</link>
		<dc:creator><![CDATA[Георгий]]></dc:creator>
		<pubDate>Thu, 13 Feb 2014 04:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://autolisp.ru/?p=1646#comment-51256</guid>
		<description><![CDATA[Алексей, в блоке, что справа &quot;Форум dwg.ru&quot; все ссылки отображаются со знаками вопроса.]]></description>
		<content:encoded><![CDATA[<p>Алексей, в блоке, что справа "Форум dwg.ru" все ссылки отображаются со знаками вопроса.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
