File: module.modulemap

package info (click to toggle)
rcheevos 11.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,092 kB
  • sloc: ansic: 66,545; makefile: 516
file content (71 lines) | stat: -rw-r--r-- 1,273 bytes parent folder | download | duplicates (3)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
module rcheevos {
    umbrella header "rcheevos.h"
    
    module rapi {
        module rc_api_editor {
            header "rc_api_editor.h"
            export *
        }
        
        module rc_api_info {
            header "rc_api_info.h"
            export *
        }
        
        module rc_api_request {
            header "rc_api_request.h"
            export *
        }
        
        module rc_api_runtime {
            header "rc_api_runtime.h"
            export *
        }
        
        module rc_api_user {
            header "rc_api_user.h"
            export *
        }

        export *
    }
    
    module rc_client {
        header "rc_client.h"
        export *
    }
    
    module rc_consoles {
        header "rc_consoles.h"
        export *
    }
    
    module rc_error {
        header "rc_error.h"
        export *
    }
    
    module rc_runtime {
        header "rc_runtime.h"
        export *
    }
    
    module rc_runtime_types {
        header "rc_runtime_types.h"
        export *
    }
    
    module rc_hash {
        header "rc_hash.h"
        export *
    }
    
    export *
    module * { export * }
    
    //rurl is deprecated
    explicit module rc_url {
        header "rc_url.h"
        export *
    }
}