diff --git a/src/external/w32/advapi32.go b/src/external/w32/advapi32.go index 10e1416..3ce629f 100644 --- a/src/external/w32/advapi32.go +++ b/src/external/w32/advapi32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "errors" diff --git a/src/external/w32/advapi32_constants.go b/src/external/w32/advapi32_constants.go index fa3c767..fd014cb 100644 --- a/src/external/w32/advapi32_constants.go +++ b/src/external/w32/advapi32_constants.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 // Registry predefined keys const ( diff --git a/src/external/w32/advapi32_test.go b/src/external/w32/advapi32_test.go index 72a9198..7e18715 100644 --- a/src/external/w32/advapi32_test.go +++ b/src/external/w32/advapi32_test.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "testing" diff --git a/src/external/w32/advapi32_typedef.go b/src/external/w32/advapi32_typedef.go index 3a4308c..d86fdea 100644 --- a/src/external/w32/advapi32_typedef.go +++ b/src/external/w32/advapi32_typedef.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 // http://msdn.microsoft.com/en-us/library/windows/desktop/aa374931(v=vs.85).aspx type ACL struct { diff --git a/src/external/w32/alpc.go b/src/external/w32/alpc.go index 408d47e..289001a 100644 --- a/src/external/w32/alpc.go +++ b/src/external/w32/alpc.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "fmt" diff --git a/src/external/w32/alpc_constants.go b/src/external/w32/alpc_constants.go index 82d9d2e..693c250 100644 --- a/src/external/w32/alpc_constants.go +++ b/src/external/w32/alpc_constants.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 const ( ALPC_PORFLG_ALLOW_LPC_REQUESTS = 0x20000 diff --git a/src/external/w32/alpc_test.go b/src/external/w32/alpc_test.go index 6d1c7d4..2d86079 100644 --- a/src/external/w32/alpc_test.go +++ b/src/external/w32/alpc_test.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "testing" diff --git a/src/external/w32/alpc_typedef.go b/src/external/w32/alpc_typedef.go index 52b35c9..2093edb 100644 --- a/src/external/w32/alpc_typedef.go +++ b/src/external/w32/alpc_typedef.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "errors" diff --git a/src/external/w32/comctl32.go b/src/external/w32/comctl32.go index 4f4e6b5..c9a0cb8 100644 --- a/src/external/w32/comctl32.go +++ b/src/external/w32/comctl32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/comdlg32.go b/src/external/w32/comdlg32.go index 37bc985..c1e7224 100644 --- a/src/external/w32/comdlg32.go +++ b/src/external/w32/comdlg32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/constants.go b/src/external/w32/constants.go index 162a5d9..5ff3bd2 100644 --- a/src/external/w32/constants.go +++ b/src/external/w32/constants.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 const ( FALSE = 0 diff --git a/src/external/w32/create_process.go b/src/external/w32/create_process.go index 9caf9ff..e899e00 100644 --- a/src/external/w32/create_process.go +++ b/src/external/w32/create_process.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/create_process_constants.go b/src/external/w32/create_process_constants.go index c37d7e5..3ee19cf 100644 --- a/src/external/w32/create_process_constants.go +++ b/src/external/w32/create_process_constants.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 const ( WAIT_ABANDONED = 0x00000080 diff --git a/src/external/w32/create_process_test.go b/src/external/w32/create_process_test.go index 7e64b1d..0fcf184 100644 --- a/src/external/w32/create_process_test.go +++ b/src/external/w32/create_process_test.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "testing" diff --git a/src/external/w32/create_process_typedef.go b/src/external/w32/create_process_typedef.go index df05972..0eac40a 100644 --- a/src/external/w32/create_process_typedef.go +++ b/src/external/w32/create_process_typedef.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 // typedef struct _PROCESS_INFORMATION { // HANDLE hProcess; diff --git a/src/external/w32/dwmapi.go b/src/external/w32/dwmapi.go index eb656d1..83273c4 100644 --- a/src/external/w32/dwmapi.go +++ b/src/external/w32/dwmapi.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "fmt" diff --git a/src/external/w32/fork.go b/src/external/w32/fork.go index b5543b9..ec0ce44 100644 --- a/src/external/w32/fork.go +++ b/src/external/w32/fork.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 // #include //import ( diff --git a/src/external/w32/fork_constants.go b/src/external/w32/fork_constants.go index 3e9b217..a7acccc 100644 --- a/src/external/w32/fork_constants.go +++ b/src/external/w32/fork_constants.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 const ( RTL_CLONE_PROCESS_FLAGS_CREATE_SUSPENDED = 0x00000001 diff --git a/src/external/w32/fork_test.go b/src/external/w32/fork_test.go index 47b52ba..9463391 100644 --- a/src/external/w32/fork_test.go +++ b/src/external/w32/fork_test.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "fmt" diff --git a/src/external/w32/fork_typedef.go b/src/external/w32/fork_typedef.go index fcb9049..6bdbb16 100644 --- a/src/external/w32/fork_typedef.go +++ b/src/external/w32/fork_typedef.go @@ -1,4 +1,4 @@ -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 // combase!_SECTION_IMAGE_INFORMATION // +0x000 TransferAddress : Ptr64 Void diff --git a/src/external/w32/gdi32.go b/src/external/w32/gdi32.go index 39a81d6..a967df3 100644 --- a/src/external/w32/gdi32.go +++ b/src/external/w32/gdi32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/gdiplus.go b/src/external/w32/gdiplus.go index f3a8fca..fb92b52 100644 --- a/src/external/w32/gdiplus.go +++ b/src/external/w32/gdiplus.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "errors" diff --git a/src/external/w32/go.mod b/src/external/w32/go.mod index 3819100..eba7f42 100644 --- a/src/external/w32/go.mod +++ b/src/external/w32/go.mod @@ -1,3 +1,3 @@ -module github.com/HACKERALERT/Picocrypt/src/external/w32 +module w32 go 1.16 diff --git a/src/external/w32/idispatch.go b/src/external/w32/idispatch.go index 41634a6..32e4442 100644 --- a/src/external/w32/idispatch.go +++ b/src/external/w32/idispatch.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "unsafe" diff --git a/src/external/w32/istream.go b/src/external/w32/istream.go index 2b840c3..873d2bb 100644 --- a/src/external/w32/istream.go +++ b/src/external/w32/istream.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "unsafe" diff --git a/src/external/w32/iunknown.go b/src/external/w32/iunknown.go index d63ff1b..5b17cae 100644 --- a/src/external/w32/iunknown.go +++ b/src/external/w32/iunknown.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 type pIUnknownVtbl struct { pQueryInterface uintptr diff --git a/src/external/w32/kernel32.go b/src/external/w32/kernel32.go index 28febbe..caf1925 100644 --- a/src/external/w32/kernel32.go +++ b/src/external/w32/kernel32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/ole32.go b/src/external/w32/ole32.go index a7f79b5..9497eaa 100644 --- a/src/external/w32/ole32.go +++ b/src/external/w32/ole32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/oleaut32.go b/src/external/w32/oleaut32.go index 0eeeab7..413a261 100644 --- a/src/external/w32/oleaut32.go +++ b/src/external/w32/oleaut32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/opengl32.go b/src/external/w32/opengl32.go index 7363bb1..77870db 100644 --- a/src/external/w32/opengl32.go +++ b/src/external/w32/opengl32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/psapi.go b/src/external/w32/psapi.go index bd1e126..a577e7a 100644 --- a/src/external/w32/psapi.go +++ b/src/external/w32/psapi.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/shell32.go b/src/external/w32/shell32.go index 0923b8b..ac36ad6 100644 --- a/src/external/w32/shell32.go +++ b/src/external/w32/shell32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "errors" diff --git a/src/external/w32/typedef.go b/src/external/w32/typedef.go index 118f76c..ee15bff 100644 --- a/src/external/w32/typedef.go +++ b/src/external/w32/typedef.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "unsafe" diff --git a/src/external/w32/user32.go b/src/external/w32/user32.go index 9dbac36..8bd4974 100644 --- a/src/external/w32/user32.go +++ b/src/external/w32/user32.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "fmt" diff --git a/src/external/w32/utils.go b/src/external/w32/utils.go index 4fb5b6c..1a785ef 100644 --- a/src/external/w32/utils.go +++ b/src/external/w32/utils.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 import ( "syscall" diff --git a/src/external/w32/vars.go b/src/external/w32/vars.go index 2dab2e3..fb6b820 100644 --- a/src/external/w32/vars.go +++ b/src/external/w32/vars.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -package w32 +package github.com/HACKERALERT/Picocrypt/src/external/w32 var ( IID_NULL = &GUID{0x00000000, 0x0000, 0x0000, [8]byte{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}