feat(cache): 上传一整个library/

This commit is contained in:
tzdwindows 7
2025-11-02 17:17:24 +08:00
parent 0ad6835fed
commit 7fc492eebf
1978 changed files with 321947 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//+---------------------------------------------------------------------------
//
// HELLO_DLL.C - Windows DLL example - main application part
//
#include <windows.h>
void hello_func (void);
__declspec(dllimport) extern const char *hello_data;
int WINAPI WinMain(
HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
hello_data = "Hello World!";
hello_func();
return 0;
}