Commit 68c33afa authored by Andrew Hodgkinson's avatar Andrew Hodgkinson
Browse files

In the middle of customer support work.

parent f814da6f
/* 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 : Cookies.h */
/* Purpose: Browser-end HTTP Cookie support. */
/* Author : A.D.Hodgkinson */
/* History: 28-Jul-96: Created */
/*************************************************/
_kernel_oserror * cookies_process_cookie (browser_data * b);
......@@ -19,4 +19,7 @@
/* History: 24-Jul-97: Created */
/***************************************************/
_kernel_oserror * javascript_body_onload (browser_data * b);
_kernel_oserror * javascript_body_onload (browser_data * b);
_kernel_oserror * javascript_href_onclick (browser_data * b, HStream * t);
_kernel_oserror * javascript_window_open (browser_data * b, int must_find, int record, char * url, char * target);
......@@ -37,3 +37,10 @@
#define TaskModule_DeRegisterService 0x4d303
#define Message_Service 0x4d300
/* HTTP module SWI numbers */
#define HTTP_EnumerateCookies 0x83f85
#define HTTP_ConsumeCookie 0x83f86
#define HTTP_AddCookie 0x83f87
#define HTTP_UserAgent 0x83f88
......@@ -99,6 +99,8 @@ int task_from_window (int window_handle);
int is_known_browser (browser_data * b);
int encode_base64 (const char * in, int len, char * out);
int utils_strcasecmp (const char * a, const char * b);
int utils_strncasecmp (const char * a, const char * b, unsigned int n);
_kernel_oserror * utils_stop_webserv (void);
_kernel_oserror * utils_set_http_agent (void);
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