This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.
For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.
Discussion of Eggdrop's code and module programming in C.
-
Galadhrim
- Op
- Posts: 123
- Joined: Fri Apr 11, 2003 8:38 am
- Location: Netherlands, Enschede
Post
by Galadhrim »
Was wondering where to change a version number of a module. I looked in some modules but couldnt find the numbers.
I have these lines:
Code: Select all
[19:52:53] <uk-r|Galadriel> Module: warmanager, v 0.1
[19:52:53] <uk-r|Galadriel> Module: console, v 1.1
[19:52:53] <uk-r|Galadriel> Module: irc, v 1.3
And I can't find any of those version numbers. Looked for the cmd status to see where it got the numbers from but tis a maze...
Anyone?
-
demond
- Revered One
- Posts: 3073
- Joined: Sat Jun 12, 2004 9:58 am
- Location: San Francisco, CA
-
Contact:
Post
by demond »
Code: Select all
int module_register(char *name, Function *funcs, int major, int minor);
major and minor are version numbers
-
Galadhrim
- Op
- Posts: 123
- Joined: Fri Apr 11, 2003 8:38 am
- Location: Netherlands, Enschede
Post
by Galadhrim »
gah cant believe i missed that
tnx