about summary refs log tree commit diff stats
path: root/wiki/lib/plugins/authmysql/lang/pt/lang.php
diff options
context:
space:
mode:
authorBenjamin Morrison <ben@gbmor.org>2022-08-12 16:38:57 -0400
committerBenjamin Morrison <ben@gbmor.org>2022-08-12 16:38:57 -0400
commit28e2b8258195940296aacca92a926b9cbbbc6e70 (patch)
tree6b0a5e2a8d39bbd36066f33dc9e89e6e1bd29aa2 /wiki/lib/plugins/authmysql/lang/pt/lang.php
parent82bc9945440f51507e2d1ac5a8711d4bb34df2b5 (diff)
downloadsite-28e2b8258195940296aacca92a926b9cbbbc6e70.tar.gz
active gopher link HEAD trunk
Diffstat (limited to 'wiki/lib/plugins/authmysql/lang/pt/lang.php')
0 files changed, 0 insertions, 0 deletions
weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#ifndef MESSAGE_H
#define MESSAGE_H

#include "common.h"
#include "commonuser.h"

typedef struct Thread Thread;

void sendMesage(Thread* thread, SosoMessage* message);

uint32 getMessageQueueCount(Thread* thread);

//returns remaining message count
int32 getNextMessage(Thread* thread, SosoMessage* message);

#endif // MESSAGE_H