Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • context.c

    r4d86e06 r3f8514b  
    1414
    1515/* returns whether test matches the current context */
    16 int owl_context_matches(owl_context *ctx, int test)
     16int owl_context_matches(const owl_context *ctx, int test)
    1717{
    1818  /*owl_function_debugmsg(", current: 0x%04x test: 0x%04x\n", ctx->mode, test);*/
     
    2828}
    2929
    30 void *owl_context_get_data(owl_context *ctx)
     30void *owl_context_get_data(const owl_context *ctx)
    3131{
    3232  return ctx->data;
    3333}
    3434
    35 int owl_context_get_mode(owl_context *ctx)
     35int owl_context_get_mode(const owl_context *ctx)
    3636{
    3737  return ctx->mode & OWL_CTX_MODE_BITS;
    3838}
    3939
    40 int owl_context_get_active(owl_context *ctx)
     40int owl_context_get_active(const owl_context *ctx)
    4141{
    4242  return ctx->mode & OWL_CTX_ACTIVE_BITS;
    4343}
    4444
    45 int owl_context_is_startup(owl_context *ctx)
     45int owl_context_is_startup(const owl_context *ctx)
    4646{
    4747  return (ctx->mode & OWL_CTX_STARTUP)?1:0;
    4848}
    4949
    50 int owl_context_is_interactive(owl_context *ctx)
     50int owl_context_is_interactive(const owl_context *ctx)
    5151{
    5252  return(ctx->mode & OWL_CTX_INTERACTIVE)?1:0;
Note: See TracChangeset for help on using the changeset viewer.