代码搜索:Create
找到约 10,000 项符合「Create」的源代码
代码结果 10,000
www.eeworm.com/read/128628/14288230
mak create_newdir.mak
# Nmake macros for building Windows 32-Bit apps
all: Create~1.exe
# Update the resource if necessary
Create~1.res: Create~1.rc Create~1.h
rc -r -fo Create~1.res Create~1.rc
# Update t
www.eeworm.com/read/128628/14288233
cpp create_newdir.cpp
#include
#include "Create_NewDir.h"
#if defined (WIN32)
#define IS_WIN32 TRUE
#else
#define IS_WIN32 FALSE
#endif
#define IS_NT IS_WIN32 && (BOOL)(GetVersion() < 0
www.eeworm.com/read/128628/14288235
rc create_newdir.rc
#include "windows.h"
#include "Create_NewDir.h"
MYAPP ICON DISCARDABLE "GENERIC.ICO"
MYAPP MENU DISCARDABLE
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit"
www.eeworm.com/read/128628/14288237
h create_newdir.h
#define IDM_EXIT 100
#define IDM_TEST 200
#define IDM_ABOUT 301
LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM);
LRESULT CALLBACK About (HWND, UINT, WPARAM
www.eeworm.com/read/127261/14363802
sh create_bootdisk.sh
#!/bin/bash
# Author: Tomas Matejicek
if [ "$1" = "" -o ! -b "$2" -o ! -b "$3" ]; then
echo
echo "Copies all files from LiveCD to your disk and setup lilo"
echo "us
www.eeworm.com/read/127261/14363807
sh create_bootiso.sh
#!/bin/bash
# Create bootable ISO from files in curent directory.
# usage: create_bootiso /mnt/disk/freespace/resultFilename.iso
# Author: Tomas Matejicek
#
CDLABEL="SLAX"
www.eeworm.com/read/127056/14381783
gif create_child.gif
www.eeworm.com/read/126803/14402031
sql create table.sql
-- 创建数据表
create table MyTestTable (
Col1 int,
Col2 varchar(30)
)
www.eeworm.com/read/126803/14402209
sql create procedure.sql
create procedure up_books_info
as
select title, type, price, pub_name
from titles
inner join publishers
on titles .pub_id = publishers.pub_id
where pub_name like 'B%' and price >