Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
80cc024b
Commit
80cc024b
authored
12 years ago
by
Sebastien Ponce
Committed by
Steven Murray
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Cleaned up unused code : Windows support and castor wrappers around dlopen
parent
9eb25179
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mediachanger/castorrmc/h/osdep.h
+0
-25
0 additions, 25 deletions
mediachanger/castorrmc/h/osdep.h
with
0 additions
and
25 deletions
mediachanger/castorrmc/h/osdep.h
+
0
−
25
View file @
80cc024b
...
...
@@ -31,35 +31,10 @@ typedef unsigned char U_BYTE;
/* typedef unsigned short U_WORD; */
typedef
unsigned
short
U_SHORT
;
typedef
unsigned
int
U_LONG
;
typedef
struct
{
U_LONG
lslw
;
U_LONG
mslw
;
}
U_QUAD
;
#ifndef _WINDEF_
/*
VC 5.0 : 1100
VC 6.0 : 1200
VC 7.0 : 1300 (.NET)
*/
#if _MSC_VER < 1300
typedef
char
BYTE
;
typedef
short
WORD
;
typedef
int
LONG
;
#endif
#endif
typedef
struct
{
#if _MSC_VER < 1300
LONG
mslw
;
#else
int
mslw
;
#endif
U_LONG
lslw
;
}
QUAD
;
#define BYTEADDR(x) (((char *)&(x))+sizeof(BYTE)-BYTESIZE)
#define WORDADDR(x) (((char *)&(x))+sizeof(WORD)-WORDSIZE)
#define LONGADDR(x) (((char *)&(x))+sizeof(LONG)-LONGSIZE)
#define QUADADDR(x) (((char *)&(x))+sizeof(QUAD)-QUADSIZE)
typedef
long
long
signed64
;
typedef
unsigned
long
long
u_signed64
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment