Commit fd8bf84c authored by Rob Lougher's avatar Rob Lougher
Browse files

*** empty log message ***

parent 09c6ee44
/* Copyright 1997 Acorn Computers Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* File: rmensure.c
* Purpose: ensuring a module is loaded
* Author: IDJ
* History: 24-Jun-94: IDJ: created
*/
#include <stdio.h>
#include "kernel.h"
#include "swis.h"
#include "rmensure.h"
_kernel_oserror *rmensure (char *module_name, char *file_name, char *module_version)
{
#ifndef ROM
_kernel_swi_regs regs;
_kernel_oserror *e;
char command[256];
/*
* see if the module is there at all!
*/
sprintf (command, "*RMEnsure %s %s *RMLoad System:modules.%s", module_name,
module_version, file_name);
regs.r[0] = (int)command;
if ((e = _kernel_swi (OS_CLI, &regs, &regs)) != NULL)
return e;
sprintf (command, "*RMEnsure %s %s", module_name, module_version);
regs.r[0] = (int)command;
if ((e = _kernel_swi (OS_CLI, &regs, &regs)) != NULL)
return e;
#else
IGNORE(module_name);
IGNORE(file_name);
IGNORE(module_version);
#endif
return NULL;
}
/* Copyright 1997 Acorn Computers Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* Title: glib.h
* Purpose: glib module of GTest module
* Author: NK
*
*/
#ifndef __glib_h
#define __glib_h
#include "kernel.h"
#ifndef __wimp_h
#include "wimp.h"
#endif
#ifndef __toolbox_h
#include "toolbox.h"
#endif
#ifndef __window_h
#include "window.h"
#endif
/* Gadget extension service calls provided by the window module */
#define Service_WindowModuleStarting (Window_SWIChunkBase + 1)
#define Service_WindowModuleDying (Window_SWIChunkBase + 2)
#define Service_GadgetRegistered (Window_SWIChunkBase + 3)
#define Service_GadgetDeregistered (Window_SWIChunkBase + 4)
/* filter types */
typedef enum {GLib_ToolboxEvents = 0, GLib_WimpEvents = 1, GLib_WimpMessages =2} FilterTypes;
/* operations on extended gadgets */
#define GADGET_ADD 1
#define GADGET_REMOVE 2
#define GADGET_FADE 3
#define GADGET_METHOD 4
#define GADGET_MCLICK 6
#define GADGET_PLOT 9
#define GADGET_SETFOCUS 10
#define GADGET_MOVE 11
#define GADGET_POSTADD 12
/* handler types */
#define NO_HANDLER 0
#define DEFAULT_HANDLER 1
#define PRIVATE_HANDLER 2
typedef struct {
int add:2,
remove:2,
postadd:2,
method:2,
reserved:2,
mclick:2,
reserved2:4,
plot:2,
setfocus:2,
move:2,
fade:2;
} FT;
typedef union {
int mask;
FT bits;
} FeatureMask;
typedef struct {
int type;
int validflags;
FeatureMask features;
} GadgetExtensionRecord;
/* support functions */
extern _kernel_oserror *register_gadget_types(unsigned int flags, GadgetExtensionRecord *rec,int SWIno);
extern _kernel_oserror *deregister_gadget_type(unsigned int flags, int type,int SWIno);
extern _kernel_oserror *register_gadget_type(unsigned int flags, int type,unsigned int valid, unsigned int mask,int SWIno);
void *mem_allocate(int amount);
void mem_free(void *tag);
int glib_create_icon(WimpCreateIconBlock *i);
int glib_create_gadget(ObjectId,Gadget *i,int f);
void glib_move_gadget(int type, ObjectId obj,ComponentId id,BBox *box);
void graphics_window(BBox *area);
BBox *intersection(BBox *a, BBox *b);
_kernel_oserror *add_task_interest(FilterTypes type, int *list, int SWI);
_kernel_oserror *remove_task_interest(FilterTypes type,int *list);
_kernel_oserror *glib_plot_gadget(int flags,Gadget *g);
#endif
/* Copyright 1997 Acorn Computers Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#define Window_RegisterExternal (Window_SWIChunkBase + 5)
#define Window_DeregisterExternal (Window_SWIChunkBase + 6)
#define Window_SupportExternal (Window_SWIChunkBase + 7)
/* Copyright 1997 Acorn Computers Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* File: rmensure.h
* Purpose: ensuring a module is loaded
* Author: IDJ
* History: 24-Jun-94: IDJ: created
*/
extern _kernel_oserror *rmensure (char *module_name, char *file_name, char *module_version);
/* Copyright 1997 Acorn Computers Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* File: string32.h
* Purpose: strings terminated by char < 32
* Author: Timothy Roddis
* History: 24-Jan-94: IDJ: created from original TGR sources
*/
/* Strings passed to the toolbox might be terminated with any control character ... */
extern void string_copy (char *dst_txt, char *src_txt);
/*
* copy a ctrl-terminated string to a buffer big enough to
* hold the result (no length checking).
*/
extern char *string_copy_chk (char *dst_txt, char *src_txt, int max_len);
/*
* copy a ctrl-terminated string to a buffer checking it is big enough to
* hold the result. Return NULL and nul-terminate, if dst buffer not
* big enough.
*/
extern int string_length (char *txt);
/*
* return length of ctrl-terminated string
*/
extern void string_to_buffer (char *dst_txt, char *src_txt, int *max_len);
/*
* general purpose routine to fill in a user-supplied buffer (and report
* number of bytes written), or just report size of buffer needed.
* If buffer is supplied (dst_txt != 0), then *max_len gives size of supplied
* buffer; if this is not large enough, don't return an error, but return
* size of bufer required!
*/
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment