⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 安全支持提供器接口(SSPI)源码
💻
字号:
#*************************************************************#
#**                                                         **#
#**                 Microsoft RPC Examples                  **#
#**		      hello Application			    **#
#**	       Copyright(c) Microsoft Corp. 1992	    **#
#**                                                         **#
#*************************************************************#

!INCLUDE $(NTMAKEENV)\makefile.plt

CPP = -cpp_cmd "$(MIDL_CPP)" $(MIDL_FLAGS) $(C_DEFINES) $(NET_C_DEFINES)
IDL_NAME = hello

# Stubs, auxiliary and header file from the IDL file
hello.h hello_c.c hello_x.c hello_s.c hello_y.c : hello.idl hello.acf
    midl -Oi -error allocation -error ref -ms_ext -c_ext $(CPP) $(CLIENT_FLAGS) .\$(IDL_NAME).idl $(INCS)
    copy hello_c.c client
    copy hello_s.c server



clean :
    -del hello_c.c
    -del hello_x.c
    -del hello_s.c
    -del hello_y.c
    -del hello.h

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -