Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
520df6dc
Commit
520df6dc
authored
Apr 25, 2007
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Int64 and UInt64
parent
eab62ae8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
src/exp/inc/src/pwr.h
src/exp/inc/src/pwr.h
+9
-2
No files found.
src/exp/inc/src/pwr.h
View file @
520df6dc
/*
* Proview $Id: pwr.h,v 1.2
5 2006-09-14 14:16:07
claes Exp $
* Proview $Id: pwr.h,v 1.2
6 2007-04-25 07:20:02
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -151,20 +151,27 @@ typedef int pwr_tInt32; //!< 32-bit integer type.
/*_*
@aref int64 Int64
*/
#if defined OS_LINUX
typedef
long
long
int
pwr_tInt64
;
#else
typedef
struct
{
unsigned
int
low
;
int
high
;
}
pwr_tInt64
;
#endif
//! 64-bit unsigned integer type.
/*_*
@aref uint64 UInt64
*/
#if defined OS_LINUX
typedef
unsigned
long
long
int
pwr_tUInt64
;
#else
typedef
struct
{
unsigned
int
low
;
unsigned
int
high
;
}
pwr_tUInt64
;
#endif
/*_*
@aref uint8 UInt8
*/
...
...
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