Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Cameron Cawley
Browse
Commits
68c33afa
Commit
68c33afa
authored
27 years ago
by
Andrew Hodgkinson
Browse files
Options
Download
Email Patches
Plain Diff
In the middle of customer support work.
parent
f814da6f
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
1 deletion
+35
-1
h/Cookies
h/Cookies
+22
-0
h/JavaScript
h/JavaScript
+4
-1
h/MiscDefs
h/MiscDefs
+7
-0
h/Utils
h/Utils
+2
-0
No files found.
h/Cookies
0 → 100644
View file @
68c33afa
/* 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
);
This diff is collapsed.
Click to expand it.
h/JavaScript
View file @
68c33afa
...
...
@@ -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
);
This diff is collapsed.
Click to expand it.
h/MiscDefs
View file @
68c33afa
...
...
@@ -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
This diff is collapsed.
Click to expand it.
h/Utils
View file @
68c33afa
...
...
@@ -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
);
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment