<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
 <channel>
  <atom:link href="https://smaugmuds.afkmods.com/index.php?a=rssfeed&amp;t=4873" rel="self" type="application/rss+xml" />
  <title>SmaugMuds - Topic: what would cause a code to not be found in symbol table?</title>
  <link>https://smaugmuds.afkmods.com/index.php?a=rssfeed&amp;t=4873</link>
  <description>The largest Smaug community resource site. - </description>
  <language>en</language>
  <generator>SmaugMuds</generator>
  <ttl>60</ttl>
  <item>
   <title>what would cause a code to not be found in symbol table?</title>
   <link>https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23820#p23820</link>
   <description> [quote=joeyfogas]ok, i found out... in SmaugFUSS 1.9.2 and whichever other versions require &amp;quot;const char&amp;quot; instead of &amp;quot;char&amp;quot;, if you do NOT have &amp;quot;const char&amp;quot;, even if the code compiles, it won&#039;t find the code when trying to cedit it in. Hopes this helps someone in the future who may encounter the same issue[/quote] Can you be more specific? Where did you have char that required const char instead? I don&#039;t use dlsym, but those that do might find this helpful and will probably ask the sam</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23820#p23820</guid>
   <pubDate>Wed, 28 Mar 2018 03:26:49 CDT</pubDate>
   <category>SmaugFUSS</category>
   <author>nobody@example.com (GatewaySysop)</author>
  </item>
  <item>
   <title>what would cause a code to not be found in symbol table?</title>
   <link>https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23819#p23819</link>
   <description>ok, i found out... in SmaugFUSS 1.9.2 and whichever other versions require &amp;quot;const char&amp;quot; instead of &amp;quot;char&amp;quot;, if you do NOT have &amp;quot;const char&amp;quot;, even if the code compiles, it won&#039;t find the code when trying to cedit it in. Hopes this helps someone in the future who may encounter the same issue</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23819#p23819</guid>
   <pubDate>Sun, 25 Mar 2018 23:56:03 CDT</pubDate>
   <category>SmaugFUSS</category>
   <author>nobody@example.com (joeyfogas)</author>
  </item>
  <item>
   <title>what would cause a code to not be found in symbol table?</title>
   <link>https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23810#p23810</link>
   <description>newer.. never have to go into tables.c to add a new function</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23810#p23810</guid>
   <pubDate>Fri, 23 Mar 2018 23:59:43 CDT</pubDate>
   <category>SmaugFUSS</category>
   <author>nobody@example.com (joeyfogas)</author>
  </item>
  <item>
   <title>what would cause a code to not be found in symbol table?</title>
   <link>https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23809#p23809</link>
   <description>[quote=joeyfogas]I may solve this by the time i sleep and refresh my brain... it has been a long day... but I have created a code,  do_banktransfer.    it compiles fine with no errors..  I have added the declare_do_fun in mud.h as I have with every other code I have written... everything else has gone in fine, but when trying to cedit banktransfer create do_banktransfer, I get the error: &amp;quot;Bug: [*****] BUG: Error locating do_banktransfer in symbol table. No such process&amp;quot; What would ca</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23809#p23809</guid>
   <pubDate>Fri, 23 Mar 2018 20:43:04 CDT</pubDate>
   <category>SmaugFUSS</category>
   <author>nobody@example.com (GatewaySysop)</author>
  </item>
  <item>
   <title>what would cause a code to not be found in symbol table?</title>
   <link>https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23801#p23801</link>
   <description>here is the code for reference...   I am sure it has a bug or two to work out other than the one this topic is about... but here [codebox] void do_banktransfer ( CHAR_DATA * ch, CHAR_DATA * victim, const char *argument ) { char arg1[MAX_INPUT_LENGTH]; char arg2[MAX_INPUT_LENGTH]; char buf[MAX_STRING_LENGTH]; int value; if( IS_NPC( ch ) ) return; if( arg1 == &#039;\0&#039; ) { send_to_pager( &amp;quot;You must input the name of an online character.\r\n&amp;quot;, ch ); re</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23801#p23801</guid>
   <pubDate>Fri, 23 Mar 2018 04:37:21 CDT</pubDate>
   <category>SmaugFUSS</category>
   <author>nobody@example.com (joeyfogas)</author>
  </item>
  <item>
   <title>what would cause a code to not be found in symbol table?</title>
   <link>https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23800#p23800</link>
   <description>I may solve this by the time i sleep and refresh my brain... it has been a long day... but I have created a code,  do_banktransfer.    it compiles fine with no errors..  I have added the declare_do_fun in mud.h as I have with every other code I have written... everything else has gone in fine, but when trying to cedit banktransfer create do_banktransfer, I get the error: &amp;quot;Bug: [*****] BUG: Error locating do_banktransfer in symbol table. No such process&amp;quot; What would cause this?    I fi</description>
   <guid isPermaLink="true">https://smaugmuds.afkmods.com/topic/what-would-cause-a-code-to-not-be-found-in-symbol-table-4873/&amp;p=23800#p23800</guid>
   <pubDate>Fri, 23 Mar 2018 04:33:36 CDT</pubDate>
   <category>SmaugFUSS</category>
   <author>nobody@example.com (joeyfogas)</author>
  </item>
 </channel>
</rss>
