Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for callIssue31891 (0.24 sec)

  1. src/cmd/cgo/internal/test/issue31891.c

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "_cgo_export.h"
    
    void callIssue31891() {
        Issue31891A a;
        useIssue31891A(&a);
    
        Issue31891B b;
        useIssue31891B(&b);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 299 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/testx.go

    #define issue28772Constant2 2
    
    
    // issue 31891
    typedef struct {
    	long obj;
    } Issue31891A;
    
    typedef struct {
    	long obj;
    } Issue31891B;
    
    void callIssue31891(void);
    
    typedef struct {
    	int i;
    } Issue38408, *PIssue38408;
    
    extern void cfunc49633(void*); // definition is in test.go
    */
    import "C"
    
    // exports
    
    //export ReturnIntLong
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top