mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 05:50:30 +00:00
c2nim and system.nim now agree on a C type mapping
This commit is contained in:
@@ -434,14 +434,21 @@ proc typeAtom(p: var TParser): PNode =
|
||||
getTok(p, nil)
|
||||
result = skipIdent(p)
|
||||
elif isIntType(p.tok.s):
|
||||
var x = "c" & p.tok.s
|
||||
getTok(p, nil)
|
||||
while p.tok.xkind == pxSymbol and
|
||||
(isIntType(p.tok.s) or p.tok.s == "char"):
|
||||
add(x, p.tok.s)
|
||||
var x = ""
|
||||
#getTok(p, nil)
|
||||
var isUnsigned = false
|
||||
while p.tok.xkind == pxSymbol and (isIntType(p.tok.s) or p.tok.s == "char"):
|
||||
if p.tok.s == "unsigned":
|
||||
isUnsigned = true
|
||||
elif p.tok.s == "signed" or p.tok.s == "int":
|
||||
nil
|
||||
else:
|
||||
add(x, p.tok.s)
|
||||
getTok(p, nil)
|
||||
result = mangledIdent(x, p)
|
||||
else:
|
||||
if x.len == 0: x = "int"
|
||||
let xx = if isUnsigned: "cu" & x else: "c" & x
|
||||
result = mangledIdent(xx, p)
|
||||
else:
|
||||
result = mangledIdent(p.tok.s, p)
|
||||
getTok(p, result)
|
||||
|
||||
|
||||
@@ -15,6 +15,8 @@ typedef const char* (*callback2)(int rc, long L, const char* buffer);
|
||||
int aw_callback_set (AW_CALLBACK c, callback_t callback );
|
||||
int aw_instance_callback_set (AW_CALLBACK c, callback_t callback);
|
||||
|
||||
unsigned long int wawa;
|
||||
|
||||
#define AW_BUILD 85 // AW 5.0
|
||||
// Limits
|
||||
#define AW_MAX_AVCHANGE_PER_SECOND 10
|
||||
@@ -34,7 +36,7 @@ int aw_instance_callback_set (AW_CALLBACK c, callback_t callback);
|
||||
#mangle "'XML_'{.*}" "$1"
|
||||
#private "'XML_ParserStruct'"
|
||||
|
||||
#mangle cunsignedint cint
|
||||
#mangle cuint cint
|
||||
|
||||
unsigned int uiVar;
|
||||
|
||||
|
||||
6
examples/lazarus/nimlaz.rc
Normal file
6
examples/lazarus/nimlaz.rc
Normal file
@@ -0,0 +1,6 @@
|
||||
#define RT_MANIFEST 24
|
||||
#define CREATEPROCESS_MANIFEST_RESOURCE_ID 1
|
||||
#define ISOLATIONAWARE_MANIFEST_RESOURCE_ID 2
|
||||
#define ISOLATIONAWARE_NOSTATICIMPORT_MANIFEST_RESOURCE_ID 3
|
||||
|
||||
CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "nimlaz.manifest"
|
||||
@@ -946,6 +946,17 @@ type # these work for most platforms:
|
||||
## This is the same as the type ``long double`` in *C*.
|
||||
## This C type is not supported by Nimrod's code generator
|
||||
|
||||
cuchar* {.importc: "unsigned char", nodecl.} = char
|
||||
## This is the same as the type ``unsigned char`` in *C*.
|
||||
cushort* {.importc: "unsigned short", nodecl.} = uint16
|
||||
## This is the same as the type ``unsigned short`` in *C*.
|
||||
cuint* {.importc: "int", nodecl.} = uint32
|
||||
## This is the same as the type ``unsigned int`` in *C*.
|
||||
culong* {.importc: "unsigned long", nodecl.} = uint
|
||||
## This is the same as the type ``unsigned long`` in *C*.
|
||||
culonglong* {.importc: "unsigned long long", nodecl.} = uint64
|
||||
## This is the same as the type ``unsigned long long`` in *C*.
|
||||
|
||||
cstringArray* {.importc: "char**", nodecl.} = ptr array [0..50_000, cstring]
|
||||
## This is binary compatible to the type ``char**`` in *C*. The array's
|
||||
## high value is large enough to disable bounds checking in practice.
|
||||
|
||||
Reference in New Issue
Block a user