Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __imp_XXX (0.37 sec)

  1. src/cmd/link/internal/ld/ar.go

    }
    
    // pruneUndefsForWindows trims the list "undefs" of currently
    // outstanding unresolved symbols to remove references to DLL import
    // symbols (e.g. "__imp_XXX"). In older versions of the linker, we
    // would just immediately forward references from the import sym
    // (__imp_XXX) to the DLL sym (XXX), but with newer compilers this
    // strategy falls down in certain cases. We instead now do this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 23:11:11 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loadpe/ldpe.go

    // symbols; it is needed when building with more "modern" C compilers
    // with internal linkage.
    //
    // Background: DLL import symbols are data (SNOPTRDATA) symbols whose
    // name is of the form "__imp_XXX", which contain a pointer/reference
    // to symbol XXX. It's possible to have import symbols for both data
    // symbols ("__imp__fmode") and text symbols ("__imp_CreateEventA").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top