about summary refs log tree commit diff stats
path: root/wiki/lib/tpl/dokuwiki/lang/de-informal
Commit message (Collapse)AuthorAgeFilesLines
* installed dokuwiki, added to navbar, updated newsahriman2018-12-032-0/+16
q <rumpf_a@web.de> 2012-01-02 23:07:35 +0100 year 2012 for most copyright headers' href='/ahoang/Nim/commit/lib/system/cgprocs.nim?h=devel&id=4f1b89c30cff4b91d5656c856f05be4604adaeaa'>4f1b89c30 ^
ff02ce2d5 ^






a639824e5 ^
ff02ce2d5 ^
03724c295 ^

657dca5c3 ^
03724c295 ^






a639824e5 ^
03724c295 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

 
                                  
                                         






                                                                        
                                                                       
 

                                           
                                                                    






                                                                               
                                                                              
 
#
#
#            Nim's Runtime Library
#        (c) Copyright 2012 Andreas Rumpf
#
#    See the file "copying.txt", included in this
#    distribution, for details about the copyright.
#

# Headers for procs that the code generator depends on ("compilerprocs")

proc addChar(s: NimString, c: char): NimString {.compilerProc, benign.}

type
  TLibHandle = pointer       # private type
  TProcAddr = pointer        # library loading and loading of procs:

proc nimLoadLibrary(path: string): TLibHandle {.compilerproc.}
proc nimUnloadLibrary(lib: TLibHandle) {.compilerproc.}
proc nimGetProcAddr(lib: TLibHandle, name: cstring): TProcAddr {.compilerproc.}

proc nimLoadLibraryError(path: string) {.compilerproc, noinline.}

proc setStackBottom(theStackBottom: pointer) {.compilerRtl, noinline, benign.}